/* ==========================================================================
   15. Responsive CSS
   ========================================================================== */

/* Laptop Screens (1024px and down) */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .product-grid {
        gap: var(--spacing-md);
    }
    
    .timeline-container::before {
        left: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    /* Footer Grid stacking to prevent column squeezing */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-column:last-child {
        grid-column: span 2;
    }
}

/* Tablet Screens (992px and down) */
@media screen and (max-width: 992px) {

    .header-container {
        flex-wrap: nowrap !important;
    }

    /* Sticky Header & Slide Down Mobile Menu */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .nav-cta-btn {
        display: none; /* Hide Shop Now button in header actions on tablet/mobile to save space */
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: var(--bg-primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        padding: 0;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: max-height 0.4s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)), opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
        z-index: 99;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.open {
        max-height: 520px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: var(--spacing-md) 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        letter-spacing: var(--tracking-wide, 0.04em);
    }
    
    /* Layout Overrides */
    .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        height: auto;
        aspect-ratio: auto;
        padding: 0;
        background-color: var(--text-dark);
    }
    
    .hero-bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 640 / 223;
        z-index: 1;
        overflow: hidden;
    }
    
    .hero-bg-img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .hero-overlay-container {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: var(--spacing-xl) var(--spacing-sm);
        margin: 0;
        max-width: 100%;
        display: block;
    }

    .hero-content-box {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-tagline::before {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .trust-bar-section {
        display: none !important;
    }
    
    .trust-bar-pill {
        padding: 12px 1.5rem;
    }
    
    .trust-bar-text {
        font-size: 0.85rem;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    /* AI Showcase Section Tablet/Mobile overrides */
    .showcase-media-card.full-width {
        aspect-ratio: auto;
        height: auto;
    }
    
    .showcase-placeholder {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    
    .showcase-media-wrapper {
        height: auto !important;
        min-height: auto !important;
        aspect-ratio: 16 / 9;
        width: 100%;
        display: block;
    }
    
    .showcase-placeholder-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 24px 20px !important;
        background: #1c0e07 !important; /* solid rich dark heritage color */
        justify-content: center !important;
        background-image: none !important;
    }
    
    .showcase-placeholder-overlay .placeholder-text {
        text-shadow: none !important;
    }
    
    .showcase-placeholder-overlay .placeholder-text h4 {
        font-size: 1.35rem !important;
        margin-bottom: 8px !important;
    }
    
    .showcase-placeholder-overlay .placeholder-text p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    
    .process-section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Timeline Stack on Tablet/Mobile */
    .timeline-container {
        flex-direction: column;
        gap: var(--spacing-md);
        padding-left: var(--spacing-sm);
    }
    
    .timeline-container::before {
        display: none; /* Hide dashed connector line */
    }
    
    .timeline-step {
        text-align: left;
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
        padding: 0;
    }
    
    .timeline-num {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .timeline-step h3 {
        font-size: 1.15rem;
        margin-bottom: 2px;
    }
    
    .timeline-step p {
        font-size: 0.85rem;
    }
    
    .origin-section {
        background-image: linear-gradient(rgba(250, 246, 240, 0.92), rgba(250, 246, 240, 0.92)), url('../images/banners/hero_banner.png');
    }
    
    .origin-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .origin-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 500px;
    }
    
    .vs-badge {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .reviews-swiper-wrapper {
        padding: 0 40px;
    }
    
    .reviews-swiper-prev,
    .reviews-swiper-next {
        width: 38px;
        height: 38px;
    }
    
    .reviews-swiper-prev svg,
    .reviews-swiper-next svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-grid-layout {
        grid-template-columns: 1fr;
    }

    /* Shop Page Tablet Responsiveness */
    .shop-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }
    
    .shop-sidebar {
        width: 100%;
        position: static;
    }
    
    .shop-actions-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }

    /* Cart Page Tablet Responsiveness */
    .cart-page-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }

    /* Contact Page Tablet Responsiveness */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }

    /* Checkout Page Tablet Responsiveness */
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }
}

/* Mobile Screens (768px and down) */
@media screen and (max-width: 768px) {
    /* Narrow search on tablet */
    .header-search-input {
        width: 120px !important;
    }
    .nav-search-dropdown {
        width: 280px !important;
    }

    /* Newsletter Form Stack for Mobile */
    .newsletter-form {
        flex-direction: column !important;
        border: none !important;
        background: transparent !important;
        overflow: visible !important;
    }
    .newsletter-form input {
        width: 100% !important;
        border: 1px solid rgba(250, 246, 240, 0.2) !important;
        border-radius: var(--radius-sm) !important;
        margin-bottom: 8px !important;
        height: 44px !important;
        background-color: rgba(250, 246, 240, 0.08) !important;
        padding: 0 12px !important;
    }
    .newsletter-form button {
        width: 100% !important;
        border-radius: var(--radius-sm) !important;
        height: 44px !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .product-grid {
        gap: var(--spacing-sm);
    }

    /* Form Grid mobile stacking */
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    .form-grid .full-width {
        grid-column: span 1;
    }

    /* Cart Mobile Table to Card Transformation */
    .cart-table, 
    .cart-table thead, 
    .cart-table tbody, 
    .cart-table th, 
    .cart-table td, 
    .cart-table tr {
        display: block;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        background-color: var(--white);
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-sm);
        position: relative;
    }
    
    .cart-table td {
        border: none;
        padding: var(--spacing-xs) 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        border-bottom: 1px dashed var(--border-color);
        font-size: 0.95rem;
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: var(--text-muted);
        text-align: left;
    }
    
    .cart-table td[data-label="Product"] {
        display: block;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
    
    .cart-table td[data-label="Product"]::before {
        display: none;
    }
    
    .cart-item-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .cart-item-info img {
        width: 60px;
        height: 60px;
    }
    
    .cart-table td[data-label="Action"] {
        border-bottom: none;
        padding-top: 10px;
    }

    /* Special Offers Stack */
    .offers-section {
        width: calc(100% - 2rem);
        margin: var(--spacing-lg) auto;
        padding: 60px 0;
    }
    .offers-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding: 0 24px !important;
    }
    .offer-banner-card.combo-card {
        max-width: 580px;
        margin: 0 auto;
    }
}

