/* Shop Cart Styles */
/* .cart-button and #cart-badge are defined in css/core/nav.css -- single source of truth */

/* Add to Cart Button on Product Cards */
.shop-card-add-btn {
    margin-top: var(--belle-space-sm);
    padding: 0.625rem 1.25rem;
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border: 2px solid var(--belle-wine);
    border-radius: var(--belle-radius-sm);
    font-family: var(--belle-font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--belle-transition);
    width: 100%;
}

.shop-card-add-btn:hover {
    background: var(--belle-wine-light);
    transform: translateY(-1px);
    box-shadow: var(--belle-shadow-md);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    transition: var(--belle-transition);
}

.cart-drawer.active {
    pointer-events: all;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 22, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--belle-ivory);
    box-shadow: var(--belle-shadow-xl);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-drawer.active .cart-drawer-content {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--belle-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-close {
    background: transparent;
    border: 2px solid var(--belle-wine);
    color: var(--belle-wine);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--belle-transition);
    line-height: 1;
}

.cart-drawer-close:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--belle-border);
    background: var(--belle-parchment);
}

.cart-total {
    text-align: center;
    padding: 1rem 0;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--belle-border);
    border-radius: var(--belle-radius-md);
    margin-bottom: 1rem;
    background: var(--belle-parchment);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--belle-radius-sm);
    overflow: hidden;
    border: 1px solid var(--belle-border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--belle-font-display);
    font-size: 1.125rem;
    color: var(--belle-wine);
    margin: 0 0 0.25rem 0;
}

.cart-item-variant {
    font-size: 0.875rem;
    color: var(--belle-text-medium);
    margin: 0 0 0.5rem 0;
}

.cart-item-price {
    font-family: var(--belle-font-display);
    font-size: 1rem;
    color: var(--belle-wine);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--belle-border);
    border-radius: var(--belle-radius-sm);
    padding: 0.25rem;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--belle-wine);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--belle-transition);
}

.qty-btn:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border-radius: var(--belle-radius-sm);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--belle-text-dark);
    font-family: var(--belle-font-sans);
    font-size: 0.9375rem;
    padding: 0.25rem;
}

.cart-item-remove {
    background: transparent;
    border: 1px solid var(--belle-border);
    color: var(--belle-text-medium);
    padding: 0.375rem 0.75rem;
    border-radius: var(--belle-radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--belle-transition);
    font-family: var(--belle-font-sans);
}

.cart-item-remove:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border-color: var(--belle-wine);
}

.cart-item-notes {
    margin-top: 0.5rem;
}

.notes-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--belle-border);
    border-radius: var(--belle-radius-sm);
    font-family: var(--belle-font-sans);
    font-size: 0.875rem;
    color: var(--belle-text-dark);
    background: var(--belle-ivory);
}

/* Submit Order Modal */
.submit-order-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-order-modal.active {
    pointer-events: all;
    opacity: 1;
}

.submit-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.7);
    backdrop-filter: blur(4px);
}

.submit-modal-content {
    position: relative;
    background: var(--belle-ivory);
    border-radius: var(--belle-radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--belle-shadow-xl);
    border: 2px solid var(--belle-wine);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.submit-order-modal.active .submit-modal-content {
    transform: scale(1);
}

.submit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.submit-modal-close {
    background: transparent;
    border: 2px solid var(--belle-wine);
    color: var(--belle-wine);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--belle-transition);
    line-height: 1;
}

.submit-modal-close:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
}

.submit-modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.submit-step {
    display: none;
}

.submit-step.active {
    display: block;
}

.submit-step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--belle-border);
}

.submit-step-actions .btn {
    flex: 1;
}

/* Order Review Styles */
.order-review-items {
    margin-bottom: 1.5rem;
}

.order-review-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--belle-border);
    border-radius: var(--belle-radius-md);
    margin-bottom: 0.75rem;
    background: var(--belle-parchment);
}

