/* public/css/responsive.css */
/* Dedicated file for Tablet and Mobile Responsiveness */

/* 


    
    /* Grid Adjustments - generally fallback to 2 or 3 columns */
    .products-grid,
    .collection-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    
    /* Help Section Tablet */
    .help-section-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 40px 30px !important;
    }
    .help-content {
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }
    .help-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .help-cards {
        padding-right: 0 !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    .help-card {
        width: calc(33.333% - 15px) !important;
        min-width: 220px !important;
        padding: 30px 15px !important;
    }
    

}

/* ==========================================================
   MOBILE RESPONSIVENESS (Max-width 768px)
   ========================================================== */
@media (max-width: 768px) {
    /* Homepage Specific Layout Fixes */
    /* 1. 'Why Choose' features section (Auto-Slider) */
    .features-section {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important; /* Fix centering issue that shows adjacent items */
        overflow-x: hidden !important; /* Hide scroll to users, JS will scroll */
        scroll-snap-type: x mandatory;
        gap: 0 !important;
        padding: 25px 0 !important; /* Increased from 20px to 25px */
        scroll-behavior: smooth;
        width: 100vw !important;
    }
    .features-section::-webkit-scrollbar {
        display: none;
    }

    .trending-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
        overflow-x: hidden !important;
    }
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        overflow-x: hidden !important;
    }
    .product-card {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    .product-info {
        padding-top: 10px !important;
        overflow: hidden !important;
    }
    .product-card img.main-img, .product-card img.hover-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    html body .product-grid .product-card h3.product-title,
    html body .product-grid .product-card .product-title {
        font-size: 0.85rem !important;
        white-space: normal !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }
    html body .trending-section .section-header h2.trending-title,
    html body .pfe-section h2.trending-title {
        font-size: 1.4rem !important;
        text-align: left !important;
    }
    /* Fix stars stacking vertically */
    .product-reviews {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 4px !important;
        overflow: hidden !important;
    }
    .stars {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 1px !important;
        font-size: 0.65rem !important;
    }
    .stars i {
        display: inline-block !important;
    }
    .product-reviews span {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }
    .product-price {
        font-size: 0.8rem !important;
        margin-top: 3px !important;
    }
    .product-subtitle {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Layout 3 (Hero) Product Titles */
    html body .layout3-section .layout3-product-title {
        font-size: 1rem !important;
        white-space: normal !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }
    html body .layout3-section .layout3-product-subtitle {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* 3. 'Need Help?' section */
    .help-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .help-section::before {
        width: 450px !important;
        height: 450px !important;
        top: 0 !important;
        left: -80px !important;
        background-size: contain !important;
        background-position: left top !important;
        transform: none !important;
        opacity: 0.5 !important;
    }
    .help-section-inner {
        flex-direction: column !important;
        padding: 20px !important; /* Padding halved */
    }
    .help-content {
        max-width: 100% !important;
        margin-bottom: 30px !important;
        text-align: left !important;
    }
    .help-content h2, .help-subtitle, .help-desc {
        text-align: left !important;
    }
    .help-cards {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: stretch !important;
        padding-right: 0 !important;
    }
    .help-card {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        grid-template-rows: auto auto !important;
        column-gap: 15px !important;
        row-gap: 4px !important;
        text-align: left !important;
        align-items: center !important;
        padding: 15px 20px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
        border: none !important;
        background-color: #fff !important;
        box-sizing: border-box;
    }
    .help-card i {
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 !important;
        font-size: 20px !important;
    }
    .help-card h3 {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin: 0 !important;
        font-size: 1.1rem !important;
    }
    .help-card p {
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin: 0 !important;
        align-self: flex-start !important;
    }
    
    /* 4. 'Plants For Everyone' category grid */
    .pfe-section {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    .pfe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
    .pfe-card {
        width: 100% !important;
    }
    .pfe-card p {
        font-size: 0.85rem !important;
        margin-top: 6px !important;
    }
    .pfe-image {
        aspect-ratio: 4/4.5 !important;
    }
    .pfe-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Blog Preview Section */
    .blog-preview {
        display: block !important;
        margin-top: 30px !important; /* Halved from 60px */
    }
    .blog-preview .blog-image {
        display: none !important;
    }
    .blog-preview .blog-articles {
        padding: 0 !important;
    }
    .blog-article {
        padding: 20px 0 !important;
    }
    .blog-article:first-child {
        padding-top: 0 !important;
    }
    .blog-article:last-child {
        padding-bottom: 0 !important;
    }
    .blog-title {
        font-size: 1.3rem !important;
    }

    /* Testimonial Section */
    .testimonial-section {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
    .testimonial-section .trending-title {
        font-size: 1.3rem !important;
    }




    
    /* Grids to Single/Double Column */
    .products-grid,
    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Layout Containers */
    .container, 
    .wrapper,
    .main-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }
    
    /* Product Page Specifics */
    .product-detail-layout {
        display: flex !important;
        flex-direction: column !important;
    }
    .product-detail-images {
        width: 100% !important;
        margin-bottom: 20px;
    }
    .product-detail-info {
        width: 100% !important;
        padding-left: 0 !important;
    }
    
    /* Cart and Checkout Specifics */
    .cart-layout,
    .checkout-layout {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Typography Scaling */
    h1:not(.policy-content h1):not(.notranslate):not(.tw-heading) { font-size: 2rem !important; }
    h2:not(.share-modal-title):not(.faq-section-heading):not(.tw-heading) { font-size: 1.75rem !important; }
    h3:not(.extra-title):not(.product-title):not(.tw-heading) { font-size: 1.5rem !important; }
    
    /* Buttons */
    .btn:not(.mobile-empty-btn), button:not(#announcement-prev):not(#announcement-next):not(.mobile-close-btn):not(.layout3-prev):not(.layout3-next):not(.wishlist-remove-btn):not(.btn-wishlist):not(.btn-upsell-add):not(.btn-write-review):not(.option-btn):not(.color-btn):not(.guide-close):not(.remove-btn):not(.cart-close-btn):not(.qty-btn):not(.swiper-button-prev):not(.swiper-button-next):not(.amb-btn-prev):not(.amb-btn-next):not(.btn-add-to-cart), .btn-checkout {
        width: 100% !important;
        padding: 12px 15px !important;
    }
    
    /* Announcement Bar Font Size - handled via Tailwind */



    /* Layout 3 Hero Alignments */
    .layout3-section {
        height: auto !important;
        padding: 0 !important;
        overflow: hidden;
    }
    .layout3-container {
        padding-left: 0 !important;
        flex-direction: column !important;
    }
    .layout3-left {
        text-align: left !important;
        align-items: flex-start !important;
        padding: 30px 20px !important;
        flex: none !important;
    }
    .layout3-left h1 {
        font-size: 2.2rem !important;
    }
    .layout3-left p.subheading {
        font-size: 1rem !important;
    }
    .layout3-buttons {
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box;
        gap: 10px;
    }
    .layout3-btn-primary, .layout3-btn-secondary {
        width: auto !important;
        flex: none;
        text-align: center;
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    .layout3-footer-text {
        text-align: left !important;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    /* Layout 3 Mobile Swiper Overrides */
    .layout3-right-wrapper {
        width: 100vw !important;
        flex: none !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
        padding-bottom: 30px !important;
        box-sizing: border-box !important;
    }
    .layout3-swiper {
        overflow: visible !important;
    }
    .layout3-product-card {
        width: 280px !important;
    }
    .layout3-swiper .swiper-slide {
        width: 280px !important;
    }
    .layout3-nav-buttons {
        display: none !important;
    }
}

/* ==========================================================
   SMALL MOBILE RESPONSIVENESS (Max-width 480px)
   ========================================================== */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr !important; /* Stack products on very small screens */
    }
    .mobile-drawer,
    .search-drawer-panel {
        width: 90%;
    }
    .mobile-footer-btn {
        flex-direction: column;
        font-size: 0.85rem;
        padding: 10px;
    }
}

/* ==========================================================
   MOBILE SEARCH DRAWER STYLES
   ========================================================== */
.mobile-search-category-title {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    font-weight: normal;
}
.mobile-search-category-title:first-child {
    margin-top: 0;
}
.mobile-live-search-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}
.mobile-live-search-product {
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
}
.mobile-live-search-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 151 / 195;
    object-fit: cover;
    margin-bottom: 8px;
    background: #f0f0f0;
}
.mobile-live-search-product h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}
.mobile-live-search-product:hover h4 {
    text-decoration: underline;
    text-decoration-color: #1a1a1a;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.mobile-live-search-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.mobile-live-search-list li {
    margin-bottom: 8px;
}
.mobile-live-search-list a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
}
.mobile-live-search-list a:hover {
    text-decoration: underline;
    text-decoration-color: #1a1a1a;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.mobile-live-search-list a strong {
    font-weight: 600;
}