/* Mobile and Small Screen Layouts (480px and down) */
@media screen and (max-width: 480px) {
    /* Global Overrides */
    :root {
        --spacing-lg: 1.25rem;
        --spacing-xl: 2rem;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .container {
        padding: 0 14px !important;
    }
    
    section {
        padding: 32px 0 !important;
    }

    section.hero {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .section-header {
        margin-bottom: 20px !important;
        padding: 0 4px;
    }
    
    .section-title {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
    }
    
    .section-title::after {
        width: 36px !important;
        bottom: -2px !important;
    }
    
    .section-desc {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-top: 4px;
    }

    /* Promo Announcement Bar */
    .promo-bar {
        font-size: 0.65rem !important;
        padding: 5px 0 !important;
    }
    
    .promo-bar-track span {
        padding-right: 3rem !important;
    }
    
    .promo-sep {
        margin: 0 1rem !important;
    }

    /* Sticky Header */
    header {
        height: auto !important;
    }
    
    .header-container {
        height: 58px !important;
        padding: 0 10px !important;
    }
    
    .logo-img {
        height: 48px !important;
    }
    
    .menu-toggle {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin-left: 0 !important;
    }
    
    .header-actions {
        gap: 2px !important;
        margin-right: 0 !important;
    }
    
    .action-btn {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    
    .header-search-wrapper {
        position: relative !important;
    }

    .header-search-form {
        display: flex !important;
        align-items: center !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
    }
    
    .header-search-input {
        display: none !important; /* Default collapsed */
        width: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        outline: none !important;
        font-size: 0.85rem !important;
        color: var(--text-dark) !important;
        font-family: var(--font-body) !important;
        transition: all 0.3s ease !important;
    }

    /* Active expanding search bar on mobile - slides below navbar */
    .header-search-form.mobile-active {
        position: fixed !important;
        top: 82px !important;
        right: 10px !important;
        left: 10px !important;
        transform: none !important;
        background-color: var(--white) !important;
        border: 1.5px solid var(--border-soft) !important;
        padding: 8px 14px !important;
        border-radius: var(--radius-full) !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
        z-index: 1100 !important;
        animation: slideDownSearch 0.25s ease forwards !important;
    }

    @keyframes slideDownSearch {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0);     }
    }

    .header-search-form.mobile-active .header-search-input {
        display: block !important;
        width: 100% !important;
        padding: 2px 0 !important;
        font-size: 0.9rem !important;
    }

    .header-search-form.mobile-active .header-search-trigger {
        order: 2 !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }

    .header-search-form.mobile-active .header-search-input {
        order: 1 !important;
    }

    /* Dynamic Search Dropdown styling for mobile active state */
    .header-search-wrapper .nav-search-dropdown {
        display: none !important; /* Default hidden */
    }

    .header-search-wrapper .nav-search-dropdown.active {
        display: block !important;
        position: fixed !important;
        top: calc(82px + 52px) !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-height: 320px !important;
        overflow-y: auto !important;
        z-index: 1099 !important;
        background: var(--white) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14) !important;
        border: 1px solid var(--border-soft) !important;
        border-radius: var(--radius-md) !important;
        padding: 8px 0 !important;
        animation: slideDownSearch 0.2s ease forwards !important;
    }

    
    .cart-icon-container {
        position: relative !important;
    }
    
    .cart-badge {
        position: absolute !important;
        top: 6px !important;
        right: 6px !important;
        width: 15px !important;
        height: 15px !important;
        font-size: 0.65rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    /* Hero Section */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        background-color: var(--deep-green) !important;
        padding: 0 !important;
    }
    
    .hero-bg {
        height: 220px !important;
        aspect-ratio: auto !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .hero-bg-img {
        object-fit: cover !important;
        height: 100% !important;
        width: 100% !important;
        opacity: 0.35 !important;
    }
    
    
    .hero-overlay-container {
        position: relative !important;
        z-index: 5 !important;
        width: 100% !important;
        padding: 28px 18px 50px !important;
        background-color: var(--cream) !important;
        border-top: 3px solid var(--gold) !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05) !important;
        display: block !important;
    }
    
    .hero-content-box {
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .hero-content-box h2 {
        color: var(--text-dark) !important;
    }
    
    .hero-desc {
        color: var(--text-dark) !important;
        opacity: 0.85;
    }
    
    .hero-tagline {
        font-size: 0.7rem !important;
        letter-spacing: 0.12em !important;
        color: var(--mustard) !important;
        justify-content: center !important;
        margin-bottom: 6px !important;
    }
    
    .hero h2 {
        font-size: 1.35rem !important;
        color: var(--deep-green) !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        font-weight: 800 !important;
    }
    
    .hero-desc {
        font-size: 0.85rem !important;
        color: var(--text-muted) !important;
        line-height: 1.4 !important;
        margin-bottom: 14px !important;
    }
    
    .hero-buttons {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .hero-buttons .btn {
        width: auto !important;
        padding: 10px 22px !important;
        font-size: 0.8rem !important;
    }

    /* Trust Bar Section */
    .trust-bar-section {
        display: none !important;
    }
    
    .trust-bar-pill {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px 12px !important;
        padding: 6px 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .trust-bar-item {
        font-size: 0.72rem !important;
        flex: 0 1 calc(50% - 8px) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        color: var(--deep-green) !important;
        font-weight: 600 !important;
    }
    
    .trust-bar-divider {
        display: none !important;
    }
    
    .trust-bar-text {
        font-size: 0.72rem !important;
    }

    /* 2-Column Product Grids */
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .product-card {
        padding: 10px !important;
        border-radius: var(--radius-md) !important;
        background: var(--white) !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: var(--shadow-soft) !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        text-align: center !important;
    }
    
    .product-card-img-wrapper {
        height: 135px !important;
        padding-top: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 6px !important;
        position: relative !important;
    }
    
    .product-card-img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        height: auto !important;
        max-height: 125px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .product-badge {
        font-size: 0.6rem !important;
        padding: 2px 6px !important;
        top: 6px !important;
        left: 6px !important;
        border-radius: var(--radius-sm) !important;
    }
    
    .product-tag-bottom {
        font-size: 0.55rem !important;
        padding: 1px 4px !important;
        bottom: -4px !important;
        border-radius: var(--radius-sm) !important;
    }
    
    .product-card-content {
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
        padding: 0 !important;
    }
    
    .product-category {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }
    
    .product-title {
        font-size: 0.8rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
        height: 32px !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        font-weight: 700 !important;
    }
    
    .product-desc-snippet {
        display: none !important;
    }
    
    .card-size-selector {
        display: flex !important;
        justify-content: center !important;
        gap: 3px !important;
        margin-bottom: 6px !important;
        flex-wrap: wrap !important;
    }
    
    .card-size-btn {
        font-size: 0.6rem !important;
        padding: 2px 4px !important;
        border-radius: var(--radius-sm) !important;
        border: 1px solid var(--border-color) !important;
        min-width: 24px !important;
        height: 18px !important;
        line-height: 16px !important;
    }
    
    .product-price-row {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        margin-bottom: 6px !important;
        margin-top: auto !important;
    }
    
    .product-card-actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
        width: 100% !important;
    }
    
    .product-card-actions .btn {
        padding: 6px 2px !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        height: 32px !important;
        border-radius: var(--radius-sm) !important;
    }
    
    .product-card-actions .btn-outline {
        flex: 1 !important;
        border: 1px solid var(--deep-green) !important;
        color: var(--deep-green) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .product-card-actions .add-to-cart-btn {
        flex: 1.4 !important;
        background-color: var(--mustard) !important;
        color: var(--white) !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-wishlist-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
        top: 6px !important;
        right: 6px !important;
    }


    /* Special Offers Section */
    .offers-section {
        padding: 48px 0 !important;
        border-radius: 20px !important;
    }
    
    .offers-section .container {
        padding: 0 16px !important;
    }
    
    .offers-title {
        font-size: 2.0rem !important;
        gap: 8px !important;
    }
    
    .offers-title svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .offers-desc {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        padding: 0 10px !important;
    }
    
    .offers-grid {
        gap: 20px !important;
        padding: 0 !important;
    }
    
    .offer-banner-card.combo-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }
    
    .offer-card-header {
        margin-bottom: 16px !important;
    }
    
    .offer-icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
    }
    
    .offer-icon-wrapper svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .offer-badge-pill {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
    }
    
    .offer-card-title {
        font-size: 1.35rem !important;
        margin-bottom: 8px !important;
    }
    
    .offer-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 18px !important;
        line-height: 1.45 !important;
    }
    
    .bundle-includes-label {
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
    }
    
    .bundle-includes-list {
        gap: 8px !important;
        margin-bottom: 20px !important;
        font-size: 0.85rem !important;
    }
    
    .bundle-includes-list li svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .offer-card-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding-top: 20px !important;
    }
    
    .pricing-info {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .offer-old-price {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }
    
    .offer-new-price {
        font-size: 1.5rem !important;
    }
    
    .price-only-text {
        font-size: 0.8rem !important;
    }
    
    .cta-savings-col {
        align-items: stretch !important;
        width: 100% !important;
        gap: 10px !important;
    }
    
    .offer-savings-badge {
        font-size: 0.68rem !important;
        padding: 3px 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .offer-cta-btn {
        width: 100% !important;
        height: 44px !important;
        font-size: 0.8rem !important;
    }

    /* Category Shortcut Cards */
    .category-banners-section {
        padding: 32px 0 !important;
    }
    
    .banner-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .category-banner-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px !important;
        border-radius: var(--radius-md) !important;
        background-color: var(--white) !important;
        border: 1px solid var(--border-color) !important;
    }
    
    .banner-info {
        flex: 1 !important;
        padding-right: 8px !important;
        text-align: left !important;
    }
    
    .banner-info h3 {
        font-size: 1.05rem !important;
        margin-bottom: 2px !important;
    }
    
    .banner-info p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .banner-info .btn {
        padding: 6px 10px !important;
        font-size: 0.65rem !important;
    }
    
    .banner-showcase {
        flex: 0 0 65px !important;
        order: 1 !important;
        margin-bottom: 0 !important;
    }
    
    .banner-showcase img {
        width: 65px !important;
        height: 65px !important;
        object-fit: contain !important;
    }

    /* Traditional Process Section */
    .process-section {
        padding: 32px 0 !important;
    }
    
    .timeline-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding-left: 0 !important;
        position: relative !important;
    }
    
    .timeline-container::before {
        display: none !important;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        left: 20px;
        top: 20px;
        bottom: 20px;
        width: 2px;
        border-left: 2px dashed var(--gold);
        z-index: 1;
        display: block !important;
    }
    
    .timeline-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 12px !important;
        z-index: 2 !important;
        position: relative !important;
        padding: 0 !important;
    }
    
    .timeline-num {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.95rem !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        background-color: var(--cream) !important;
        border: 2px solid var(--gold) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .timeline-num svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .timeline-step h3 {
        font-size: 0.95rem !important;
        margin-top: 2px !important;
        margin-bottom: 2px !important;
    }
    
    .timeline-step p {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }

    /* Story Section ("From the Heart of Barmer") */
    .origin-section {
        padding: 32px 0 !important;
    }
    
    .origin-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .origin-text {
        padding: 0 4px !important;
    }
    
    .origin-text h2 {
        font-size: 1.45rem !important;
        margin-bottom: 8px !important;
    }
    
    .origin-text p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .origin-badges {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px 14px !important;
        margin-top: 14px !important;
    }
    
    .hero-badge-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        flex: 1 1 calc(50% - 10px) !important;
        max-width: 130px !important;
    }
    
    .hero-badge-circle {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 4px !important;
    }
    
    .hero-badge-circle svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .hero-badge-text span:first-child {
        font-size: 0.7rem !important;
    }
    
    .hero-badge-text span:last-child {
        font-size: 0.65rem !important;
    }

    /* Comparison Section */
    .comparison-section {
        padding: 32px 0 !important;
    }
    
    .comparison-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        max-width: 100% !important;
    }
    
    .vs-badge {
        display: none !important;
    }
    
    .comparison-col {
        padding: 14px !important;
        border-radius: var(--radius-md) !important;
    }
    
    .comparison-col h3 {
        font-size: 0.92rem !important;
        margin-bottom: 10px !important;
    }
    
    .comparison-list {
        gap: 6px !important;
    }
    
    .comparison-item {
        font-size: 0.78rem !important;
        gap: 6px !important;
    }
    
    .comparison-item span {
        line-height: 1.3 !important;
    }

    /* Purity Proof Cards (2x2 Grid) */
    .proof-section {
        padding: 32px 0 !important;
    }
    
    .proof-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .proof-card {
        padding: 12px !important;
        border-radius: var(--radius-md) !important;
        height: 100% !important;
    }
    
    .proof-card-icon {
        margin-bottom: 6px !important;
    }
    
    .proof-card-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .proof-card h3 {
        font-size: 0.78rem !important;
        margin-bottom: 2px !important;
    }
    
    .proof-card p {
        font-size: 0.68rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .proof-card-link {
        font-size: 0.68rem !important;
    }

    /* Testimonials Swiper */
    .testimonials {
        padding: 32px 0 !important;
    }
    
    .reviews-swiper-wrapper {
        padding: 0 !important;
        position: relative !important;
    }
    
    .testimonial-card {
        padding: 14px !important;
        height: auto !important;
    }
    
    .testimonial-stars {
        font-size: 0.78rem !important;
        margin-bottom: 6px !important;
    }
    
    .testimonial-desc {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }
    
    .reviews-swiper-prev,
    .reviews-swiper-next {
        display: none !important;
    }

    /* FAQ Section */
    .faq-section {
        padding: 32px 0 !important;
    }
    
    .faq-grid-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .faq-col {
        gap: 8px !important;
    }
    
    .faq-item {
        border-radius: var(--radius-sm) !important;
    }
    
    .faq-question {
        padding: 12px 14px !important;
        font-size: 0.82rem !important;
        min-height: 44px !important;
    }
    
    .faq-answer {
        padding: 0 14px !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 14px 12px 14px !important;
    }
    
    .faq-answer p {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }

    /* Footer Section */
    footer {
        padding: 32px 0 16px 0 !important;
    }
    
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 16px !important;
        text-align: left !important;
    }
    
    .footer-column {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        grid-column: span 1 !important;
    }
    
    /* Brand column spans full width and remains centered */
    .footer-column:nth-child(1) {
        grid-column: span 2 !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .footer-column .logo {
        margin-bottom: 8px !important;
    }
    
    .footer-column h4 {
        font-size: 0.92rem !important;
        margin-bottom: 10px !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .footer-grid .footer-column h4::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        align-items: flex-start !important;
        padding-left: 0 !important;
        list-style: none !important;
        width: 100% !important;
    }
    
    .footer-links li a {
        font-size: 0.78rem !important;
        padding: 2px 0 !important;
        display: inline-block !important;
    }
    
    .newsletter-form {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .newsletter-form input {
        font-size: 0.75rem !important;
        padding: 8px 10px !important;
    }
    
    .newsletter-form button {
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
    }
    
    .footer-bottom {
        margin-top: 20px !important;
        padding-top: 12px !important;
    }
    
    .footer-bottom p {
        font-size: 0.65rem !important;
    }
}

/* Extra Small Mobile (360px and down) */
@media screen and (max-width: 360px) {
    .hero h2 {
        font-size: 1.25rem !important;
    }
    
    .hero-desc {
        font-size: 0.8rem !important;
    }
    
    .product-title {
        font-size: 0.75rem !important;
    }
    
    .card-size-btn {
        font-size: 0.55rem !important;
        min-width: 20px !important;
    }
    
    .product-card-actions .btn {
        font-size: 0.6rem !important;
    }
}

/* Scoped Mobile Hero Redesign (max-width: 767px) */
@media screen and (max-width: 767px) {
    .hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        background-color: var(--deep-green) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-visual-wrap {
        position: relative !important;
        height: clamp(250px, 38vw, 320px) !important;
        min-height: 250px !important;
        overflow: hidden !important;
        z-index: 1 !important;
    }

    .hero-bg-img {
        object-fit: cover !important;
        height: 100% !important;
        width: 100% !important;
        opacity: 0.85 !important; /* Make background image fully visible */
        object-position: right center !important;
    }

    .hero-overlay {
        background: transparent !important; /* Clear dark desktop gradient overlay */
    }


    /* Minimal soft shade behind the plate (only on the left) */
    .hero-visual-wrap::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 1.5 !important; /* Place behind the plate but above the background image */
        pointer-events: none !important;
        background: linear-gradient(
            90deg,
            rgba(7, 29, 15, 0.3) 0%,
            rgba(7, 29, 15, 0.08) 20%,
            rgba(7, 29, 15, 0) 40%
        ) !important;
    }

    /* Reposition carousel arrows to the bottom center of the visual area */
    .hero .plate-nav-arrows {
        position: absolute !important;
        top: calc(clamp(250px, 38vw, 320px) - 45px) !important; /* Position relative to the visual container height, shifted up to avoid cutoff */
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 110px !important;
        display: flex !important;
        justify-content: space-between !important;
        pointer-events: none !important;
        z-index: 15 !important;
    }

    .hero .prev-arrow {
        display: flex !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        pointer-events: auto !important;
        z-index: 6 !important;
    }

    .hero .next-arrow {
        display: flex !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        pointer-events: auto !important;
        z-index: 6 !important;
    }

    .hero-overlay-container {
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
        padding: 28px 18px 50px !important;
        background-color: var(--cream) !important;
        border-top: 3px solid var(--gold) !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05) !important;
        display: block !important;
    }

    .hero-content-box {
        width: 100% !important;
        text-align: center !important;
    }
}


