/* Collection Section */
.watch-collection-outer-wrapper {
    width: 100%;
    margin-bottom: 50px;
}

.watch-collection-section {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    padding: 40px 0 60px 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .watch-collection-section {
        padding: 30px 0 50px 0;
        background-position: center center;
    }
}

.watch-collection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.4));
    pointer-events: none;
}

@media (max-width: 768px) {
    .watch-collection-section::before {
        background: rgba(255, 255, 255, 0.4); /* Stronger overlay on mobile */
    }
}

.watch-collection-inner-content {
    position: relative;
    z-index: 2;
}

.watch-collection-header-nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .watch-collection-header-nav {
        justify-content: center;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .watch-collection-tabs li {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

.watch-collection-tabs {
    display: flex;
    background: #fff;
    padding: 0;
    border-radius: 4px;
    list-style: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.watch-collection-tabs li {
    padding: 10px 35px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    color: #333;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.watch-collection-tabs li.active {
    background: var(--accent-color);
    color: #fff;
    border-bottom: 3px solid var(--primary-color);
}

.watch-collection-content-body {
    position: relative;
    padding: 0 50px;
}


/* Moved general rules up to allow media queries to override */
.watch-col-arrow {
    position: absolute;
    top: 35%; /* Position relative to images */
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    z-index: 50;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    font-size: 0.9rem;
}

.watch-col-arrow:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1);
}

.watch-col-arrow.prev { left: -10px !important; }
.watch-col-arrow.next { right: -10px !important; }

@media (max-width: 1024px) {
    .watch-col-arrow {
        width: 38px;
        height: 38px;
        z-index: 60;
    }
    .watch-col-arrow.prev { left: 0px !important; }
    .watch-col-arrow.next { right: 0px !important; }
}

.watch-tab-pane {
    display: none;
}

.watch-tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.watch-collection-grid-layout {
    display: grid;
    grid-template-columns: 320px 1fr !important; /* Fixed width for model area to stabilize product area */
    gap: 0;
    align-items: center;
    min-height: 450px;
    position: relative;
}

.watch-collection-model-area {
    width: 100%;
}

.watch-collection-products-area {
    position: relative;
    overflow: visible; /* Cho phép mũi tên hiện ra ngoài */
}

.watch-collection-slider-window {
    overflow: hidden; /* Cắt sản phẩm tại đây */
    position: relative;
}

.watch-collection-slider-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 15px 40px 15px; /* Add side padding for arrows to breathe */
    scrollbar-width: none;
    cursor: grab;
}

.watch-collection-slider-track.dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}

.watch-collection-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.watch-col-product-card {
    flex: 0 0 calc(33.333% - 10px);
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .watch-collection-grid-layout { grid-template-columns: 1fr; }
    .watch-collection-model-area { display: none; }
}

@media (max-width: 1024px) {
    .watch-col-product-card { 
        flex: 0 0 calc(33.333% - 14px); 
        padding: 12px;
    }
    .watch-collection-slider-track {
        gap: 20px;
        padding: 10px 10px 30px 10px;
        scroll-snap-type: x mandatory;
    }
}

@media (max-width: 768px) {
    .watch-collection-content-body {
        position: relative;
        padding: 0 10px;
    }

    .watch-col-product-card { 
        flex: 0 0 calc(70% - 15px); 
        scroll-snap-align: start;
        padding: 10px;
    }
    
    .watch-collection-slider-track {
        gap: 15px;
        padding: 10px 15px 30px 15px;
        scroll-snap-type: x mandatory;
    }
    
    .watch-col-title {
        font-size: 0.75rem;
    }
    
    .watch-col-price {
        font-size: 0.875rem;
    }
}

.watch-col-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.watch-col-brand {
    font-size: 0.7rem;
    font-weight: 800;
    color: #888;
    margin-bottom: 5px;
}

.watch-col-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.watch-col-image {
    width: 100%;
    aspect-ratio: 1.2;
    margin-bottom: 15px;
}

.watch-col-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.watch-col-tag {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2px 5px;
    display: inline-block;
    margin-bottom: 5px;
    border-radius: 2px;
}

.watch-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.watch-col-title a { color: inherit; text-decoration: none; }

.watch-col-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.watch-collection-bottom-nav {
    text-align: center;
    margin-top: 30px;
}

.watch-view-all-premium-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s;
    display: inline-block;
}

.watch-view-all-premium-btn:hover {
    background: var(--text-dark);
    transform: scale(1.05);
}

