:root {
            --brand-blue: #002060;
            --brand-blue-hover: #0b2f75;
            --brand-orange: #DD6B20;
            --brand-orange-hover: #C05621;
            --bg-light: #F7FAFC;
            --text-dark: #1A202C;
            --text-muted: #718096;
            --border-color: #E2E8F0;
            --primary-red: var(--brand-orange);
            --hover-red: var(--brand-orange-hover);
            --dark-red: var(--brand-blue);
            --light-red: var(--bg-light);
            --accent-red: var(--brand-orange);
        }

        .quote-units-column {
            width: 130px;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background-color: #ffffff;
            color: var(--text-dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .site-main {
            flex: 1 0 auto;
        }

        a,
        button,
        .btn {
            transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
        }

        button.is-loading,
        .btn.is-loading {
            pointer-events: none;
            opacity: 0.78;
            position: relative;
        }

        button.is-loading::after,
        .btn.is-loading::after {
            content: "";
            width: 1rem;
            height: 1rem;
            margin-left: 0.55rem;
            border: 2px solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            display: inline-block;
            vertical-align: -0.15em;
            animation: ui-spin 0.7s linear infinite;
        }

        @keyframes ui-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .ui-reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .ui-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Top Announcement Bar */
        .announcement-bar {
            background-color: var(--brand-blue);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 8px 0;
        }
        .announcement-bar a {
            color: #ffffff;
            text-decoration: underline;
        }

        /* Top Mini Links */
        .top-mini-links {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.2s ease;
        }
        .top-mini-links:hover {
            color: var(--brand-blue);
        }
        
        /* Navbar Main */
        .navbar-custom {
            background-color: #ffffff !important;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
        }
        .navbar-custom .navbar-brand {
            min-width: 150px;
        }
        .navbar-custom .nav-link {
            color: var(--text-dark) !important;
            font-weight: 700;
            font-size: 1rem;
            padding: 0.6rem 1rem;
            transition: color 0.2s ease;
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link:focus,
        .navbar-custom .nav-link.active {
            color: var(--brand-orange) !important;
        }
        .navbar-custom .nav-link i {
            color: var(--brand-blue);
            font-size: 1.25rem;
            line-height: 1;
        }
        .navbar-custom .nav-link:hover i,
        .navbar-custom .nav-link:focus i {
            color: var(--brand-orange);
        }
        .navbar-custom .navbar-toggler {
            border-color: var(--border-color);
        }
        .navbar-custom .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.12);
        }

        /* Search input */
        .search-container {
            position: relative;
            max-width: 500px;
            width: 100%;
        }
        .search-input {
            border-radius: 30px;
            padding-left: 20px;
            padding-right: 45px;
            border: 1px solid var(--border-color);
            height: 40px;
            font-size: 0.9rem;
            background-color: var(--bg-light);
            transition: all 0.3s ease;
        }
        .search-input:focus {
            background-color: #ffffff;
            border-color: var(--brand-blue);
            box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1);
        }
        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--brand-blue);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* Utility Icons */
        .utility-icon-btn {
            color: var(--brand-blue);
            font-size: 1.3rem;
            margin-left: 20px;
            position: relative;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .utility-icon-btn:hover {
            color: var(--brand-blue-hover);
        }
        .utility-icon-btn .badge-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--brand-blue);
            color: #ffffff;
            font-size: 0.65rem;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Sub-Navbar for categories */
        .sub-navbar {
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-color);
            border-top: 1px solid var(--border-color);
            padding: 8px 0;
        }
        .sub-nav-link {
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: color 0.2s ease;
            padding: 6px 16px;
            display: inline-block;
        }
        .sub-nav-link:hover {
            color: var(--brand-blue);
        }
        .sub-nav-link.offers {
            background-color: var(--brand-blue);
            color: #ffffff !important;
            border-radius: 20px;
            padding: 6px 20px;
        }
        .sub-nav-link.offers:hover {
            background-color: var(--brand-blue-hover);
        }
        
        /* Buttons */
        .btn-primary-custom {
            background-color: var(--brand-orange) !important;
            border: none;
            color: white !important;
            font-weight: 600;
            border-radius: 6px;
            padding: 12px 28px;
            box-shadow: 0 10px 24px rgba(221, 107, 32, 0.22);
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--brand-orange-hover) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(221, 107, 32, 0.4);
        }
        
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 14px 34px rgba(68, 61, 51, 0.05);
            background-color: #ffffff;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 32, 96, 0.1);
            border-color: var(--brand-blue);
        }
        
        .product-image {
            height: 240px;
            -o-object-fit: contain;
               object-fit: contain;
            -o-object-position: center;
               object-position: center;
            width: 100%;
            padding: 18px;
            background: #ffffff;
        }
        
        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--brand-blue);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .category-card {
            transition: all 0.3s ease;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            background-color: #ffffff;
        }
        
        .category-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 32, 96, 0.05);
            border-color: var(--brand-blue);
        }
        
        .category-image {
            height: 150px;
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
        }

        .product-card-deco,
        .home-product-card,
        .cart-items-panel,
        .cart-summary-panel,
        .account-card,
        .account-panel,
        .checkout-card {
            box-shadow: 0 18px 42px rgba(68, 61, 51, 0.06);
        }

        .product-card-deco,
        .home-product-card,
        .cart-line-item {
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .product-card-deco:hover,
        .home-product-card:hover,
        .cart-line-item:hover {
            transform: translateY(-3px);
        }

        .form-control,
        .form-select {
            border-radius: 6px;
            min-height: 42px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--brand-orange);
            box-shadow: 0 0 0 4px rgba(221, 107, 32, 0.12);
        }

        .section-title {
            color: var(--primary-red);
        }

        .site-logo {
            height: 140px;
            width: auto;
            -o-object-fit: contain;
               object-fit: contain;
        }

        .footer-logo {
            height: 32px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .cart-item-placeholder {
            width: 80px;
            height: 80px;
        }

        .cart-quantity-control {
            width: 120px;
        }

        .cart-page-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            gap: 24px;
            align-items: start;
        }

        .cart-items-panel,
        .cart-summary-panel {
            border: 1px solid var(--border-color);
            background: #ffffff;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
        }

        .cart-items-panel {
            padding: 24px;
        }

        .cart-panel-header,
        .cart-summary-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }

        .cart-panel-kicker {
            display: block;
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 2px;
        }

        .cart-panel-header h2,
        .cart-summary-header h2 {
            color: var(--text-dark);
            font-size: 1.25rem;
            font-weight: 800;
            margin: 0;
        }

        .cart-summary-header span {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 600;
        }

        .cart-continue-link {
            color: var(--brand-blue);
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }

        .cart-continue-link:hover {
            color: var(--brand-orange);
        }

        .cart-items-list {
            display: grid;
            gap: 12px;
        }

        .cart-line-item {
            position: relative;
            display: grid;
            grid-template-columns: 96px minmax(0, 1fr) auto;
            gap: 18px;
            align-items: center;
            min-height: 126px;
            padding: 18px 68px 18px 18px;
            border: 1px solid var(--border-color);
            background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .cart-line-item:hover {
            border-color: rgba(221, 107, 32, 0.35);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
        }

        .cart-line-media {
            width: 96px;
            height: 96px;
            background: var(--bg-light);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-line-media img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
        }

        .cart-line-info h5 {
            color: var(--text-dark);
            font-size: 1.02rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 8px;
        }

        .cart-unit-price {
            color: var(--brand-orange);
            font-size: 1rem;
            font-weight: 800;
        }

        .cart-line-controls {
            display: grid;
            gap: 10px;
            justify-items: end;
        }

        .cart-quantity-stepper {
            display: inline-grid;
            grid-template-columns: 38px 48px 38px;
            height: 40px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            background: #ffffff;
        }

        .cart-quantity-stepper button,
        .cart-quantity-stepper input {
            border: 0;
            background: transparent;
            color: var(--text-dark);
            font-weight: 800;
            text-align: center;
        }

        .cart-quantity-stepper button {
            color: var(--brand-blue);
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .cart-quantity-stepper button:hover {
            background: var(--brand-orange);
            color: #ffffff;
        }

        .cart-quantity-stepper input {
            border-left: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
            -webkit-appearance: textfield;
               -moz-appearance: textfield;
                    appearance: textfield;
            min-width: 0;
        }

        .cart-quantity-stepper input::-webkit-outer-spin-button,
        .cart-quantity-stepper input::-webkit-inner-spin-button {
            -webkit-appearance: none;
                    appearance: none;
            margin: 0;
        }

        .cart-line-total {
            color: var(--text-dark);
            font-size: 1.05rem;
            white-space: nowrap;
        }

        .cart-remove-button {
            position: absolute;
            top: 50%;
            right: 18px;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border: 0;
            border-radius: 8px;
            background: #fff1f2;
            color: #dc2626;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .cart-remove-button:hover {
            background: #dc2626;
            color: #ffffff;
            transform: translateY(-50%) scale(1.04);
        }

        .cart-summary-panel {
            position: sticky;
            top: 110px;
            padding: 24px;
        }

        .cart-summary-lines {
            display: grid;
            gap: 12px;
            padding: 16px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .cart-summary-line,
        .cart-summary-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .cart-summary-line span {
            color: var(--text-muted);
            font-weight: 600;
        }

        .cart-summary-line strong {
            color: var(--text-dark);
            font-weight: 800;
        }

        .cart-summary-total {
            padding: 18px 0;
        }

        .cart-summary-total span {
            color: var(--text-dark);
            font-size: 1.05rem;
            font-weight: 800;
        }

        .cart-summary-total strong {
            color: var(--brand-orange);
            font-size: 1.45rem;
            font-weight: 900;
        }

        .cart-summary-main-action {
            min-height: 48px;
        }

        .cart-clear-button {
            width: 100%;
            margin-top: 10px;
            border: 0;
            background: transparent;
            color: var(--text-muted);
            font-weight: 700;
            padding: 10px;
        }

        .cart-clear-button:hover {
            color: #dc2626;
        }

        @media (max-width: 991.98px) {
            .cart-page-layout {
                grid-template-columns: 1fr;
            }

            .cart-summary-panel {
                position: static;
            }
        }

        @media (max-width: 575.98px) {
            .cart-items-panel,
            .cart-summary-panel {
                padding: 16px;
            }

            .cart-panel-header {
                align-items: flex-start;
                flex-direction: column;
            }

            .cart-line-item {
                grid-template-columns: 82px minmax(0, 1fr);
                padding: 16px 56px 16px 14px;
                align-items: start;
            }

            .cart-line-media {
                width: 82px;
                height: 82px;
            }

            .cart-line-controls {
                grid-column: 1 / -1;
                grid-template-columns: auto 1fr;
                align-items: center;
                justify-items: start;
            }

            .cart-line-total {
                justify-self: end;
            }
        }

        .account-shell {
            min-height: 62vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 56px 16px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .account-card {
            width: min(100%, 460px);
            padding: 32px;
            border: 1px solid var(--border-color);
            background: #ffffff;
            box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
        }

        .account-card-wide {
            width: min(100%, 760px);
        }

        .account-card-header {
            margin-bottom: 24px;
        }

        .account-card-header span,
        .account-dashboard-header span {
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .account-card-header h1,
        .account-dashboard-header h1 {
            color: var(--brand-orange);
            font-size: clamp(2rem, 4vw, 2.65rem);
            font-weight: 800;
            margin: 4px 0 0;
        }

        .account-inline-link,
        .account-card-footer a,
        .account-panel-title a {
            color: var(--brand-blue);
            font-weight: 800;
            text-decoration: none;
        }

        .account-inline-link:hover,
        .account-card-footer a:hover,
        .account-panel-title a:hover {
            color: var(--brand-orange);
        }

        .account-card-footer {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .account-dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
        }

        .account-dashboard-grid {
            display: grid;
            grid-template-columns: 360px minmax(0, 1fr);
            gap: 24px;
            align-items: start;
        }

        .account-panel {
            padding: 26px;
            border: 1px solid var(--border-color);
            background: #ffffff;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
        }

        .account-panel h2 {
            color: var(--text-dark);
            font-size: 1.25rem;
            font-weight: 800;
            margin: 0 0 18px;
        }

        .account-data-list {
            display: grid;
            gap: 14px;
        }

        .account-data-list div,
        .account-order-row {
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-color);
        }

        .account-data-list div:last-child,
        .account-order-row:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .account-data-list span,
        .account-order-row span {
            display: block;
            color: var(--text-muted);
            font-weight: 600;
        }

        .account-data-list strong,
        .account-order-row strong {
            color: var(--text-dark);
            font-weight: 800;
        }

        .account-panel-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
        }

        .account-orders-list {
            display: grid;
            gap: 14px;
        }

        .account-order-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto auto;
            gap: 18px;
            align-items: center;
        }

        .account-status {
            border-radius: 999px;
            padding: 6px 10px;
            background: #edf2f7;
            color: var(--text-dark);
            font-size: 0.82rem;
            font-weight: 800;
        }

        .account-status-completed {
            background: #dcfce7;
            color: #166534;
        }

        .account-status-cancelled {
            background: #fee2e2;
            color: #991b1b;
        }

        .account-status-processing {
            background: #dbeafe;
            color: #1e40af;
        }

        .account-status-pending {
            background: #ffedd5;
            color: #9a3412;
        }

        .account-empty-orders {
            padding: 32px;
            text-align: center;
            background: var(--bg-light);
        }

        .account-empty-orders i {
            color: var(--text-muted);
            font-size: 2.5rem;
            margin-bottom: 12px;
        }

        .account-empty-orders h3 {
            color: var(--text-dark);
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        @media (max-width: 991.98px) {
            .account-dashboard-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .account-card {
                padding: 24px;
            }

            .account-dashboard-header,
            .account-panel-title {
                align-items: flex-start;
                flex-direction: column;
            }

            .account-order-row {
                grid-template-columns: 1fr;
            }
        }
        
        /* Hero section updated to hold full width banner image */
        .hero-section {
            background-color: #f7fafc;
            padding: 0 !important;
            overflow: hidden;
            position: relative;
        }
        .hero-carousel-section {
            min-height: clamp(680px, 72vh, 820px);
            background-color: #f7fafc;
        }
        .hero-carousel-section .carousel,
        .hero-carousel-section .carousel-inner,
        .hero-carousel-section .carousel-item {
            min-height: clamp(680px, 72vh, 820px);
        }
        .hero-banner-image {
            display: block;
            width: 100%;
            height: clamp(680px, 72vh, 820px);
            -o-object-fit: cover;
               object-fit: cover;
            -o-object-position: center;
               object-position: center;
        }
        .hero-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(10, 16, 28, 0.62), rgba(10, 16, 28, 0.18), rgba(10, 16, 28, 0.38));
            pointer-events: none;
        }
        .hero-banner-caption {
            left: 12%;
            right: 12%;
            bottom: 50%;
            transform: translateY(50%);
            text-align: left;
            color: #ffffff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
        }
        .hero-banner-caption-left {
            text-align: left;
        }
        .hero-banner-caption-center {
            text-align: center;
        }
        .hero-banner-caption-center p {
            margin-left: auto;
            margin-right: auto;
        }
        .hero-banner-caption-right {
            text-align: right;
        }
        .hero-banner-caption-right p {
            margin-left: auto;
        }
        .hero-banner-caption h1 {
            color: #ffffff;
        }
        .hero-banner-caption p {
            max-width: 620px;
            font-weight: 500;
        }
        .hero-carousel-section .carousel-indicators [data-bs-target] {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }
        @media (max-width: 768px) {
            .hero-carousel-section,
            .hero-carousel-section .carousel,
            .hero-carousel-section .carousel-inner,
            .hero-carousel-section .carousel-item {
                min-height: 300px;
            }
            .hero-banner-image {
                height: 300px;
                -o-object-fit: cover;
                   object-fit: cover;
            }
            .hero-banner-caption {
                left: 10%;
                right: 10%;
                text-align: center;
            }
            .hero-banner-caption h1 {
                font-size: 2rem;
            }
        }
        
        .footer {
            background-color: #0f172a !important;
            color: #94a3b8;
            padding: 60px 0 30px;
            border-top: 4px solid var(--brand-blue);
            flex-shrink: 0;
        }
        .footer h5 {
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .sidebar {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
        }
        
        .sidebar-link {
            color: var(--text-dark);
            text-decoration: none;
            padding: 10px;
            display: block;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .sidebar-link:hover, .sidebar-link.active {
            background: var(--brand-orange);
            color: #ffffff;
        }
        
        .price {
            color: var(--primary-red);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .compare-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
        }
        
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--header-cart-badge-bg, var(--brand-orange));
            color: var(--header-cart-badge-text, #ffffff);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        /* Cream deco storefront */
        body {
            background: #f8f3eb;
        }

        .site-main {
            background: #f8f3eb;
        }

        .deco-top-promo {
            background: var(--header-promo-bg, #3b3832);
            color: var(--header-promo-text, #ffffff);
            text-align: center;
            font-size: 0.9rem;
            font-weight: 700;
            padding: 9px 16px;
        }

        .site-header-managed {
            position: relative;
            z-index: 30;
            transition: box-shadow 0.25s ease;
        }

        .site-header-managed.is-scrolled .navbar-custom {
            box-shadow: 0 14px 36px rgba(68, 61, 51, 0.08);
        }

        .deco-top-promo a {
            color: var(--header-promo-text, #ffffff);
            margin-left: 4px;
            text-decoration: underline;
        }

        .deco-utility-bar {
            background: var(--header-utility-bg, #5b554b);
            color: var(--header-utility-text, #ffffff);
            padding: 16px 0;
        }

        .deco-utility-inner {
            display: grid;
            grid-template-columns: minmax(220px, 420px) 1fr auto;
            gap: 24px;
            align-items: center;
        }

        .deco-search {
            position: relative;
        }

        .deco-search i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--header-search-text, rgba(255, 255, 255, 0.82));
        }

        .deco-search input {
            width: 100%;
            height: 42px;
            border: 0;
            border-radius: 999px;
            background: var(--header-search-bg, rgba(255, 255, 255, 0.16));
            color: var(--header-search-text, #ffffff);
            padding: 0 18px 0 44px;
            outline: none;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        .deco-search input:focus {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
        }

        .deco-search input::-moz-placeholder {
            color: var(--header-search-text, rgba(255, 255, 255, 0.9));
            opacity: 0.9;
        }

        .deco-search input::placeholder {
            color: var(--header-search-text, rgba(255, 255, 255, 0.9));
            opacity: 0.9;
        }

        .deco-shipping-message {
            text-align: center;
            font-weight: 600;
        }

        .deco-utility-icons {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .deco-utility-icons a {
            color: var(--header-icon-color, #ffffff);
            font-size: 1.3rem;
            text-decoration: none;
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .deco-utility-icons a:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .navbar-custom {
            background: var(--header-nav-bg, #fffdf8) !important;
            padding: 20px 0;
            box-shadow: none;
            transition: box-shadow 0.25s ease, background-color 0.25s ease;
        }

        .navbar-custom .container {
            align-items: center;
        }

        .navbar-custom .navbar-brand {
            margin-right: clamp(32px, 8vw, 120px);
        }

        .site-logo {
            height: var(--header-logo-height, 86px);
        }

        .navbar-custom .nav-link {
            color: var(--header-nav-link, #3d3a35) !important;
            font-weight: 700;
            font-size: 0.98rem;
            border-radius: 999px;
        }

        .navbar-custom .nav-link.active,
        .navbar-custom .nav-link:hover {
            color: var(--header-nav-active, #9b4a27) !important;
            background: rgba(155, 74, 39, 0.08);
        }

        .navbar-custom .nav-link i {
            color: var(--header-nav-link, #3d3a35);
        }

        .navbar-custom .nav-link.active i,
        .navbar-custom .nav-link:hover i {
            color: var(--header-nav-active, #9b4a27);
        }

        .hero-carousel-section {
            background: #f1e8da;
            min-height: clamp(440px, 56vw, 640px);
        }

        .hero-carousel-section .carousel,
        .hero-carousel-section .carousel-inner,
        .hero-carousel-section .carousel-item {
            min-height: clamp(440px, 56vw, 640px);
        }

        .hero-banner-image {
            height: clamp(440px, 56vw, 640px);
            filter: saturate(0.92) contrast(0.98);
        }

        .hero-banner-overlay {
            background: linear-gradient(90deg, rgba(43, 35, 27, 0.46), rgba(43, 35, 27, 0.05), rgba(43, 35, 27, 0.26));
        }

        .hero-banner-caption h1 {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(2.8rem, 7vw, 6.8rem);
            font-weight: 400 !important;
        }

        .hero-banner-caption p {
            font-size: clamp(1.1rem, 2.1vw, 1.8rem);
        }

        .home-benefits-strip {
            overflow: hidden;
            background: #fffdf8;
            border-top: 1px solid #eee3d4;
            border-bottom: 1px solid #eee3d4;
        }

        .home-benefits-track {
            display: flex;
            width: -moz-max-content;
            width: max-content;
            gap: 42px;
            padding: 13px 0;
            animation: homeBenefitsScroll 34s linear infinite;
        }

        .home-benefit-item {
            color: #6f675d;
            font-size: 0.93rem;
            white-space: nowrap;
        }

        .home-benefit-item i {
            color: #504a42;
            margin-right: 8px;
        }

        @keyframes homeBenefitsScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .home-product-section,
        .home-feature-categories,
        .home-category-mosaic,
        .home-values-strip {
            margin-top: 64px;
            margin-bottom: 64px;
        }

        .home-section-heading {
            display: flex;
            justify-content: center;
            align-items: end;
            gap: 24px;
            margin-bottom: 28px;
            text-align: center;
            position: relative;
        }

        .home-section-heading > a {
            position: absolute;
            right: 0;
            bottom: 4px;
            color: #5b554b;
            font-weight: 700;
            text-decoration: underline;
        }

        .home-section-heading span {
            display: block;
            color: #9b8c79;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .home-section-heading h2 {
            color: #3d3a35;
            font-size: clamp(1.8rem, 3vw, 2.35rem);
            font-weight: 700;
            margin: 2px 0 0;
        }

        .home-product-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 26px;
        }

        .home-product-card {
            background: transparent;
            border-radius: 6px;
        }

        .home-product-media {
            position: relative;
            aspect-ratio: 1 / 1;
            background: #ffffff;
            overflow: hidden;
            border-radius: 6px;
        }

        .home-product-media img,
        .home-product-placeholder {
            width: 100%;
            height: 100%;
        }

        .home-product-media img {
            -o-object-fit: contain;
               object-fit: contain;
            -o-object-position: center;
               object-position: center;
            padding: 14px;
            transition: transform 0.35s ease;
        }

        .home-product-card:hover .home-product-media img {
            transform: scale(1.02);
        }

        .home-product-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #83786a;
            font-size: 2rem;
        }

        .home-discount-badge {
            position: absolute;
            top: 0;
            left: 0;
            background: #351111;
            color: #ffffff;
            font-size: 1.45rem;
            font-weight: 900;
            line-height: 1;
            padding: 8px 10px;
        }

        .home-offer-badge {
            position: absolute;
            right: 8px;
            bottom: 8px;
            background: #5c5548;
            color: #ffffff;
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            padding: 7px 12px;
            text-transform: uppercase;
        }

        .home-product-body {
            padding-top: 14px;
        }

        .home-product-body h3 {
            color: #5a554e;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.45;
            min-height: 46px;
            margin: 0 0 8px;
        }

        .home-product-price {
            display: flex;
            gap: 8px;
            align-items: baseline;
            margin-bottom: 12px;
        }

        .home-product-price strong {
            color: #4d453d;
            font-size: 1.02rem;
            font-weight: 900;
        }

        .home-product-price span {
            color: #9b9288;
            font-weight: 700;
            text-decoration: line-through;
        }

        .home-product-body button {
            width: 100%;
            border: 0;
            background: #9b6b43;
            color: #ffffff;
            font-weight: 800;
            padding: 10px 12px;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .home-product-body button:hover {
            background: #6f4b31;
            transform: translateY(-1px);
        }

        .home-feature-category-grid,
        .home-category-grid {
            display: grid;
            gap: 18px;
        }

        .home-feature-category-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .home-category-grid {
            grid-template-columns: repeat(var(--category-columns, 2), minmax(0, 1fr));
            max-width: min(100%, calc((var(--category-columns, 2) * 280px) + ((var(--category-columns, 2) - 1) * 18px)));
            margin: 0 auto;
        }

        .home-feature-category,
        .home-category-tile {
            position: relative;
            display: block;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #d9cdbb;
            color: #ffffff;
            text-decoration: none;
        }

        .home-feature-category img,
        .home-category-tile img,
        .home-feature-category-fallback,
        .home-category-tile-fallback {
            width: 100%;
            height: 100%;
        }

        .home-feature-category img,
        .home-category-tile img {
            -o-object-fit: cover;
               object-fit: cover;
            filter: brightness(0.72) saturate(0.85);
            transition: transform 0.35s ease, filter 0.35s ease;
        }

        .home-feature-category:hover img,
        .home-category-tile:hover img {
            transform: scale(1.05);
            filter: brightness(0.62) saturate(0.95);
        }

        .home-feature-category span,
        .home-category-tile span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-size: 1rem;
            font-weight: 900;
            letter-spacing: 0.03em;
            text-align: center;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
        }

        .home-feature-category span::after,
        .home-category-tile span::after {
            content: '';
            display: block;
            width: 64px;
            height: 2px;
            background: #ffffff;
            margin: 8px auto 0;
        }

        .home-feature-category-fallback,
        .home-category-tile-fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 3rem;
        }

        .home-editorial-banner {
            display: grid;
            grid-template-columns: minmax(280px, 30vw) 1fr;
            min-height: 360px;
            margin: 72px 0;
            background: #d8d0c3;
            overflow: hidden;
        }

        .home-editorial-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(32px, 5vw, 70px);
            color: #5f574e;
            background: #e6e0d5;
            text-transform: uppercase;
        }

        .home-editorial-copy span {
            font-size: clamp(2rem, 4vw, 3.2rem);
            letter-spacing: 0.08em;
        }

        .home-editorial-copy strong {
            font-size: clamp(4rem, 9vw, 7.6rem);
            line-height: 0.95;
            font-weight: 700;
        }

        .home-editorial-copy p {
            font-size: clamp(1.1rem, 2vw, 1.8rem);
            font-weight: 800;
            margin: 18px 0 0;
        }

        .home-editorial-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 360px;
            background:
                linear-gradient(90deg, rgba(216, 208, 195, 0.2), rgba(82, 68, 53, 0.28)),
                radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.42), transparent 32%),
                linear-gradient(135deg, #c2ad91, #ece1cf 46%, #9a8063);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .home-editorial-visual.has-image {
            background-size: cover;
        }

        .home-editorial-visual span {
            max-width: 520px;
            color: #ffffff;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(2.2rem, 5vw, 4.6rem);
            line-height: 1;
            text-align: center;
            text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
        }

        .home-editorial-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: -moz-fit-content;
            width: fit-content;
            margin-top: 26px;
            padding: 12px 22px;
            background: #6d5d4d;
            color: #fffdf8;
            font-weight: 800;
            text-decoration: none;
            text-transform: uppercase;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .home-editorial-link:hover {
            background: #4f4439;
            color: #fffdf8;
            transform: translateY(-1px);
        }

        .home-values-strip {
            display: flex;
            justify-content: center;
            gap: clamp(24px, 6vw, 76px);
            padding: 24px 0 44px;
            color: #3d3a35;
        }

        .home-values-strip div {
            display: grid;
            justify-items: center;
            gap: 8px;
            text-align: center;
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .home-values-strip i {
            width: 62px;
            height: 62px;
            border: 2px solid #3d3a35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.55rem;
        }

        .footer {
            background: #fffdf8 !important;
            color: #5a554e;
            border-top: 1px solid #e5dccd;
        }

        .footer h5 {
            color: #3d3a35;
        }

        .footer a.text-white {
            color: #5a554e !important;
        }

        .footer hr {
            background: #ddd2c2 !important;
        }

        .footer-social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .footer-social-links a {
            width: 38px;
            height: 38px;
            border: 1px solid #d9cfc0;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #5a554e;
            text-decoration: none;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .footer-social-links a:hover {
            background: #9b6b43;
            color: #ffffff;
            transform: translateY(-1px);
        }

        @media (max-width: 1199.98px) {
            .home-product-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 991.98px) {
            .deco-utility-inner {
                grid-template-columns: 1fr auto;
            }

            .deco-shipping-message {
                display: none;
            }

            .home-product-grid,
            .home-feature-category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .home-category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .home-editorial-banner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .deco-utility-inner {
                grid-template-columns: 1fr;
            }

            .deco-utility-icons {
                justify-content: center;
            }

            .site-logo {
                height: 68px;
            }

            .home-section-heading {
                display: block;
            }

            .home-section-heading > a {
                position: static;
                display: inline-block;
                margin-top: 8px;
            }

            .home-product-grid,
            .home-feature-category-grid,
            .home-category-grid {
                grid-template-columns: 1fr;
            }

            .home-values-strip {
                flex-wrap: wrap;
            }
        }

        .hero-carousel-section,
        .hero-carousel-section .carousel,
        .hero-carousel-section .carousel-inner,
        .hero-carousel-section .carousel-item {
            min-height: clamp(620px, 76vh, 860px) !important;
        }

        .hero-banner-image {
            height: clamp(620px, 76vh, 860px) !important;
            -o-object-fit: cover;
               object-fit: cover;
            -o-object-position: center center;
               object-position: center center;
        }

        @media (max-width: 768px) {
            .hero-carousel-section,
            .hero-carousel-section .carousel,
            .hero-carousel-section .carousel-inner,
            .hero-carousel-section .carousel-item {
                min-height: 460px !important;
            }

            .hero-banner-image {
                height: 460px !important;
            }
        }

        /* Carousel styling for Novedades (6 or more products) */
        .home-product-carousel-wrapper {
            position: relative;
            padding: 0 40px;
            margin: 0 -40px;
        }

        .home-product-carousel {
            display: flex;
            gap: 26px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 10px 0;
        }

        .home-product-carousel::-webkit-scrollbar {
            display: none;
        }

        .home-product-carousel-item {
            flex: 0 0 calc(20% - 21px);
            scroll-snap-align: start;
        }

        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fffdf8;
            border: 1px solid #ddd2c2;
            color: #3d3a35;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .carousel-nav-btn:hover {
            background: #9b6b43;
            color: #ffffff;
            border-color: #9b6b43;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .carousel-nav-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-nav-btn.prev-btn {
            left: -10px;
        }

        .carousel-nav-btn.next-btn {
            right: -10px;
        }

        @media (max-width: 1199.98px) {
            .home-product-carousel-item {
                flex: 0 0 calc(25% - 20px);
            }
        }

        @media (max-width: 991.98px) {
            .home-product-carousel-item {
                flex: 0 0 calc(50% - 13px);
            }
            .home-product-carousel-wrapper {
                padding: 0 30px;
                margin: 0 -30px;
            }
            .carousel-nav-btn.prev-btn {
                left: -15px;
            }
            .carousel-nav-btn.next-btn {
                right: -15px;
            }
        }

        @media (max-width: 575.98px) {
            .home-product-carousel-item {
                flex: 0 0 100%;
            }
            .home-product-carousel-wrapper {
                padding: 0 20px;
                margin: 0 -20px;
            }
            .carousel-nav-btn.prev-btn {
                left: -20px;
            }
            .carousel-nav-btn.next-btn {
                right: -20px;
            }
            .carousel-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
        }