.order-review-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--belle-radius-sm);
    overflow: hidden;
    border: 1px solid var(--belle-border);
}

.order-review-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-review-item-details {
    flex: 1;
    min-width: 0;
}

.order-review-item-name {
    font-family: var(--belle-font-display);
    font-size: 1rem;
    color: var(--belle-wine);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.order-review-item-variant {
    font-size: 0.875rem;
    color: var(--belle-text-medium);
    margin: 0 0 0.25rem 0;
}

.order-review-item-notes {
    font-size: 0.875rem;
    color: var(--belle-text-dark);
    margin: 0.25rem 0;
    font-style: italic;
}

.order-review-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--belle-text-medium);
}

.order-review-item-price {
    font-family: var(--belle-font-display);
    font-weight: 600;
    color: var(--belle-wine);
    font-size: 1rem;
}

.remove-from-review-btn {
    background: transparent;
    border: 1px solid var(--belle-border);
    color: var(--belle-text-medium);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--belle-transition);
    line-height: 1;
}

.remove-from-review-btn:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border-color: var(--belle-wine);
}

.order-review-summary {
    background: var(--belle-parchment);
    border: 2px solid var(--belle-border);
    border-radius: var(--belle-radius-md);
    padding: 1.25rem;
}

.order-review-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--belle-text-dark);
}

.order-review-summary-row strong {
    font-family: var(--belle-font-display);
    color: var(--belle-wine);
    font-weight: 600;
}

.order-review-total {
    border-top: 2px solid var(--belle-border);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-size: 1.125rem;
}

.order-review-total strong {
    font-size: 1.5rem;
}

.submit-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.submit-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--belle-parchment);
    border: 2px solid var(--belle-border);
    border-radius: var(--belle-radius-md);
    cursor: pointer;
    transition: var(--belle-transition);
    font-family: var(--belle-font-sans);
}

.submit-option:hover {
    border-color: var(--belle-wine);
    background: var(--belle-ivory);
    transform: translateY(-2px);
    box-shadow: var(--belle-shadow-md);
}

.submit-option-icon {
    font-size: 2rem;
}

.submit-option-label {
    font-weight: 600;
    color: var(--belle-wine);
    font-size: 1rem;
}

/* Customer Info Modal */
.customer-info-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.customer-info-modal.active {
    pointer-events: all;
    opacity: 1;
}

.customer-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.7);
    backdrop-filter: blur(4px);
}

.customer-modal-content {
    position: relative;
    background: var(--belle-ivory);
    border-radius: var(--belle-radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--belle-shadow-xl);
    border: 2px solid var(--belle-wine);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.customer-info-modal.active .customer-modal-content {
    transform: scale(1);
}

.customer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.customer-modal-close {
    background: transparent;
    border: 2px solid var(--belle-wine);
    color: var(--belle-wine);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--belle-transition);
    line-height: 1;
}

.customer-modal-close:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--belle-wine);
    font-weight: 500;
    font-family: var(--belle-font-sans);
    font-size: 0.9375rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--belle-wine);
    border-radius: var(--belle-radius-sm);
    font-family: var(--belle-font-sans);
    font-size: 1rem;
    color: var(--belle-text-dark);
    background: var(--belle-ivory);
    transition: var(--belle-transition);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: var(--belle-radius-sm);
    font-family: var(--belle-font-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--belle-transition);
    border: 2px solid;
}

.btn-primary {
    background: var(--belle-botanical);
    color: var(--belle-ivory);
    border-color: var(--belle-botanical);
}

.btn-primary:hover {
    background: var(--belle-botanical-light);
    transform: translateY(-1px);
    box-shadow: var(--belle-shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--belle-wine);
    border-color: var(--belle-wine);
}

.btn-secondary:hover {
    background: var(--belle-parchment);
}

/* Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cart-toast.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cart-toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--belle-ivory);
    border: 2px solid var(--belle-wine);
    border-radius: var(--belle-radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--belle-shadow-lg);
    min-width: 280px;
    max-width: 400px;
}

.cart-toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cart-toast-text {
    flex: 1;
    font-family: var(--belle-font-sans);
    font-size: 0.9375rem;
    color: var(--belle-text-dark);
    font-weight: 500;
}

.cart-toast-view {
    background: transparent;
    border: 1px solid var(--belle-wine);
    color: var(--belle-wine);
    padding: 0.375rem 0.75rem;
    border-radius: var(--belle-radius-sm);
    font-family: var(--belle-font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--belle-transition);
    flex-shrink: 0;
}

.cart-toast-view:hover {
    background: var(--belle-wine);
    color: var(--belle-ivory);
}

/* Floating Submit Button */
.floating-submit-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border: 2px solid var(--belle-wine);
    border-radius: 50px;
    font-family: var(--belle-font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--belle-shadow-xl);
    transition: var(--belle-transition);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
}

.floating-submit-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-submit-btn.is-empty {
    background: color-mix(in srgb, var(--belle-wine) 88%, white);
    border-color: color-mix(in srgb, var(--belle-wine) 88%, white);
}

.floating-submit-btn:hover {
    background: var(--belle-wine-light);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--belle-shadow-2xl);
}

.floating-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.floating-submit-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.floating-submit-text {
    font-weight: 600;
    letter-spacing: 0.025em;
}

.floating-submit-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    background: var(--belle-ivory);
    color: var(--belle-wine);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-drawer {
        max-width: 100%;
    }

    .submit-options {
        grid-template-columns: 1fr;
    }

    .cart-toast {
        bottom: 80px;
        right: 10px;
        left: 10px;
    }

    .cart-toast-content {
        min-width: auto;
        max-width: none;
    }

    .floating-submit-btn {
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: center;
        border-radius: var(--belle-radius-md);
    }

    .floating-submit-count {
        position: absolute;
        top: -8px;
        right: -8px;
    }
}
/* --- */
/* Testimonials Carousel - Response 3-Column Grid */

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: var(--belle-space-lg) 0;
    overflow: hidden;
    /* Hide overflow from the track */
}

/* The Track */
.testimonials-carousel {
    display: flex;
    width: 100%;
    /* No overflow hidden here, wrapper handles it */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Individual Items */
.testimonial-carousel-item {
    flex: 0 0 100%;
    /* Default mobile: 1 item wide */
    width: 100%;
    padding: 0 var(--belle-space-sm);
    /* Spacing between items */
    opacity: 1;
    /* Always visible */
    position: relative;
    /* Reset absolute positioning */
    transform: none;
    /* Reset transform */
    pointer-events: auto;
    box-sizing: border-box;
}

/* Desktop: 3 items side-by-side */
@media (min-width: 1024px) {
    .testimonial-carousel-item {
        flex: 0 0 33.33333%;
        width: 33.33333%;
    }
}

/* Tablet: 2 items ?? Optional, keeping 1 for safety or maybe 2 */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-carousel-item {
        flex: 0 0 50%;
        width: 50%;
    }
}

.testimonial-carousel-item .card {
    height: 100%;
    /* Equal height cards */
    display: flex;
    flex-direction: column;
    border: 1px solid var(--belle-botanical);
    background: var(--belle-ivory);
    /* Remove huge max-width */
    max-width: none;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--belle-space-md);
    margin-top: var(--belle-space-xl);
}

.carousel-dots {
    display: flex;
    gap: var(--belle-space-xs);
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--belle-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--belle-transition);
}

.carousel-dot.active {
    background: var(--belle-botanical);
    transform: scale(1.2);
}

.carousel-arrow {
    background: var(--belle-parchment);
    color: var(--belle-botanical);
    border: 1px solid var(--belle-botanical);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--belle-transition);
}

.carousel-arrow:hover {
    background: var(--belle-botanical);
    color: var(--belle-ivory);
}