/* Mobile Dropdown Menu Adjustments */
@media (max-width: 992px) {
    .nav-menu.open {
        max-height: 650px !important; /* expand height to prevent cropping */
        overflow-y: auto; /* enable scrolling inside menu on short screens */
    }

    .nav-item-dropdown {
        width: 90% !important;
        max-width: 350px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu > .nav-link,
    .nav-link-wrapper {
        position: relative;
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 90% !important;
        max-width: 350px !important;
        padding: 0.55rem 1rem !important;
        background-color: var(--cream-light);
        border: 1px solid rgba(45, 62, 36, 0.1) !important;
        border-radius: var(--radius-md) !important;
        text-decoration: none;
        color: var(--text-dark) !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        transition: all 0.2s ease;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    }

    .nav-link-wrapper {
        width: 100% !important;
    }

    /* Reset nested link styles inside dropdown wrapper to prevent double styling */
    .nav-link-wrapper .nav-link {
        border: none !important;
        background: none !important;
        padding: 0 !important;
        width: auto !important;
        max-width: none !important;
        box-shadow: none !important;
        display: inline !important;
        color: inherit !important;
        font-weight: inherit !important;
        font-size: inherit !important;
    }

    .nav-menu > .nav-link:hover,
    .nav-link-wrapper:hover,
    .nav-menu > .nav-link.active,
    .nav-link-wrapper.active {
        background-color: var(--gold-light) !important;
        border-color: var(--gold) !important;
        color: var(--deep-green) !important;
    }

    .dropdown-toggle-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        background-color: rgba(45, 62, 36, 0.05);
        border-radius: 50%;
        cursor: pointer;
    }

    .dropdown-panel {
        display: none;
        width: 90%;
        background-color: rgba(45, 62, 36, 0.03);
        border-radius: var(--radius-sm);
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 6px;
    }

    .dropdown-panel.mobile-open {
        display: flex;
    }

    .dropdown-panel-divider {
        display: none; /* hide vertical line on mobile stack */
    }

    .dropdown-column {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }

    .dropdown-column h4 {
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 800;
        color: var(--mustard);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.25rem;
    }

    .dropdown-column a {
        font-size: 0.95rem;
        font-weight: 600;
        color: #4A3E2D;
        text-decoration: none;
        padding: 3px 0;
        text-align: center;
    }

    .dropdown-toggle-btn.rotate-icon .chevron-icon {
        transform: rotate(180deg);
    }
}