/* Celebs Section */
.watch-celebs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.celebs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .celebs-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.celebs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.celebs-card {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
}

.celebs-item:hover .celebs-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.celebs-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.celebs-btn {
    background-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 999px;
    transition: all 0.3s;
    min-width: 140px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.celebs-btn h3 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.celebs-item:hover .celebs-btn {
    background-color: var(--text-dark);
    transform: scale(1.05);
}

/* Posts Section CSS */
.watch-posts-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.watch-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .watch-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.watch-posts-main-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

/* Featured Card */
.watch-featured-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
}

.watch-featured-img-group {
    position: relative;
    margin-bottom: 1.5rem;
    height: 400px;
    border-radius: 0.75rem;
    overflow: visible; /* To allow circles to overflow slightly if needed */
}

.watch-featured-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.watch-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Brands Section CSS */
.watch-brand-section {
    padding: 60px 0;
    background-color: #fff;
}

.watch-brand-slider-container {
    position: relative;
    padding: 0 10px;
}

.watch-brand-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 20;
    cursor: pointer;
    display: none; /* Only mobile/tablet */
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-brand-arrow:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 991px) {
    .watch-brand-arrow {
        display: flex;
    }
    .watch-brand-arrow.prev { left: 0; }
    .watch-brand-arrow.next { right: 0; }
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .brand-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 5px;
        scrollbar-width: none;
    }
    .brand-grid::-webkit-scrollbar {
        display: none;
    }
}

.item-brand {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    aspect-ratio: 1.25;
    background: #fff;
    min-width: 0;
}

@media (max-width: 991px) {
    .item-brand {
        flex: 0 0 calc(33.333% - 14px); /* 3 items per screen on tablet */
        scroll-snap-align: start;
    }
}

@media (max-width: 576px) {
    .item-brand {
        flex: 0 0 calc(50% - 10px); /* 2 items per screen on mobile */
    }
}

.item-brand:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.item-brand img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.item-brand:hover img {
    transform: scale(1.05);
}

.watch-circle-deco-1 {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 45px solid rgba(139, 115, 85, 0.2);
    z-index: 1;
    pointer-events: none;
}

.watch-circle-deco-2 {
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 20px solid rgba(139, 115, 85, 0.3);
    background: rgba(139, 115, 85, 0.05);
    backdrop-filter: blur(4px);
    z-index: 3;
    pointer-events: none;
}

.watch-featured-content {
    padding: 0.5rem 0;
}

.watch-featured-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.watch-featured-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s;
}

.watch-featured-title a:hover {
    color: #4a5568;
}

.watch-featured-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.watch-featured-date {
    font-size: 0.875rem;
    color: #718096;
}

/* Nav */
.watch-featured-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.watch-nav-btn {
    background: #f7fafc;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #4a5568;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.watch-nav-btn:hover {
    background: #edf2f7;
    color: #1a202c;
    transform: scale(1.1);
}

.watch-nav-counter {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a202c;
}

/* Most Viewed */
.watch-most-viewed-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.watch-most-viewed-item {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.watch-most-viewed-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
    border-color: #f7fafc;
}

