/* =========================================
   DROPS SECTION STYLES (Refined Spacing & Alignment)
   ========================================= */
.drops-section {
    padding: 0 0 20px 0;
    /* Minimized padding */
    text-align: center;
}

.drops-section h2.section-title {
    text-align: center !important;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px !important;
    /* Minimized gap */
    color: #000;
    letter-spacing: 1px;
}

/* Tabs */
.drops-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px !important;
    /* Minimized gap */
    align-items: center;
}

.drops-nav-item {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.drops-nav-item.active {
    color: #000 !important;
    border-bottom: 2px solid #000 !important;
}

.drops-nav-separator {
    color: #d1d5db;
    font-weight: 400;
}

/* Shop Link */
.shop-link {
    display: inline-block;
    color: #000 !important;
    text-decoration: underline !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* Reduced from 25px */
}

/* Scroll Container */
.drops-products-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 15px;
    /* User requested 10px padding on mobile mainly, but applied generally first, will override for mobile */
    padding: 0 15px 20px 15px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    /* PREVENTS 'STUCK/CENTER' BUG */
}

.drops-products-container::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.drops-products-container .card {
    min-width: 45%;
    max-width: 45%;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    margin: 0;
    display: block;
    text-align: left !important;
    /* LEFT ALIGNED */
}

.drops-products-container .card img {
    width: 100%;
    aspect-ratio: 3/4 !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 8px;
}

.drops-products-container .card .body {
    padding: 0 !important;
    text-align: left !important;
    /* LEFT ALIGNED */
    display: block !important;
}

.drops-products-container .card .title {
    text-align: left !important;
    /* LEFT ALIGNED */
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
    line-height: 1.2;
    white-space: normal;
    width: 100%;
    display: block;
}

.drops-products-container .card .price,
.drops-products-container .card .price-now {
    text-align: left !important;
    /* LEFT ALIGNED */
    font-size: 15px;
    font-weight: 700;
    color: #000;
    width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .drops-products-container .card {
        min-width: 250px;
        max-width: 250px;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .drops-section {
        padding-top: 0 !important;
        margin-top: -10px !important;
        /* Tighten gap to slider */
    }

    .drops-products-container {
        padding-left: 10px !important;
        /* Match user request */
        padding-right: 10px !important;
    }
}

/* =========================================
   LARGE CATEGORY IMAGES SECTION
   ========================================= */
.large-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.large-cat-card {
    position: relative;
    width: 100%;
    height: 500px;
    /* Large height as requested */
    overflow: hidden;
    border-radius: 4px;
}

.large-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.large-cat-card:hover img {
    transform: scale(1.05);
}

.large-cat-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through */
}

.large-cat-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    text-align: left;
}

.large-cat-btn {
    display: inline-block;
    background: white;
    color: black;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    pointer-events: auto;
    /* Clickable */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.large-cat-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .large-cat-grid {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 20px;
        padding: 15px;
    }

    .large-cat-card {
        height: 450px;
        /* Slightly taller on mobile for presence */
    }

    .large-cat-overlay {
        bottom: 20px;
        left: 20px;
    }
}