/* Indicator Text */
.carousel-indicator {
    text-align: center;
    margin-top: var(--belle-space-sm);
    font-size: 0.875rem;
    color: var(--belle-text-medium);
}
/* --- */
/* Mobile Carousel - Homepage Sections
   Only activates on mobile devices, desktop layout unchanged */

/* Carousel Container - Hidden on desktop */
.mobile-carousel-wrapper {
    display: none;
}

/* Carousel Styles - Mobile Only */
@media (max-width: 768px) {

    /* Show carousel wrapper on mobile */
    .mobile-carousel-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* Hide original grid on mobile when carousel exists - HIGHEST PRIORITY */
    .section .container>.grid.grid-3.featured-products-grid,
    .section .container .featured-products-grid,
    .featured-products-grid,
    .grid.grid-3.featured-products-grid,
    .section .container>.grid.grid-3.featured-events-grid,
    .section .container .featured-events-grid,
    .featured-events-grid,
    .grid.grid-3.featured-events-grid,
    .mobile-carousel-wrapper~.grid,
    .mobile-carousel-wrapper .grid {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Carousel Container */
    .mobile-carousel {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: var(--belle-space-md);
        padding: var(--belle-space-sm) 0;
        margin: 0 calc(-1 * var(--belle-space-md));
        padding-left: var(--belle-space-md);
        padding-right: var(--belle-space-md);
        scroll-padding: var(--belle-space-md);
        /* Smooth momentum scrolling */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    /* Hide scrollbar but keep functionality */
    .mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    .mobile-carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Carousel Items - ONE TILE AT A TIME */
    .mobile-carousel-item {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        /* Smooth transitions */
        transition: transform 0.2s ease-out;
        /* Prevent layout shifts */
        box-sizing: border-box;
    }

    /* Ensure cards take full width in carousel */
    .mobile-carousel-item .card,
    .mobile-carousel-item .event-card {
        border: 3px solid var(--belle-wine);
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        /* Prevent content overflow */
        overflow: hidden;
    }

    /* Carousel Navigation */
    .carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--belle-space-sm);
        margin-top: var(--belle-space-lg);
        padding: var(--belle-space-md) 0;
    }

    .carousel-dots {
        display: flex;
        gap: var(--belle-space-xs);
        align-items: center;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--belle-border);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: var(--belle-transition);
        flex-shrink: 0;
    }

    .carousel-dot.active {
        background: var(--belle-wine);
        width: 24px;
        border-radius: 4px;
    }

    .carousel-arrow {
        background: var(--belle-wine);
        color: var(--belle-ivory);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--belle-transition);
        flex-shrink: 0;
    }

    .carousel-arrow:hover {
        background: var(--belle-wine-light);
        transform: scale(1.1);
    }

    .carousel-arrow:active {
        transform: scale(0.95);
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    /* Carousel Indicators */
    .carousel-indicator {
        text-align: center;
        margin-top: var(--belle-space-sm);
        font-size: 0.875rem;
        color: var(--belle-text-medium);
        font-family: var(--belle-font-sans);
    }
}

/* Desktop — restore normal grid layout, hide carousel */
@media (min-width: 769px) {
    .mobile-carousel-wrapper {
        display: none;
    }
}
/* --- */
/* Seasonal Products Carousel - Multiple Tiles in One Row */

.seasonal-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: var(--belle-space-lg) 0;
    overflow: hidden;
}

.seasonal-carousel-container {
    position: relative;
    width: 100%;
}

.seasonal-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: var(--belle-space-sm) 0;
}

.seasonal-carousel-track {
    display: flex;
    align-items: stretch; /* Forces all items in a row to the same height */
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    gap: var(--belle-space-md);
}

.seasonal-carousel-item {
    flex: 0 0 calc(33.333% - var(--belle-space-md) * 0.666);
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex; /* Ensures inner card can stretch to full height */
    flex-direction: column;
}