.watch-most-viewed-img-wrapper {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Support Section CSS */
.section-support {
    padding: 30px 0 0px;
    background-color: #fff;
}

.watch-support-slider-container {
    position: relative;
}

.watch-support-slider-window {
    overflow: hidden;
    position: relative;
}

.flex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .flex-container {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    .flex-container::-webkit-scrollbar { display: none; }

    .column-wrap {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet */
        scroll-snap-align: start;
    }
}

@media (max-width: 576px) {
    .column-wrap {
        flex: 0 0 100%; /* 1 item on mobile */
    }
}

.column-wrap {
    text-align: center;
}

.support-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-icon img {
    max-height: 100%;
    width: auto;
}

.inner-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inner-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Resize for mobile/tablet */
@media (max-width: 991px) {
    .inner-icon {
        height: 45px;
        margin-bottom: 12px;
    }
    .inner-content h3 {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    .inner-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Support Slider Arrows */
.watch-support-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 20;
    cursor: pointer;
    display: none; /* Only mobile/tablet */
    align-items: center;
    justify-content: center;
    color: #111827;
    transition: all 0.3s;
}

.watch-support-arrow:hover {
    background: #111827;
    color: #fff;
}

@media (max-width: 991px) {
    .watch-support-arrow {
        display: flex;
    }
    .watch-support-arrow.prev { left: 10px; }
    .watch-support-arrow.next { right: 10px; }
}

/* Featured Category Section Refinement */
.watch-featured-cats-section {
    margin: 3rem 0;
}

.watch-most-viewed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-most-viewed-info {
    flex: 1;
}

.watch-most-viewed-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.watch-most-viewed-title a {
    color: #1a202c;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-most-viewed-excerpt {
    font-size: 0.8125rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-most-viewed-date {
    font-size: 0.75rem;
    color: #718096;
}

/* Container - giống max-w-7xl mx-auto px-4 */
.watch-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Banner Section - giống grid gap-4 */
.watch-banner-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.watch-banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .watch-banner-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.watch-carousel {
    position: relative;
}

.watch-carousel-inner {
    border-radius: 0.5rem;
    overflow: hidden;
}

.watch-carousel-img {
    width: 100%;
    height: auto;
}

.watch-carousel-btn {
    background-color: #111827;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.watch-carousel-btn:hover {
    background-color: #1f2937;
}

.watch-banner-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.watch-banner-small {
    overflow: hidden;
    border-radius: 0.5rem;
}

.watch-banner-img {
    width: 100%;
    height: auto;
}

/* Promo Banner */
.watch-promo-banner {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 1rem;
    margin-top: 5px;
}

.watch-promo-link {
    display: block;
}

.watch-promo-img {
    width: 100%;
    border-radius: 0.5rem;
}

/* Featured Category Section */
.watch-featured-cats-section {
    margin: 4rem 0;
}

.watch-section-header {
    margin-bottom: 2.5rem;
    position: relative;
}



.watch-featured-cats-container {
    position: relative;
    padding: 0 10px;
}

.watch-cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 20;
    cursor: pointer;
    display: flex; /* Always visible */
    align-items: center;
    justify-content: center;
    color: #111827;
    transition: all 0.3s;
}

.watch-cat-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.watch-cat-arrow.prev { left: -10px; }
.watch-cat-arrow.next { right: -10px; }

@media (max-width: 1200px) {
    .watch-cat-arrow.prev { left: 0; }
    .watch-cat-arrow.next { right: 0; }
}

.watch-featured-cats-grid {
    display: flex !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px 30px 5px;
}

.watch-featured-cats-grid::-webkit-scrollbar {
    display: none;
}

.watch-cat-card {
    flex: 0 0 calc(20% - 16px); /* Default 5 items */
    scroll-snap-align: start;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.02);
}

@media (max-width: 1024px) {
    .watch-cat-card {
        flex: 0 0 calc(33.333% - 14px); /* 3 items */
    }
}

@media (max-width: 768px) {
    .watch-cat-card {
        flex: 0 0 calc(50% - 10px); /* 2 items */
    }
}

.watch-cat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.watch-cat-img-box {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.watch-cat-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

}

.watch-cat-card:hover .watch-cat-img-box {
    transform: scale(1.15) rotate(5deg);
}

.watch-cat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.watch-cat-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: #7f8c8d;
    transition: all 0.3s;
    position: relative;
}

.watch-cat-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.watch-cat-card:hover .watch-cat-btn {
    color: var(--primary-color);
}

.watch-cat-card:hover .watch-cat-btn::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .watch-featured-cats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .watch-featured-cats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .watch-featured-cats-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 5px 20px 30px 20px;
        scrollbar-width: none;
    }
    
    .watch-featured-cats-grid::-webkit-scrollbar {
        display: none;
    }
    
    .watch-cat-card {
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
        padding: 25px 10px;
    }
    
    .watch-cat-title {
        font-size: 0.85rem;
    }
}

/* Products Section */
.watch-products-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.watch-section-header {
    margin-bottom: 1.5rem;
}

.watch-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    display: inline-block;
}

/* Products Grid - Slider version */
.watch-product-slider-container {
    position: relative;
    margin-bottom: 2rem;
}

.watch-product-slider-window {
    overflow: hidden;
    position: relative;
}

.watch-products-grid {
    display: flex !important;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px 25px 5px;
    scroll-snap-type: x mandatory;
}

.watch-products-grid::-webkit-scrollbar {
    display: none;
}

.watch-product-card {
    flex: 0 0 calc(20% - 0.8rem); /* Default 5 items */
    scroll-snap-align: start;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

@media (max-width: 1024px) {
    .watch-product-card {
        flex: 0 0 calc(33.333% - 1rem); /* 3 items on tablet */
    }
}

@media (max-width: 768px) {
    .watch-product-card {
        flex: 0 0 calc(50% - 0.75rem); /* 2 items on mobile */
    }
}

/* Slider Arrows (Premium Synchronized Style) */
.watch-product-slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.watch-product-slider-arrow:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-color) !important;
}