/* ==========================================================================
   Product Detail Page Responsiveness Updates
   ========================================================================== */

/* Tablet & Mobile: Sidebar → top horizontal scroll nav */
@media screen and (max-width: 992px) {
    .pds-container {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-md) !important;
    }

    .pds-sidebar {
        position: static !important;
        top: auto !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
    }
    .pds-sidebar::-webkit-scrollbar {
        display: none !important;
    }

    .pds-nav {
        display: flex !important;
        flex-direction: row !important;
        border-left: none !important;
        border-bottom: 2px solid var(--border-soft, var(--border-color)) !important;
        gap: 0 !important;
        white-space: nowrap !important;
    }

    .pds-nav-link {
        border-left: none !important;
        margin-left: 0 !important;
        border-bottom: 3px solid transparent !important;
        padding: 10px 14px !important;
        font-size: 0.82rem !important;
        flex-shrink: 0 !important;
    }

    .pds-nav-link.active {
        border-bottom-color: var(--mustard) !important;
        border-left-color: transparent !important;
        background-color: transparent !important;
    }

    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-xl) !important;
        padding: var(--spacing-lg) 20px !important;
    }

    .product-gallery {
        grid-template-columns: 74px 1fr !important;
        position: static !important;
        top: auto !important;
    }

    .product-info-panel {
        position: static !important;
        top: auto !important;
    }
}