.seasonal-carousel-item .card {
    width: 100%;
    margin: 0;
    height: 100%;
    border: 3px solid var(--belle-wine);
}

/* -- REMOVED 1200px MEDIA QUERY -- Always keep 3 columns on tablet/desktop to match Pub Favorites -- */

/* Show 3 items on desktop/tablet */
@media (min-width: 769px) {
    .seasonal-carousel-item {
        flex: 0 0 calc(33.333% - var(--belle-space-md) * 0.666);
    }
}

/* Show 1 item on mobile */
@media (max-width: 768px) {
    .seasonal-carousel-wrapper {
        margin-left: calc(-1 * var(--belle-space-md));
        margin-right: calc(-1 * var(--belle-space-md));
        width: calc(100% + var(--belle-space-md) * 2);
        padding: 0;
        /* Vertical alignment - match other sections */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .seasonal-carousel-container {
        width: 100%;
        overflow: visible;
    }

    .seasonal-carousel {
        padding: var(--belle-space-sm) 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: var(--belle-space-md) !important;
        margin: 0 calc(-1 * var(--belle-space-md)) !important;
        padding-left: var(--belle-space-md) !important;
        padding-right: var(--belle-space-md) !important;
        scroll-padding: var(--belle-space-md) !important;
        overscroll-behavior-x: contain !important;
        /* Ensure it's scrollable */
        position: relative !important;
        width: 100% !important;
        display: flex !important;
        /* Vertical alignment - center with other sections */
        align-items: center !important;
    }

    .seasonal-carousel::-webkit-scrollbar {
        display: none;
    }

    .seasonal-carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .seasonal-carousel-track {
        gap: var(--belle-space-md) !important;
        display: flex !important;
        /* Disable transform on mobile - use native scroll */
        transform: none !important;
        transition: none !important;
        padding: 0 !important;
        width: max-content !important;
        min-width: 100% !important;
        flex-direction: row !important;
    }

    .seasonal-carousel-item {
        /* ONE TILE AT A TIME - Full width - MAXIMUM SPECIFICITY */
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Ensure items are visible */
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .seasonal-carousel-item .card {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .seasonal-carousel-wrapper {
        margin-left: calc(-1 * var(--belle-space-sm));
        margin-right: calc(-1 * var(--belle-space-sm));
        width: calc(100% + var(--belle-space-sm) * 2);
    }

    .seasonal-carousel {
        margin: 0 calc(-1 * var(--belle-space-sm));
        padding-left: var(--belle-space-sm);
        padding-right: var(--belle-space-sm);
    }

    .seasonal-carousel-item {
        /* ONE TILE AT A TIME - Full width */
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}

/* Carousel Navigation */
.seasonal-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--belle-space-md);
    margin-top: var(--belle-space-xl);
    padding: var(--belle-space-md) 0;
}

.seasonal-carousel-dots {
    display: flex;
    gap: var(--belle-space-xs);
    align-items: center;
}

.seasonal-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--belle-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--belle-transition);
    flex-shrink: 0;
}

.seasonal-carousel-dot:hover {
    background: var(--belle-wine-light);
}

.seasonal-carousel-dot.active {
    background: var(--belle-wine);
    width: 30px;
    border-radius: 5px;
}

.seasonal-carousel-arrow {
    background: var(--belle-wine);
    color: var(--belle-ivory);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--belle-transition);
    flex-shrink: 0;
    box-shadow: var(--belle-shadow-md);
}

.seasonal-carousel-arrow:hover {
    background: var(--belle-wine-light);
    transform: scale(1.1);
    box-shadow: var(--belle-shadow-lg);
}

.seasonal-carousel-arrow:active {
    transform: scale(0.95);
}

.seasonal-carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.seasonal-carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.seasonal-carousel-indicator {
    text-align: center;
    margin-top: var(--belle-space-md);
    font-size: 0.875rem;
    color: var(--belle-text-medium);
    font-family: var(--belle-font-sans);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seasonal-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .seasonal-carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}