.watch-product-slider-arrow.prev { left: -15px; }
.watch-product-slider-arrow.next { right: -15px; }

@media (max-width: 1320px) {
    .watch-product-slider-arrow.prev { left: 5px; }
    .watch-product-slider-arrow.next { right: 5px; }
}

@media (max-width: 768px) {
    .watch-product-slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Product Card */
.watch-product-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.watch-product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.watch-discount-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    z-index: 10;
}

.watch-product-img-wrapper {
    position: relative;
    aspect-ratio: 1;
    background-color: #f9fafb;
    padding: 1rem;
    overflow: hidden;
}

.watch-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.watch-product-card:hover .watch-product-img {
    transform: scale(1.05);
}

.watch-product-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.watch-product-card:hover .watch-product-overlay {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.watch-product-actions {
    display: flex;
    gap: 0.5rem;
}

.watch-action-form {
    display: inline;
}

.watch-action-btn {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.watch-action-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.watch-action-btn i,
.watch-action-btn span {
    font-size: 0.875rem;
}

/* Product Info */
.watch-product-info {
    padding: 1rem;
}

.watch-product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
    height: 2.3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.watch-product-link {
    color: #111827;
    text-decoration: none;
}

.watch-product-link:hover {
    color: #4b5563;
}

.watch-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.watch-price-current {
    font-size: 0.9rem;
    font-weight: 650;
    color: var(--primary-color);
}

.watch-price-old {
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.watch-add-cart-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.watch-add-cart-btn:hover {
    background-color: var(--text-dark);
}

/* View All Button */
.watch-view-all {
    text-align: center;
    margin-top: 2rem;
}

.watch-view-all-btn {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.watch-view-all-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Trend Section */
.watch-trend-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.watch-trend-slider-container {
    position: relative;
    padding: 0 10px;
}

.watch-trend-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 20;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-trend-arrow:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-color) !important;
}

@media (max-width: 991px) {
    .watch-trend-arrow {
        display: flex;
    }
    .watch-trend-arrow.prev { left: -5px; }
    .watch-trend-arrow.next { right: -5px; }
    
    .watch-trend-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        scrollbar-width: none;
        padding-bottom: 20px;
    }
    
    .watch-trend-grid::-webkit-scrollbar {
        display: none;
    }
    
    .watch-trend-col {
        flex: 0 0 100%;
        scroll-snap-align: start;
        padding: 1rem !important;
    }
}

.watch-trend-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .watch-trend-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.watch-trend-col {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.watch-trend-col:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.watch-trend-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.watch-trend-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.watch-trend-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.watch-trend-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.watch-trend-item:hover {
    background-color: #f8fafc;
    transform: translateX(5px);
}

.watch-trend-img-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.watch-trend-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.watch-trend-item:hover .watch-trend-img {
    transform: scale(1.1);
}

.watch-trend-info {
    flex: 1;
}

.watch-trend-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.watch-trend-name a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}

.watch-trend-name a:hover {
    color: var(--primary-color);
}

.watch-trend-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.watch-trend-rating i {
    color: #f59e0b;
    font-size: 0.7rem;
}

.watch-trend-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Services Section */
.watch-services-section {
    padding: 3rem 0;
}

.watch-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .watch-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .watch-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.watch-service-item {
    text-align: center;
}

.watch-service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.watch-service-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.watch-service-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .watch-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .watch-products-section {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .watch-section-title {
        font-size: 1.25rem;
    }

    .watch-products-grid {
        gap: 0.75rem;
    }

    .watch-product-info {
        padding: 0.75rem;
    }

    
    .watch-product-name {
        font-size: 0.92rem;
        height: 2.4rem;
    }


    .watch-price-current {
        font-size: 1rem;
    }

    .watch-add-cart-btn {
        font-size: 0.8125rem;
        padding: 0.5rem;
    }
}

/* Home Four Banner Slider */
#home-four-banner {
    position: relative;
    padding: 30px 0;
}

#home-four-banner .item-four-banner {
    padding: 10px;
}

#home-four-banner .item-four-banner a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #fff;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    #home-four-banner {
        padding: 15px 0;
    }
    #home-four-banner .item-four-banner {
        padding: 5px;
    }
}