/* ==========================================================
   SEARCH DRAWER PANEL STYLES (RIGHT SLIDE)
   ========================================================== */
.search-drawer-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100% !important;
    max-width: none;
    height: 100vh;
    background: #ffffff;
    z-index: 10000 !important;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.search-drawer-panel.open {
    right: 0;
}

/* ==========================================================
   SHIP DATE MODAL (MOBILE)
   ========================================================== */
@media (max-width: 768px) {
    .ship-date-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin: 0 0 10px 0 !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .ship-date-title {
        font-family: 'Outfit', sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        margin: 0 !important;
        text-align: left !important;
        padding: 0 0 0 12px !important;
    }
    .ship-date-close {
        display: none !important; /* Completely hide the old button on mobile */
    }
    .close-desktop { display: none !important; }
    .close-mobile { display: flex !important; align-items: center; justify-content: center;    }
    /* Ship date modal footer — reduce font sizes/weights on mobile */
    #shipDateModal > div:last-child > div:first-child {
        font-size: 0.65rem !important;
        font-weight: 400 !important;
    }
    #shipDateModal > div:last-child > div:nth-child(2) {
        font-size: 0.85rem !important;
        font-weight: 400 !important;
    }
    #shipDateModal > div:last-child button {
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        padding: 12px !important;
    }
    .ship-date-desc {
        font-style: italic !important;
        font-size: 0.8rem !important;
        max-width: 100% !important;
        padding: 0 12px 0 12px !important;
        box-sizing: border-box !important;
        margin: 0 auto 20px auto !important;
        text-align: left !important;
    }


    /* Calendar Header Styles — Fix position:absolute default of flatpickr-current-month */
    .flatpickr-months {
        overflow: visible !important;
    }
    .flatpickr-months .flatpickr-month {
        overflow: visible !important;
    }
    .flatpickr-current-month {
        position: static !important;  /* Remove position:absolute; left:12.5% default */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        left: 0 !important;
        padding: 0 0 12px 0 !important;
        overflow: visible !important;
    }
    .flatpickr-current-month .flatpickr-monthDropdown-months {
        font-family: 'Libre Baskerville', serif !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        background: transparent !important;
        outline: none !important;
        margin: 0 !important;
        padding: 0 3px 0 0 !important;
        border: none !important;
        color: #1a1a1a !important;
        pointer-events: none !important;
        width: auto !important;
        text-align: right !important;
        overflow: visible !important;
    }
    .flatpickr-current-month .numInputWrapper {
        width: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    .flatpickr-current-month input.cur-year {
        font-family: 'Libre Baskerville', serif !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        color: #1a1a1a !important;
        background: transparent !important;
        padding: 0 0 0 3px !important;
        margin: 0 !important;
        border: none !important;
        pointer-events: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        width: 5ch !important;
        text-align: left !important;
    }
    .flatpickr-current-month .numInputWrapper span.arrowUp,
    .flatpickr-current-month .numInputWrapper span.arrowDown {
        display: none !important; /* Hide year arrows on mobile for a cleaner look */
    }

    /* JS-replaced spans for month/year — no clipping, perfect centering */
    .mobile-month-text,
    .mobile-year-text {
        font-family: 'Outfit', sans-serif !important;
        font-weight: 500 !important;
        font-size: 1.2rem !important;
        color: #111 !important;
        display: inline !important;
        white-space: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    .mobile-month-text {
        padding-right: 4px !important;
    }
    .mobile-year-text {
        padding-left: 4px !important;
    }

    /* Align prev/next arrows with month-year text */
    .flatpickr-months {
        position: relative !important;
    }
    .flatpickr-months .flatpickr-prev-month,
    .flatpickr-months .flatpickr-next-month {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(calc(-50% - 12px)) !important;
        padding: 0 10px !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
    }
}



@media (max-width: 768px) {
    /* Login Page Mobile Adjustments */
    .auth-container {
        margin: 20px auto !important;
        padding: 20px 15px !important;
        max-width: 90% !important;
    }
    .auth-tabs {
        margin-bottom: 15px !important;
    }
    .auth-tab {
        font-family: 'Outfit', sans-serif !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        padding: 5px 0 8px 0 !important;
    }
    .auth-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important;
    }
    .auth-section form {
        padding: 0 15px !important;
    }
    .form-group {
        margin-bottom: 12px !important;
    }
    .form-group label {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
    }
    .form-control {
        padding: 14px 10px !important;
        font-size: 0.85rem !important;
    }
    .btn-auth {
        padding: 15px !important;
        font-size: 0.95rem !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    .auth-links {
        margin-top: 10px !important;
        font-size: 0.85rem !important;
    }
    .social-login {
        margin-top: 20px !important;
    }
    .social-login-text {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Adjust spacing around the mobile gallery */
    body .breadcrumb-container {
        padding-top: 5px;
        padding-bottom: 0;
        margin-bottom: -25px;
        font-size: 0.75rem;
    }
    body .product-top-section {
        padding-top: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .product-details {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    .pdp-title {
        font-size: 1.4rem !important;
    }

    /* Product Gallery Mobile Layout (Match Desktop: Thumbnails Left, Main Right) */
    .product-top-section .product-gallery {
        display: block;
        position: relative;
        padding-left: 0;
        box-sizing: border-box;
        margin-bottom: 15px;
    }
    .product-top-section .gallery-thumbnails {
        position: absolute;
        top: 0;
        left: 0;
        width: 65px;
        height: 100%;
        max-height: none;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 8px;
        padding-right: 0;
    }
    .product-top-section .gallery-thumbnails::-webkit-scrollbar {
        width: 2px;
    }
    .product-top-section .gallery-thumbnails::-webkit-scrollbar-thumb {
        background-color: #ccc;
    }
    .product-top-section .gallery-thumbnails img {
        width: 100%;
        height: 75px;
        object-fit: cover;
    }
    .product-top-section .gallery-main {
        width: 100%;
        display: block;
        aspect-ratio: 1200 / 1553;
        overflow: hidden;
    }
    .product-top-section .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

    /* Explicit active state for ship option buttons on mobile */
    #pageBtnShipNow[style*="background: #234229"],
    #pageBtnShipNow[style*="background: rgb(35, 66, 41)"],
    #pageBtnShipLater[style*="background: #234229"],
    #pageBtnShipLater[style*="background: rgb(35, 66, 41)"] {
        background: #234229 !important;
        color: white !important;
    }

@media (max-width: 1024px) {



    /* Upsell Typography Mobile Overrides */
    .view-cart-link {
        display: none !important;
    }
    .upsells-title {
        font-weight: 400;
    }
    .upsell-item-title {
        font-weight: 300;
    }
    
    /* Extra Info Title Mobile Override */
    .extra-title {
        font-size: 1.2rem;
    }
    
    /* Care Card Origin Section Mobile Overrides */
    .care-card-header h4 {
        font-size: 1.2rem;
    }
    .care-card-header p {
        font-weight: 300;
    }

    /* Why Choose Brrikkho Mobile Overrides */
    .why-choose-list h3 {
        font-weight: 300;
    }

    /* Write Review Button Mobile Overrides */
    .btn-write-review {
        padding: 10px 14px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Reviews Summary Layout Overrides */
    .reviews-header-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }
    .reviews-summary-left, 
    .reviews-summary-right {
        display: contents;
    }
    .reviews-rating-big {
        grid-column: 1 / 2;
        grid-row: 1;
        text-align: left;
    }
    .recommend-badge {
        grid-column: 2 / 3;
        grid-row: 1;
        text-align: right;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    .reviews-bars {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }
    .bar-track {
        width: 100%;
        flex: 1;
    }
    .btn-write-review {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-self: center;
    }
    
    /* Checkout Summary Lines Mobile Overrides */
    .summary-lines {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }
    .summary-line {
        margin-bottom: 6px !important;
    }
    
    .mobile-break { display: block !important; }
    
    /* Mobile Accordion Overrides */
    .mobile-accordion-wrapper {
        margin-bottom: 20px;
    }
    .mobile-accordion-header {
        cursor: pointer;
        background-color: #f8faf9;
        padding: 14px 15px;
        border: 1px solid #d0e4da;
        border-radius: 4px;
        font-size: 1rem !important;
        font-weight: 500;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .accordion-icon {
        display: block !important;
        transition: transform 0.3s ease;
        font-size: 0.95rem;
        color: #027B5F;
    }
    .mobile-accordion-content {
        display: none !important;
        padding: 15px;
        border: 1px solid #d0e4da;
        border-top: none;
        border-radius: 0 0 4px 4px;
        margin-top: 0;
        background: #fff;
    }
    .mobile-accordion-wrapper.open .mobile-accordion-header {
        border-radius: 4px 4px 0 0;
        background-color: #eff5f2;
    }
    .mobile-accordion-wrapper.open .mobile-accordion-content {
        display: block !important;
    }
    .mobile-accordion-wrapper.open .accordion-icon {
        transform: rotate(180deg);
    }
    
    /* Mobile Swiper Gallery Overrides */
    .product-top-section .gallery-thumbnails,
    .product-top-section .gallery-main {
        display: none !important;
    }
    .mobile-gallery-wrap {
        display: block !important;
    }
    .mobile-swiper-gallery {
        display: block !important;
        width: 100%;
    }
    .mobile-swiper-gallery .swiper-wrapper {
        transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
    }
    /* Guide Drawer Overrides */
    .guide-drawer {
        width: 100% !important;
        max-width: 100% !important;
    }
    .guide-header {
        padding: 15px 15px !important;
        border-bottom: none !important;
    }
    .guide-header h3 {
        font-size: 1.15rem !important;
        white-space: nowrap;
    }
    .guide-close i {
        display: none !important;
    }
    .guide-close::after {
        content: '\00D7';
        font-size: 1.8rem;
        font-weight: 200;
        font-family: Arial, sans-serif;
        line-height: 1;
    }
    .guide-content {
        padding: 20px 15px !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .options-grid {
        gap: 8px !important;
        justify-content: flex-start !important;
    }
    .option-btn {
        min-width: 0 !important;
        flex: 0 0 calc(33.333% - 10px) !important;
        max-width: calc(33.333% - 10px) !important;
        padding: 15px 5px !important;
        font-size: 0.85rem !important;
    }
    
    .mobile-swiper-gallery .swiper-slide {
        width: 93%;
    }
    .mobile-swiper-gallery img {
        width: 100%;
        height: auto;
        aspect-ratio: 1200 / 1553;
        object-fit: cover;
        display: block;
    }
    .mobile-swiper-gallery .swiper-pagination {
        position: relative;
        bottom: auto;
        margin-top: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mobile-swiper-gallery .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin: 0 5px !important;
    }
    .mobile-swiper-gallery .swiper-pagination-bullet-active {
        background: #234229;
        transform: scale(1.7);
    }
    
    /* Zoom Button Wrapper */
    .mobile-gallery-wrap {
        position: relative;
        display: block !important;
    }
    #mobileSearchDrawer .mobile-drawer-header h2 {
        font-size: 1.15rem !important;
    }
}

/* ========================================================== */
/* Collections Page                                          */
/* ========================================================== */
.collections-title { font-size: 3rem; }
.cat-name { font-size: 1.1rem; }
.cat-arrow { font-size: 1.2rem; }
.cat-img-gap { margin-bottom: 15px; }

@media (max-width: 767px) {
    .collections-title { font-size: 1.5rem; }
    .cat-name { font-size: 0.72rem; }
    .cat-arrow { font-size: 0.85rem; margin-left: 3px; }
    .cat-img-gap { margin-bottom: 8px; }
}