/* Mobile Screens (768px and down) */
@media screen and (max-width: 768px) {
    body {
        padding-bottom: 80px !important;
    }
    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
        padding: var(--spacing-md) 16px !important;
    }

    .product-info-panel {
        position: static !important;
        top: auto !important;
        padding-top: var(--spacing-xs) !important;
    }
    
    .product-gallery {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-sm) !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        width: 100% !important;
        position: static !important;
        top: auto !important;
    }
    
    .gallery-main {
        aspect-ratio: 1 !important;
        width: 100% !important;
    }

    .gallery-thumbs {
        flex-direction: row !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .thumb-img {
        width: 68px !important;
        height: 68px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }

    .product-info-panel h1 {
        font-size: 2.2rem !important;
    }

    .product-info-price {
        font-size: 1.8rem !important;
    }
    
    /* --- Product Detail Sections: Mobile Accordion --- */
    .pds-sidebar {
        display: none !important;
    }

    .pds-panel {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }

    .pds-panel-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 0 !important;
        cursor: pointer !important;
        border-bottom: 1px solid var(--border-soft, var(--border-color)) !important;
        -webkit-tap-highlight-color: transparent;
    }

    .pds-panel-header h2 {
        font-size: 1.05rem !important;
        margin-bottom: 0 !important;
    }

    .pds-accordion-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        color: var(--text-muted);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .pds-panel-body {
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .pds-panel.pds-panel-open .pds-panel-body {
        max-height: 2000px !important;
        opacity: 1 !important;
        padding-top: var(--spacing-sm) !important;
        padding-bottom: var(--spacing-md) !important;
    }

    .pds-panel.pds-panel-open .pds-accordion-icon {
        transform: rotate(180deg) !important;
    }

    .pds-panel.pds-panel-open .pds-panel-header {
        border-bottom-color: var(--mustard) !important;
    }

    /* --- Trust Sections Mobile --- */
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .trust-feature-card {
        padding: 20px 14px !important;
    }

    .trust-feature-icon {
        font-size: 1.6rem !important;
    }

    .trust-feature-card h3 {
        font-size: 0.82rem !important;
    }

    .trust-feature-card p {
        font-size: 0.72rem !important;
    }

    .heritage-story-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .heritage-story-card {
        padding: 24px 20px !important;
    }

    .heritage-story-number {
        font-size: 2.2rem !important;
    }

    .cert-strip {
        gap: 4px !important;
    }

    .cert-item {
        padding: 6px 12px !important;
    }

    .cert-divider {
        display: none !important;
    }

    .cert-label {
        font-size: 0.7rem !important;
    }

    /* --- Media Sections Mobile --- */
    .brand-video-highlights {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .brand-video-stat {
        padding: 14px 12px !important;
    }

    .bvs-number {
        font-size: 1.4rem !important;
    }

    .brand-video-play {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.1rem !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .testimonial-card {
        padding: 22px 18px !important;
    }

    .featured-logos-strip {
        gap: 20px !important;
    }

    .featured-logo-text {
        font-size: 0.92rem !important;
    }

    .customer-videos-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        max-width: 420px !important;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .footer-map-grid,
    .about-hero-grid,
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
    }

    .footer-map-info h2 {
        font-size: 1.8rem !important;
    }

    .about-hero-title {
        font-size: 2rem !important;
    }

    .about-story h2 {
        font-size: 2rem !important;
        margin-bottom: var(--spacing-lg) !important;
    }

    .story-text {
        padding: 1.5rem !important;
    }
}

/* Small Mobile Screens (480px and down) */
@media screen and (max-width: 480px) {
    .breadcrumbs {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .page-banner {
        padding: var(--spacing-xs) 0 !important;
    }

    .product-info-panel h1 {
        font-size: 1.7rem !important;
    }

    .product-info-price {
        font-size: 1.5rem !important;
        gap: 0.5rem !important;
    }

    .product-trust-badges-grid {
        gap: 8px !important;
    }

    .badge-item {
        padding: var(--spacing-xs) 4px !important;
    }

    .badge-item span:first-child {
        font-size: 1.1rem !important;
    }

    .badge-item span:last-child {
        font-size: 0.65rem !important;
        letter-spacing: 0.01em !important;
        line-height: 1.2 !important;
    }

    .size-options {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .qty-buy-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .product-qty-control {
        width: 100% !important;
        justify-content: space-between !important;
        height: 44px !important;
    }

    .product-qty-btn {
        flex-grow: 1 !important;
    }

    .qty-buy-row .btn {
        width: 100% !important;
        height: 44px !important;
    }

    .gallery-thumbs {
        justify-content: center !important;
    }

    .thumb-img {
        width: 60px !important;
        height: 60px !important;
    }

    .faq-section .section-title {
        font-size: 1.4rem !important;
    }

    .prod-faq-question {
        font-size: 0.95rem !important;
    }

    .prod-faq-answer {
        font-size: 0.88rem !important;
        padding: 0 16px 0 44px !important;
    }

    .review-header {
        flex-direction: column !important;
        align-items: start !important;
        gap: 4px !important;
    }

    .reviews-summary-widget {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 16px !important;
    }

    .rsw-score-box {
        border-right: none !important;
        border-bottom: 1px solid var(--border-soft, var(--border-color)) !important;
        padding-right: 0 !important;
        padding-bottom: 20px !important;
    }

    .rsw-big-num {
        font-size: 2.5rem !important;
    }

    .review-item {
        padding: 16px !important;
    }

    .review-item-inner {
        gap: 12px !important;
    }

    .review-user-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.75rem !important;
    }

    .review-meta-left {
        gap: 4px !important;
    }

    .reviewer-name {
        font-size: 0.88rem !important;
    }

    .review-verified-badge {
        font-size: 0.65rem !important;
        padding: 1px 6px !important;
    }

    .review-date {
        font-size: 0.72rem !important;
    }

    .review-stars {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }

    .review-comment {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .review-helpful-btn {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
    }

    .review-pag-btn {
        padding: 6px 14px !important;
        font-size: 0.78rem !important;
    }

    .review-pag-page-num {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.78rem !important;
    }
}


/* ══ Responsive Logo Auto-Adjustment ══ */
@media screen and (max-width: 992px) {
    .logo-img {
        max-height: 48px;
        max-width: 160px;
    }
}

@media screen and (max-width: 768px) {
    .logo-img {
        max-height: 50px;
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        max-height: 48px;
        max-width: 140px;
    }
}

@media screen and (max-width: 360px) {
    .logo-img {
        max-height: 42px;
        max-width: 120px;
    }
}

/* ==========================================================================
   KASUTAM THEME RESPONSIVE OVERRIDES
   ========================================================================== */
@media screen and (max-width: 992px) {
    .ks-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .ks-journey-layout {
        grid-template-columns: 1fr !important;
    }

    .ks-faq-layout {
        grid-template-columns: 1fr !important;
    }

    .ks-reels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ks-blogs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ks-reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .ks-news-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .ks-products-grid {
        grid-template-columns: 1fr !important;
    }

    .ks-reels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ks-blogs-grid {
        grid-template-columns: 1fr !important;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .ks-section-title {
        font-size: 1.6rem !important;
    }

    .ks-news-form {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        background: #FFFFFF !important;
        border-radius: 50px !important;
        padding: 4px 4px 4px 14px !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    }

    .ks-news-form input {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
        font-size: 0.85rem !important;
        padding: 8px 6px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
    }

    .ks-news-form button {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 0.78rem !important;
        border-radius: 50px !important;
        letter-spacing: 0.03em !important;
    }
}



/* ==========================================================================
   12. Product Page (template-product) Color & Contrast Corrections
   ========================================================================== */
body.index2-premium-page.template-product {
    color: #433D35 !important;
}
body.index2-premium-page.template-product h1,
body.index2-premium-page.template-product h2,
body.index2-premium-page.template-product h3,
body.index2-premium-page.template-product h4,
body.index2-premium-page.template-product h5,
body.index2-premium-page.template-product h6 {
    color: #1a3c2b !important;
}
body.index2-premium-page.template-product .section-desc,
body.index2-premium-page.template-product .prod-faq-header p,
body.index2-premium-page.template-product .product-info-desc {
    color: #554D43 !important;
}
body.index2-premium-page.template-product .pds-nav-link {
    color: #554D43 !important;
}
body.index2-premium-page.template-product .pds-nav-link.active {
    color: #1a3c2b !important;
}
body.index2-premium-page.template-product .product-sku {
    color: #554D43 !important;
}
body.index2-premium-page.template-product .product-info-price {
    color: #1a3c2b !important;
}
body.index2-premium-page.template-product .product-info-price .price-original {
    color: #888888 !important;
}
body.index2-premium-page.template-product .specs-table td:first-child,
body.index2-premium-page.template-product .specs-table td:first-child strong {
    color: #1a3c2b !important;
}
body.index2-premium-page.template-product .specs-table td {
    color: #554D43 !important;
}
body.index2-premium-page.template-product .trust-feature-card {
    background-color: #1a3c2b !important;
}
body.index2-premium-page.template-product .trust-feature-card h3 {
    color: #f7efdc !important;
}
body.index2-premium-page.template-product .trust-feature-card p {
    color: #bdc7bb !important;
}
body.index2-premium-page.template-product .heritage-story-card {
    background-color: #1a3c2b !important;
}
body.index2-premium-page.template-product .heritage-story-card h3 {
    color: #f7efdc !important;
}
body.index2-premium-page.template-product .heritage-story-card p {
    color: #bdc7bb !important;
}
body.index2-premium-page.template-product .prod-faq-item {
    background-color: #1a3c2b !important;
    border-radius: 20px !important;
    margin-bottom: 12px;
    border: 1px solid rgba(247, 239, 220, 0.15) !important;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
body.index2-premium-page.template-product .prod-faq-item.active {
    border-color: rgba(201, 154, 67, 0.45) !important;
    box-shadow: 0 6px 20px rgba(201, 154, 67, 0.08);
}
body.index2-premium-page.template-product .prod-faq-question {
    color: #f7efdc !important;
    padding: 18px 24px !important;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background-color 0.25s ease, padding-left 0.25s ease;
}
body.index2-premium-page.template-product .prod-faq-q-text {
    color: #f7efdc !important;
}
body.index2-premium-page.template-product .prod-faq-icon {
    color: #f7efdc !important;
    font-size: 1.1rem !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease !important;
}
body.index2-premium-page.template-product .prod-faq-item.active .prod-faq-icon {
    transform: rotate(180deg) !important;
    color: #c99a43 !important;
}
body.index2-premium-page.template-product .prod-faq-question:hover {
    background-color: #224d38 !important;
    padding-left: 28px !important;
}
body.index2-premium-page.template-product .prod-faq-answer {
    color: #bdc7bb !important;
    padding: 0 24px 0 68px !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease !important;
}
body.index2-premium-page.template-product .prod-faq-item.active .prod-faq-answer {
    opacity: 1 !important;
    max-height: 1000px !important;
    padding-top: 12px !important;
    padding-bottom: 20px !important;
    border-top: 1px solid rgba(247, 239, 220, 0.12) !important;
}
body.index2-premium-page.template-product .prod-faq-answer p {
    color: #d8e2d5 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}
body.index2-premium-page.template-product .testimonial-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(201, 154, 67, 0.3) !important;
}
body.index2-premium-page.template-product .testimonial-text {
    color: #17340a !important;
}
body.index2-premium-page.template-product .testimonial-author {
    color: #4a6140 !important;
}
body.index2-premium-page.template-product .customer-video-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(201, 154, 67, 0.3) !important;
}
body.index2-premium-page.template-product .customer-video-info h4,
body.index2-premium-page.template-product .cv-card-title {
    color: #17340a !important;
    font-weight: 800 !important;
}
body.index2-premium-page.template-product .customer-video-author {
    color: #3b5032 !important;
    font-weight: 700 !important;
}
body.index2-premium-page.template-product .cv-duration {
    background-color: rgba(0, 0, 0, 0.75) !important;
    color: #ffffff !important;
}
body.index2-premium-page.template-product .product-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(27, 59, 34, 0.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
}
body.index2-premium-page.template-product .product-card .product-card-content {
    background-color: #ffffff !important;
}
body.index2-premium-page.template-product .product-card .product-title,
body.index2-premium-page.template-product .product-card .product-title a {
    color: #17340a !important;
}
body.index2-premium-page.template-product .product-card .product-title a:hover {
    color: #c99a43 !important;
}
body.index2-premium-page.template-product .product-card .price-current {
    color: #17340a !important;
}
body.index2-premium-page.template-product .product-card .price-original {
    color: #94a3b8 !important;
}
body.index2-premium-page.template-product .product-card .product-category {
    color: #c99a43 !important;
}
body.index2-premium-page.template-product .review-item {
    background-color: #1a3c2b !important;
}
body.index2-premium-page.template-product .reviewer-name {
    color: #f7efdc !important;
}
body.index2-premium-page.template-product .review-item {
    background-color: #ffffff !important;
    border: 1px solid rgba(201, 154, 67, 0.3) !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03) !important;
}
body.index2-premium-page.template-product .reviewer-name {
    color: #17340a !important;
    font-weight: 800 !important;
}
body.index2-premium-page.template-product .review-date {
    color: #5c6f52 !important;
    font-weight: 600 !important;
}
body.index2-premium-page.template-product .review-comment {
    color: #223d1d !important;
    font-weight: 500 !important;
}
body.index2-premium-page.template-product .reviews-summary-widget {
    background-color: #ffffff !important;
    border: 1px solid rgba(201, 154, 67, 0.3) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04) !important;
}
body.index2-premium-page.template-product .rsw-big-num {
    color: #17340a !important;
    font-weight: 900 !important;
}
body.index2-premium-page.template-product .rsw-count-text {
    color: #5c6f52 !important;
    font-weight: 600 !important;
}
body.index2-premium-page.template-product .rsw-star-label {
    color: #17340a !important;
    font-weight: 800 !important;
}
body.index2-premium-page.template-product .rsw-percent-label {
    color: #3b5032 !important;
    font-weight: 700 !important;
}
body.index2-premium-page.template-product .review-helpful-btn {
    background-color: #faf9f5 !important;
    border-color: rgba(201, 154, 67, 0.35) !important;
    color: #17340a !important;
    font-weight: 700 !important;
}
body.index2-premium-page.template-product .review-helpful-btn:hover {
    background-color: #17340a !important;
    color: #f7efdc !important;
    border-color: #c99a43 !important;
}
body.index2-premium-page.template-product .review-helpful-btn.helpful-voted {
    background-color: #c99a43 !important;
    color: #17340a !important;
}

/* Paginations outside cards (on light background) */
body.index2-premium-page.template-product .review-pag-btn {
    border-color: rgba(26, 60, 43, 0.2) !important;
    color: #1a3c2b !important;
}
body.index2-premium-page.template-product .review-pag-btn:disabled {
    color: #888888 !important;
    border-color: rgba(26, 60, 43, 0.1) !important;
    opacity: 0.5 !important;
}
body.index2-premium-page.template-product .review-pag-page-num {
    border-color: rgba(26, 60, 43, 0.2) !important;
    color: #554D43 !important;
}
body.index2-premium-page.template-product .review-pag-page-num:hover {
    border-color: #c99a43 !important;
    color: #1a3c2b !important;
}
body.index2-premium-page.template-product .review-pag-page-num.active {
    background-color: #c99a43 !important;
    border-color: #c99a43 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   PERFECT RESPONSIVE VEDIC CRAFTSMANSHIP JOURNEY SECTION (ALL SCREEN SIZES)
   ========================================================================== */
.index2-premium-page .ks-journey-section,
.ks-journey-section {
  position: relative !important;
  padding: clamp(48px, 6vw, 90px) 0 !important;
  background: linear-gradient(180deg, #FDFBF7 0%, #F6EBCE 50%, #FDFBF7 100%) !important;
  border-top: 1px solid rgba(217, 148, 38, 0.25) !important;
  border-bottom: 1px solid rgba(217, 148, 38, 0.25) !important;
  overflow: hidden !important;
}

.index2-premium-page .ks-journey-header,
.ks-journey-header {
  margin-bottom: clamp(28px, 4vw, 54px) !important;
  text-align: center !important;
}

.index2-premium-page .ks-eyebrow-tag,
.ks-eyebrow-tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 6px 18px !important;
  background: rgba(217, 148, 38, 0.12) !important;
  border: 1px solid rgba(217, 148, 38, 0.3) !important;
  border-radius: 30px !important;
  margin-bottom: 16px !important;
}

.index2-premium-page .ks-eyebrow-icon,
.ks-eyebrow-icon {
  color: #D99426 !important;
  font-size: 0.75rem !important;
}

.index2-premium-page .ks-eyebrow-text,
.ks-eyebrow-text {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem) !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  color: #5C3A21 !important;
  text-transform: uppercase !important;
}

.index2-premium-page .ks-journey-main-title,
.ks-journey-main-title {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: #1B2D15 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 10px !important;
  line-height: 1.25 !important;
}

.index2-premium-page .ks-journey-main-subtitle,
.ks-journey-main-subtitle {
  font-size: clamp(0.88rem, 1.2vw, 1.05rem) !important;
  color: #554D43 !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/* Layout Grid */
.index2-premium-page .ks-journey-layout,
.ks-journey-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
  gap: clamp(24px, 3.5vw, 50px) !important;
  align-items: start !important;
  width: 100% !important;
}

/* Left Column Art Card */
.index2-premium-page .ks-journey-left-art,
.ks-journey-left-art {
  position: sticky !important;
  top: 100px !important;
  height: auto !important;
  max-height: calc(100vh - 130px) !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.index2-premium-page .ks-desktop-left-img-wrap,
.ks-desktop-left-img-wrap {
  width: 100% !important;
  height: 100% !important;
  min-height: 380px !important;
  max-height: 640px !important;
  border-radius: clamp(16px, 2vw, 24px) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid rgba(196, 137, 55, 0.28) !important;
  box-shadow: 0 16px 40px rgba(45, 62, 36, 0.08) !important;
  background: #FAF5EA !important;
  padding: 8px !important;
}

.index2-premium-page .ks-desktop-left-img,
.ks-desktop-left-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: clamp(12px, 1.5vw, 18px) !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Right Timeline Column */
.index2-premium-page .ks-journey-timeline,
.ks-journey-timeline {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(14px, 1.8vw, 24px) !important;
  width: 100% !important;
}

/* Timeline vertical dotted line connector - Perfectly Centered behind badges */
.index2-premium-page .ks-journey-timeline::before,
.ks-journey-timeline::before,
.index2-premium-page .ks-timeline-track,
.ks-timeline-track {
  content: '' !important;
  position: absolute !important;
  left: 23px !important;
  top: 23px !important;
  bottom: 23px !important;
  width: 2px !important;
  border-left: 2.5px dotted #c48937 !important;
  z-index: 1 !important;
  transform: translateX(-50%) !important;
  background: transparent !important;
}

/* Step Items */
.index2-premium-page .ks-timeline-step,
.ks-timeline-step {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(12px, 1.6vw, 20px) !important;
  z-index: 2 !important;
  width: 100% !important;
}

/* Step Number Badge */
.index2-premium-page .ks-step-num-badge,
.ks-step-num-badge,
.ks-step-num {
  position: relative !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #3A2612 0%, #1B2D15 100%) !important;
  border: 2.5px solid #D99426 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(45, 62, 36, 0.25) !important;
  margin-top: 0 !important;
  z-index: 3 !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease, background 0.3s ease !important;
}

.index2-premium-page .ks-num,
.ks-num {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #F7D070 !important;
  line-height: 1 !important;
}

/* Step Card Styling */
.index2-premium-page .ks-step-card,
.ks-step-card {
  flex: 1 !important;
  min-width: 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1.5px solid rgba(217, 148, 38, 0.22) !important;
  border-radius: clamp(14px, 1.8vw, 22px) !important;
  padding: clamp(12px, 1.6vw, 20px) clamp(14px, 2vw, 24px) !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(12px, 1.6vw, 20px) !important;
  box-shadow: 0 6px 20px rgba(45, 62, 36, 0.04) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.index2-premium-page .ks-step-card:hover,
.ks-step-card:hover {
  transform: translateY(-3px) translateX(4px) !important;
  box-shadow: 0 14px 32px rgba(45, 62, 36, 0.1), 0 4px 12px rgba(217, 148, 38, 0.12) !important;
  border-color: rgba(217, 148, 38, 0.55) !important;
  background: #FFFFFF !important;
}

/* Step Thumb Wrap */
.index2-premium-page .ks-step-thumb-wrap,
.ks-step-thumb-wrap {
  width: clamp(56px, 5.5vw, 76px) !important;
  height: clamp(56px, 5.5vw, 76px) !important;
  min-width: clamp(56px, 5.5vw, 76px) !important;
  min-height: clamp(56px, 5.5vw, 76px) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
}

.index2-premium-page .ks-scallop-badge-container,
.ks-scallop-badge-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  filter: drop-shadow(0 3px 6px rgba(139, 90, 36, 0.25)) !important;
}

.index2-premium-page .ks-step-thumb-img,
.ks-step-thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  clip-path: url(#ks-scallop-clip) !important;
  -webkit-clip-path: url(#ks-scallop-clip) !important;
  display: block !important;
}

.index2-premium-page .ks-scallop-border-overlay,
.ks-scallop-border-overlay {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

.index2-premium-page .ks-step-content,
.ks-step-content {
  flex: 1 !important;
  min-width: 0 !important;
}

.index2-premium-page .ks-step-title,
.ks-step-title,
.ks-step-content h3 {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(0.95rem, 1.25vw, 1.18rem) !important;
  font-weight: 700 !important;
  color: #1B2D15 !important;
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
}

.index2-premium-page .ks-step-desc,
.ks-step-desc,
.ks-step-content p {
  font-size: clamp(0.8rem, 0.95vw, 0.88rem) !important;
  color: #554D43 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS FOR VEDIC CRAFTSMANSHIP JOURNEY SECTION
   -------------------------------------------------------------------------- */

/* Medium Laptop & Small Desktop (993px to 1199px) */
@media screen and (max-width: 1199px) and (min-width: 993px) {
  .index2-premium-page .ks-journey-layout,
  .ks-journey-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 28px !important;
  }

  .index2-premium-page .ks-desktop-left-img-wrap,
  .ks-desktop-left-img-wrap {
    min-height: 440px !important;
    max-height: 540px !important;
  }
}

/* Tablet Layout (641px to 992px) */
@media screen and (max-width: 992px) {
  .index2-premium-page .ks-journey-layout,
  .ks-journey-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .index2-premium-page .ks-journey-left-art,
  .ks-journey-left-art {
    position: relative !important;
    top: 0 !important;
    max-width: 580px !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-height: none !important;
  }

  .index2-premium-page .ks-desktop-left-img-wrap,
  .ks-desktop-left-img-wrap {
    min-height: 320px !important;
    max-height: 420px !important;
    width: 100% !important;
  }

  .index2-premium-page .ks-journey-timeline,
  .ks-journey-timeline {
    max-width: 650px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .index2-premium-page .ks-step-num-badge,
  .ks-step-num-badge,
  .ks-step-num {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .index2-premium-page .ks-journey-timeline::before,
  .ks-journey-timeline::before,
  .index2-premium-page .ks-timeline-track,
  .ks-timeline-track {
    left: 21px !important;
    top: 21px !important;
    bottom: 21px !important;
  }
}

/* Mobile Screens (<= 640px) */
@media screen and (max-width: 640px) {
  .index2-premium-page .ks-journey-section,
  .ks-journey-section {
    padding: 40px 0 !important;
  }

  .index2-premium-page .ks-journey-layout,
  .ks-journey-layout {
    gap: 24px !important;
  }

  .index2-premium-page .ks-journey-left-art,
  .ks-journey-left-art {
    max-width: 100% !important;
  }

  .index2-premium-page .ks-desktop-left-img-wrap,
  .ks-desktop-left-img-wrap {
    min-height: 220px !important;
    max-height: 320px !important;
    border-radius: 16px !important;
  }

  .index2-premium-page .ks-step-num-badge,
  .ks-step-num-badge,
  .ks-step-num {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-width: 2px !important;
  }

  .index2-premium-page .ks-num,
  .ks-num {
    font-size: 0.9rem !important;
  }

  .index2-premium-page .ks-journey-timeline::before,
  .ks-journey-timeline::before,
  .index2-premium-page .ks-timeline-track,
  .ks-timeline-track {
    left: 18px !important;
    top: 18px !important;
    bottom: 18px !important;
  }

  .index2-premium-page .ks-timeline-step,
  .ks-timeline-step {
    gap: 12px !important;
  }

  .index2-premium-page .ks-step-card,
  .ks-step-card {
    padding: 12px 14px !important;
    gap: 12px !important;
    border-radius: 16px !important;
  }

  .index2-premium-page .ks-step-thumb-wrap,
  .ks-step-thumb-wrap {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .index2-premium-page .ks-step-title,
  .ks-step-title,
  .ks-step-content h3 {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
  }

  .index2-premium-page .ks-step-desc,
  .ks-step-desc,
  .ks-step-content p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
}

/* Extra Small Screens / Compact Phones (<= 380px) */
@media screen and (max-width: 380px) {
  .index2-premium-page .ks-step-num-badge,
  .ks-step-num-badge,
  .ks-step-num {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }

  .index2-premium-page .ks-num,
  .ks-num {
    font-size: 0.82rem !important;
  }

  .index2-premium-page .ks-journey-timeline::before,
  .ks-journey-timeline::before,
  .index2-premium-page .ks-timeline-track,
  .ks-timeline-track {
    left: 16px !important;
    top: 16px !important;
    bottom: 16px !important;
  }

  .index2-premium-page .ks-timeline-step,
  .ks-timeline-step {
    gap: 8px !important;
  }

  .index2-premium-page .ks-step-card,
  .ks-step-card {
    padding: 10px 12px !important;
    gap: 10px !important;
    border-radius: 14px !important;
  }

  .index2-premium-page .ks-step-thumb-wrap,
  .ks-step-thumb-wrap {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .index2-premium-page .ks-step-title,
  .ks-step-title,
  .ks-step-content h3 {
    font-size: 0.9rem !important;
  }

  .index2-premium-page .ks-step-desc,
  .ks-step-desc,
  .ks-step-content p {
    font-size: 0.76rem !important;
  }
}

/* Edge-to-Edge Touch Screen (0px Left/Right Gap) for ks-journey-picture on Tablet & Mobile Views (<= 992px) */
@media screen and (max-width: 992px) {
  .index2-premium-page .ks-journey-left-art,
  .ks-journey-left-art {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: 0 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    box-sizing: border-box !important;
  }

  .index2-premium-page .ks-desktop-left-img-wrap,
  .ks-desktop-left-img-wrap {
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .index2-premium-page .ks-journey-picture,
  .ks-journey-picture {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  .index2-premium-page .ks-desktop-left-img,
  .ks-desktop-left-img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    display: block !important;
  }
}

/* Featured Products Mobile Overflow Fix & Perfect 2-Column Grid (<= 768px) */
@media screen and (max-width: 768px) {
  .ks-featured-products-section,
  .ks-featured-products {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding-top: 14px !important;
    padding-bottom: 24px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .ks-featured-products-section .ks-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .ks-featured-swiper-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .ks-featured-products-swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 4px 0 10px 0 !important;
    box-sizing: border-box !important;
  }

  .ks-featured-products-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .ks-featured-products-swiper .swiper-slide {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .ks-product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .ks-card-body {
    padding: 10px 6px !important;
    box-sizing: border-box !important;
  }

  .ks-product-title {
    font-size: 0.74rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .ks-price-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ks-mrp {
    font-size: 0.7rem !important;
  }

  .ks-price {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
  }

  .ks-off-badge {
    font-size: 0.6rem !important;
    padding: 1px 4px !important;
    border-radius: 4px !important;
  }

  .ks-add-cart-btn {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 4px !important;
    font-size: 0.7rem !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ks-featured-products-swiper .swiper-slide-duplicate,
  .ks-featured-pagination,
  .ks-swiper-nav-btn {
    display: none !important;
  }
}

/* Responsive White-Goldish Card Border & Minimum Spacing for Kasutam Cards */
.ks-product-card {
  border: 1.5px solid #c99a43 !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
  box-shadow: 0 4px 14px rgba(201, 154, 67, 0.12) !important;
}

.ks-card-image-wrap {
  border-bottom: 1.5px solid #c99a43 !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.ks-card-body {
  padding: 8px 8px 10px 8px !important;
  gap: 2px !important;
}

.ks-rating-row {
  margin-top: 0 !important;
  margin-bottom: 2px !important;
  min-height: auto !important;
}

.ks-product-title {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
  min-height: 0 !important;
  height: auto !important;
  line-height: 1.25 !important;
}

.ks-price-row {
  margin-top: 2px !important;
  margin-bottom: 3px !important;
  min-height: auto !important;
}

.ks-add-cart-btn {
  margin-top: 3px !important;
  padding: 7px 0 !important;
}

@media screen and (max-width: 768px) {
  /* Slow down Promo announcement bar marquee scroll ticker */
  body.index2-premium-page .announce-marquee-track,
  body.index2-premium-page .announce-marquee,
  .promo-bar .announce-marquee-track,
  .announce-bar .announce-marquee-track,
  .announce-marquee {
    -webkit-animation-duration: 45s !important;
    animation-duration: 45s !important;
  }

  /* Slow down Customer reviews marquee animation */
  #reviews-section .jdgm-videos-container {
    -webkit-animation-duration: 65s !important;
    animation-duration: 65s !important;
  }
}