#home-four-banner .item-four-banner img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

#home-four-banner .item-four-banner:hover img {
    transform: scale(1.05);
}

/* Custom Owl Nav Style */
.style-owl-nav .owl-carousel {
    position: relative;
}

.style-owl-nav .owl-nav {
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.style-owl-nav .owl-nav button {
    width: 35px;
    height: 35px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto;
    transition: all 0.3s ease !important;
    border: none !important;
    padding: 0 !important;
}

.style-owl-nav .owl-nav button:hover {
    background: var(--primary-color) !important;
    transform: scale(1.1);
}

.style-owl-nav .owl-nav button:hover svg {
    fill: #fff;
}

.style-owl-nav .owl-nav button svg {
    width: 18px;
    height: 18px;
    fill: #333;
    transition: fill 0.3s ease;
}

.style-owl-nav .owl-nav button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f4f6 !important;
}

/* Responsive Nav */
@media (max-width: 1200px) {
    .style-owl-nav .owl-nav {
        left: 0;
        right: 0;
    }
}

@media (max-width: 768px) {
    .style-owl-nav .owl-nav {
        display: none !important; /* Hide arrows on small mobile if preferred */
    }
}
/* Main Banner Carousel */
.vi-main-carousel .carousel-inner {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vi-main-carousel .carousel-item img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .vi-main-carousel .carousel-item img {
        min-height: 180px; /* Prevent too-small banners on mobile */
    }
    
    .vi-main-carousel .carousel-control-prev,
    .vi-main-carousel .carousel-control-next {
        display: none; /* Swipe is standard for mobile carousels */
    }
}

