/*index.blade*/

.popular-category .heading1 h1 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-top: 0 !important;
    text-align: center;
    font-family: "Roboto Condensed", serif !important;
}
.popular-category .heading1 p {
    text-align: center;
}
/* ===================================
   Type & Category Badges
=================================== */
.type-textr {
    position: absolute;
    top: 148px; 
    right: 6px; 
    left: auto;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
}
@media (max-width: 1024px) {
    .type-textr {
        top: 154px; /* Adjusted for tablet */
    }
}

/* For smaller tablets */
@media (max-width: 768px) {
    .type-textr {
        top: 238px; /* Adjusted for smaller tablets */
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .type-textr {
        top: 238px; /* Your specified mobile position */
        font-size: 12px;
        padding: 3px 10px;
        right: 6px;
    }
}

/* For very small mobile devices */
@media (max-width: 360px) {
    .type-textr {
        top: 238px; /* Adjusted for very small screens */
        font-size: 12px;
        padding: 3px 10px;
    }
}

.type-textr a {
    color: #fff;
    text-decoration: none;
}

.title-textr { color: #ffffff !important; }
.title-text1 { color: #ffffff; }
.text-bl { color: #002a55 !important; }


.circle-arrow-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    color: black;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.circle-arrow:hover {
    background-color: #000000;
    color:white;
    transform: translateX(5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.circle-arrow-link:hover .circle-arrow {
    background-color: #000000;
    color:white;
    transform: translateX(5px);
}

/*index.blade*/

/*p1*/

.responsive-banner-container {
    width: 100%;
    height: 445px;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    padding: 3px;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Tablet Devices */
@media (max-width: 991px) {
    .responsive-banner-container {
        height: 380px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .responsive-banner-container {
        height: 300px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .responsive-banner-container {
        height: 250px;
        border-radius: 8px;
    }
    
    .banner-image {
        border-radius: 6px;
    }
}

.responsive-banner-container {
    width: 100%;
    height: 445px;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    padding: 3px;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
    position: relative;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Christmas overlay styles */


/* Responsive adjustments */
@media (max-width: 991px) {
    .responsive-banner-container {
        height: 380px;
    }
    
    
}

@media (max-width: 767px) {
    .responsive-banner-container {
        height: 300px;
    }
    
    
}

@media (max-width: 480px) {
    .responsive-banner-container {
        height: 250px;
        border-radius: 8px;
    }
    
    .banner-image {
        border-radius: 6px;
    }
    
    
}

/*p1*/

/*search*/

.suggestion-item:hover {
    background-color: #f8f9fa !important;
}

#searchSuggestions {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

#searchSuggestions::-webkit-scrollbar {
    width: 8px;
}

#searchSuggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#searchSuggestions::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

#searchSuggestions::-webkit-scrollbar-thumb:hover {
    background: #555;
} 

/*search*/