
        :root {
            --warm-dark: #2d241e;
            --warm-ink: #1a1310;
            --warm-cream: #fbf9f6;
            --warm-sand: #f4ede0;
            --warm-parchment: #ede4d4;
            --gold: #c9a84c;
            --gold-light: #e3cb76;
            --champagne: #decfaa;
            --clay: #b65a3f;
            --clay-light: #c9705a;
            --muted: #9e8e7e;
            --ink-soft: #5c524f;
            --border-warm: rgba(182, 90, 63, 0.12);
            --border-gold: rgba(201, 168, 76, 0.15);
            --shadow-soft: 0 10px 30px rgba(45, 36, 30, 0.03);
            --shadow-hover: 0 20px 45px rgba(45, 36, 30, 0.08);
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Minimal Header Hero Banner */
        .minimal-banner-hero {
            position: relative;
            /*background-image: url(https://zenzula-stories-unfold.lovable.app/assets/about-workshop-DrhWxdZD.jpg);*/
            padding: clamp(60px, 8vw, 100px) 0;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        .minimal-banner-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(28, 22, 19, 0.65);
            z-index: -1;
        }
        .minimal-banner-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 300;
            color: #ffffff;
            text-align: center;
            margin: 0;
        }

        /* Cart Wrapper Space */
        .cart-page-section {
            background-color: var(--warm-cream);
            padding-top: clamp(40px, 6vw, 80px);
            padding-bottom: clamp(60px, 8vw, 100px);
        }

        /* Real-Time Countdown Timer Banner */
        .cart-countdown-banner {
            background: rgba(182, 90, 63, 0.04);
            border: 1px solid rgba(182, 90, 63, 0.12);
            border-radius: 12px;
            padding: 14px 20px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: pulse-soft 2s infinite ease-in-out;
        }
        .cart-countdown-icon {
            color: var(--clay);
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        .cart-countdown-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px;
            color: var(--warm-dark);
            font-weight: 500;
            margin: 0;
        }
        .cart-countdown-time {
            font-weight: 700;
            color: var(--clay);
            font-variant-numeric: tabular-nums;
        }
        @keyframes pulse-soft {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.88; }
        }

        /* Table Card Layout */
        .tf-table-page-cart {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 16px;
            margin-top: -16px;
        }
        .tf-table-page-cart thead th {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--muted);
            border: none;
            padding: 0 16px 10px;
        }
        .tf-table-page-cart thead th:first-child {
            padding-left: 24px;
        }
        
        .tf-cart-item {
            background: #ffffff;
            transition: var(--transition-smooth);
        }
        .tf-cart-item td {
            padding: 24px 20px;
            vertical-align: middle;
            background: #ffffff;
            border-top: 1px solid var(--border-warm);
            border-bottom: 1px solid var(--border-warm);
        }
        .tf-cart-item td:first-child {
            border-left: 1px solid var(--border-warm);
            border-top-left-radius: 16px;
            border-bottom-left-radius: 16px;
            padding-left: 24px;
        }
        .tf-cart-item td:last-child {
            border-right: 1px solid var(--border-warm);
            border-top-right-radius: 16px;
            border-bottom-right-radius: 16px;
            padding-right: 24px;
        }
        .tf-cart-item:hover td {
            box-shadow: 0 15px 30px rgba(45, 36, 30, 0.05);
        }

        .cart-img-wrap {
            width: 90px;
            height: 90px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(45, 36, 30, 0.05);
            background-color: var(--warm-cream);
            flex-shrink: 0;
            display: block;
        }
        .cart-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .tf-cart-item:hover .cart-img-wrap img {
            transform: scale(1.05);
        }
        
        .cart-item-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 19px;
            font-weight: 500;
            color: var(--warm-dark);
            text-decoration: none !important;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        .cart-item-title:hover {
            color: var(--clay);
        }
        .cart-item-meta {
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .meta-pill-badge {
            background: var(--warm-cream);
            border: 1px solid var(--border-warm);
            color: var(--ink-soft);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Cart Link Actions */
        .cart-action-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
        }
        .action-link-btn {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--muted);
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            outline: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }
        .action-link-btn:hover {
            color: var(--warm-dark);
        }
        .action-link-btn.btn-remove-item:hover {
            color: var(--clay);
        }

        .cart-item-price-unit {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            color: var(--warm-dark);
            font-weight: 500;
        }
        .cart-item-subtotal-price {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--clay);
        }

        /* Premium Quantity Selector */
        .premium-qty-selector {
            display: flex;
            align-items: center;
            background: var(--warm-cream);
            border: 1px solid var(--border-warm);
            border-radius: 8px;
            overflow: hidden;
            width: 104px;
            height: 36px;
        }
        .premium-qty-btn {
            width: 32px;
            height: 100%;
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--warm-dark);
            cursor: pointer;
            outline: none;
            transition: background 0.3s, color 0.3s;
            user-select: none;
        }
        .premium-qty-btn:hover:not(.disabled) {
            background-color: var(--border-warm);
            color: var(--clay);
        }
        .premium-qty-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }
        .premium-qty-input {
            width: 40px;
            height: 100%;
            border: none;
            background: none;
            text-align: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            color: var(--warm-dark);
            outline: none;
            pointer-events: none;
        }

        /* Right Side: Sticky Order Summary Card */
        .sticky-summary-sidebar {
            position: relative;
        }
        .summary-card-premium {
            background: #ffffff;
            border: 1px solid var(--border-warm);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow-soft);
            position: sticky;
            top: 110px;
            transition: var(--transition-smooth);
        }
        .summary-card-premium:hover {
            box-shadow: var(--shadow-hover);
        }
        .summary-card-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 24px;
            font-weight: 400;
            color: var(--warm-dark);
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-warm);
            padding-bottom: 12px;
        }
        
        .summary-line-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px;
        }
        .summary-line-item.subtotal-row {
            font-weight: 500;
            color: var(--warm-dark);
        }
        .summary-line-item.tax-row {
            color: var(--muted);
        }
        .summary-line-item.grandtotal-row {
            border-top: 1px solid var(--border-warm);
            padding-top: 18px;
            margin-top: 10px;
            margin-bottom: 24px;
        }
        .grandtotal-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--warm-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .grandtotal-price-val {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--clay);
        }

        /* Buttons Styling */
        .btn-checkout-premium {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 52px;
            background: var(--warm-dark);
            color: #ffffff;
            border: 1px solid var(--warm-dark);
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: var(--transition-smooth);
            outline: none;
            text-decoration: none !important;
            box-shadow: 0 4px 12px rgba(45, 36, 30, 0.08);
        }
        .btn-checkout-premium:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #1c1613;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
        }
        
        .btn-continue-shopping-premium {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 52px;
            background: transparent;
            color: var(--warm-dark);
            border: 1px solid var(--border-warm);
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: var(--transition-smooth);
            outline: none;
            margin-top: 12px;
            text-decoration: none !important;
        }
        .btn-continue-shopping-premium:hover {
            border-color: var(--warm-dark);
            background: rgba(45, 36, 30, 0.02);
            color: var(--warm-dark);
        }

        /* Safe checkout trust badges block */
        .trust-badges-box {
            margin-top: 24px;
            border-top: 1px solid var(--border-warm);
            padding-top: 20px;
        }
        .trust-badges-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--muted);
            text-align: center;
            margin-bottom: 12px;
        }
        .payment-icons-list {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .payment-badge-wrap {
            width: 40px;
            height: 26px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
            border: 1.5px solid rgba(45, 36, 30, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
        }
        .payment-badge-wrap svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Mobile Sticky Footer Checkout Strip */
        .mobile-sticky-checkout-strip {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid var(--border-warm);
            box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.06);
            padding: 16px 20px;
            z-index: 10000;
            display: none;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-sticky-totals {
            display: flex;
            flex-direction: column;
        }
        .mobile-sticky-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--muted);
        }
        .mobile-sticky-price {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--clay);
        }
        .btn-mobile-checkout {
            width: 150px;
            height: 44px;
            border-radius: 6px;
            font-size: 12px;
            letter-spacing: 0.1em;
            box-shadow: 0 4px 10px rgba(182, 90, 63, 0.15);
        }

        /* Premium Toast Customization */
        .toast-premium {
            border-radius: 12px !important;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
            border: none !important;
        }

        /* Responsive styling */
        @media (max-width: 991px) {
            .summary-card-premium {
                position: static !important;
                margin-top: 30px;
            }
            .cart-page-section {
                padding-bottom: 90px; /* buffer space for mobile sticky cta */
            }
        }
        
        @media (max-width: 767px) {
            .mobile-sticky-checkout-strip {
                display: flex;
            }
            
            /* Responsive table-to-cards formatting */
            .tf-table-page-cart,
            .tf-table-page-cart thead,
            .tf-table-page-cart tbody,
            .tf-table-page-cart tr,
            .tf-table-page-cart td {
                display: block;
                width: 100% !important;
            }
            .tf-table-page-cart thead {
                display: none;
            }
            .tf-cart-item {
                border: 1px solid var(--border-warm);
                border-radius: 16px !important;
                margin-bottom: 20px;
                padding: 16px;
                background: #ffffff;
                box-shadow: var(--shadow-soft);
            }
            .tf-cart-item td {
                padding: 10px 0 !important;
                border: none !important;
                border-radius: 0 !important;
                background: none !important;
            }
            .tf-cart-item_product {
                border-bottom: 1px solid var(--border-warm) !important;
                padding-bottom: 16px !important;
                margin-bottom: 12px;
            }
            .tf-cart-item_price,
            .tf-cart-item_quantity,
            .tf-cart-item_total {
                display: flex !important;
                justify-content: space-between;
                align-items: center;
                gap: 12px;
            }
            .tf-cart-item_price::before {
                content: "Price";
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 11px;
                color: var(--muted);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }
            .tf-cart-item_quantity::before {
                content: "Quantity";
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 11px;
                color: var(--muted);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }
            .tf-cart-item_total::before {
                content: "Subtotal";
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 11px;
                color: var(--muted);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }
        }
   