.vi-main-carousel .carousel-control-prev-icon,
.vi-main-carousel .carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.vi-main-carousel .btn-dark {
    background: rgba(0, 0, 0, 0.5) !important;
    border: none !important;
    backdrop-filter: blur(4px);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vi-main-carousel .btn-dark:hover {
    background: var(--primary-color) !important;
    transform: scale(1.1);
}

/* Vitamin House Style Categories */
.vi-category-section {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.vi-category-section .container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.vi-scroller {
    position: relative;
}

.vi-scroller__inner {
    overflow: hidden;
}

.vi-collection-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 10px 0 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.vi-collection-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.vi-collection-item {
    flex: 0 0 191px; /* Use a fixed width for desktop */
    text-decoration: none !important;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0; /* Important: prevent squashing */
    scroll-snap-align: start;
}

@media (max-width: 1200px) {
    .vi-collection-item {
        flex: 0 0 140px;
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .vi-collection-item {
        flex: 0 0 110px;
        scroll-snap-align: center;
    }
    .vi-collection-list {
        gap: 15px;
    }
}

.vi-collection-item:hover {
    transform: translateY(-5px);
}

.vi-collection-item__image-wrapper {
    width: 100%;
    margin-bottom: 12px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.vi-collection-item__image-wrapper--rounded {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    aspect-ratio: 1/1; /* Ensure height equals width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vi-collection-item:hover .vi-collection-item__image-wrapper--rounded {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.vi-aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square aspect ratio */
}

.vi-aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vi-collection-item:hover .vi-aspect-ratio img {
    transform: scale(1.1);
}

.vi-collection-item__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    display: block;
    margin-top: 5px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.vi-collection-item:hover .vi-collection-item__title {
    color: var(--accent-color);
}

/* Nav Buttons */
.vi-nav-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.vi-nav-button:hover {
    background: #004d40;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.vi-nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vi-nav-button.previous {
    left: -20px;
}

.vi-nav-button.next {
    right: -20px;
}

@media (max-width: 1250px) {
    .vi-nav-button.previous { left: 5px; }
    .vi-nav-button.next { right: 5px; }
}

@media (max-width: 768px) {
    .vi-nav-button {
        display: none !important; /* Touch scrolling is preferred on mobile */
    }
}

@media (max-width: 768px) {
    .vi-nav-button {
        width: 32px;
        height: 32px;
        top: 35%; /* Adjust top for smaller cards */
    }
    .vi-nav-button svg {
        width: 14px;
        height: 14px;
    }
}

/* --- Modern Banner Layout --- */
.section-slider {
    width: 100%;
    padding: 20px 0;
    background: #f8f9fa;
}

.index-slider--wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.index-slider--nav {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    height: fit-content;
}

.megamenu-nav-main {
    list-style: none !important;
    padding: 10px 0;
    margin: 0;
}

.megamenu-item {
    position: relative;
    list-style: none !important;
}

.megamenu-item:before {
    display: none !important;
}


.megamenu-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.megamenu-link:hover {
    background: rgba(201, 33, 39, 0.05);
    color: #C92127;
}

.megamenu-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.megamenu-link:hover .megamenu-icon {
    color: #C92127;
}

.megamenu-name {
    flex: 1;
}

.megamenu-ic-right {
    width: 10px;
    opacity: 0.5;
}

/* Banner Content */
.index-slider--banner {
    flex: 1;
}

.index-slider--row {
    display: flex;
    gap: 15px;
}

.coll-left {
    flex: 0 0 calc(66.666% - 7.5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coll-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.index-banner--top {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.index-banner--bottom {
    display: flex;
    gap: 15px;
}

.index-banner--bottom .index-banner--item {
    flex: 1;
}

.index-banner--item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.index-banner--item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.aspect-ratio {
    display: block;
    width: 100%;
    position: relative;
    padding-top: calc(var(--height-img) / var(--width-img) * 100%);
    background: #eee;
}

.aspect-ratio picture, .aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Overrides */
.slick-dots {
    bottom: 15px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .index-slider--nav {
        flex: 0 0 220px;
    }
    .index-slider--wrap {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .index-slider--nav {
        display: none;
    }
    .index-slider--row {
        flex-direction: column;
    }
    .coll-left {
        flex: 0 0 100% !important;
    }
    .coll-right, .index-banner--bottom {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .section-slider {
        padding: 10px 0;
    }
    .index-slider--wrap {
        padding: 0;
    }
    .index-slider--banner {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .index-slider--banner {
        padding: 0 10px;
    }
}



/* Product Icon Categories Section */
.section-categories {
    padding: 30px 0;
    background: #f8f9fa;
    margin-bottom: 20px;
}

.section-categories .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.wrapper-content {
    padding: 10px;
    background-color: white;
    border-radius: 15px;
}

.section-categories .box-header {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.section-categories .hTitle a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
}

.list-icon {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.item-icon {
    text-align: center;
    transition: transform 0.3s ease;
}

.item-icon:hover {
    transform: translateY(-5px);
}

.item-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img .aspect-ratio {
    padding-top: 0 !important;
    background: none !important;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img img {
    position: static !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-title h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin: 0;
}

.item-title a {
    color: inherit;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .list-icon {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 991px) {
    .list-icon {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .section-categories .section-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .section-categories .section-content::-webkit-scrollbar {
        display: none;
    }
    .list-icon {
        display: grid !important;
        grid-template-rows: repeat(2, auto); /* 2 Rows */
        grid-auto-flow: column; /* Scroll horizontally */
        grid-template-columns: none !important;
        gap: 15px 25px;
        width: max-content;
        padding: 0 5px;
    }
    .item-icon {
        width: 85px; /* Fixed width for each item to allow scrolling */
    }
    .item-img {
        width: 50px;
        height: 50px;
    }
    .item-title h3 {
        font-size: 0.75rem;
    }
}

/* Banners Grid Section */
.section-banners {
    padding: 10px 0;
    background: #ffffff;
}

.section-banners .container-fluid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner-box {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.banner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Promo Banner Slider Navigation */
.promo-banner-1-slider.owl-carousel,
.promo-banner-2-slider.owl-carousel {
    position: relative;
}

.promo-banner-1-slider.owl-carousel .owl-nav button,
.promo-banner-2-slider.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
    z-index: 10;
    border: 1px solid #f1f5f9 !important;
}

.promo-banner-1-slider.owl-carousel .owl-nav button:hover,
.promo-banner-2-slider.owl-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
}

.promo-banner-1-slider.owl-carousel .owl-nav button.owl-prev,
.promo-banner-2-slider.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
}

.promo-banner-1-slider.owl-carousel .owl-nav button.owl-next,
.promo-banner-2-slider.owl-carousel .owl-nav button.owl-next {
    right: -10px;
}

@media (max-width: 767px) {
    .promo-banner-1-slider.owl-carousel .owl-nav button.owl-prev,
    .promo-banner-2-slider.owl-carousel .owl-nav button.owl-prev {
        left: 5px;
    }

    .promo-banner-1-slider.owl-carousel .owl-nav button.owl-next,
    .promo-banner-2-slider.owl-carousel .owl-nav button.owl-next {
        right: 5px;
    }
    
    .banner-box {
        margin-bottom: 0; /* Slider handles spacing */
    }
}


