        body {
            background: #efebe4;
            color: #2f241d;
        }

        .cart-wrap {
            padding: 2rem 0 2.5rem;
        }

        .cart-title {
            font-size: 2.1rem;
            font-family: "Playfair Display", "Times New Roman", serif;
            margin-bottom: 1.2rem;
            color: #2f241d;
        }

        .cart-item-card {
            background: #f7f7f7;
            border: 1px solid #ece8e2;
            border-radius: 14px;
            padding: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.95rem;
            margin-bottom: 0.8rem;
        }

        .item-image {
            width: 88px;
            height: 88px;
            border-radius: 10px;
            object-fit: cover;
            flex: 0 0 88px;
        }

        .item-name {
            font-size: 1.05rem;
            margin: 0 0 0.3rem;
            color: #35281f;
            text-decoration: none;
            display: inline-block;
        }

        .item-name:hover {
            color: #80542b;
        }

        .item-price {
            margin: 0;
            font-size: 1.02rem;
            color: #9a6634;
        }

        .item-stock-row {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            margin: 0.2rem 0 0.35rem;
        }

        .item-stock-tag {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            padding: 0.15rem 0.5rem;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.02rem;
        }

        .item-stock-soldout {
            color: #b12704;
            background: #fdece8;
            border: 1px solid #f5c3b5;
        }

        .item-notify-link {
            font-size: 0.76rem;
            color: #007185;
            text-decoration: none;
            font-weight: 600;
        }

        .item-notify-link:hover {
            text-decoration: underline;
        }

        .qty-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.38rem;
            margin-top: 0.6rem;
        }

        .qty-btn {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            border: 1px solid #d6cec4;
            background: #fff;
            color: #6a533d;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            font-size: 1rem;
        }

        .qty-number {
            min-width: 20px;
            text-align: center;
            color: #5a4634;
        }

        .item-remove {
            border: 0;
            background: transparent;
            color: #b0a79d;
            font-size: 1.1rem;
            margin-left: auto;
        }

        .summary-card {
            background: #f7f7f7;
            border: 1px solid #ece8e2;
            border-radius: 14px;
            padding: 1.25rem;
        }

        .summary-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-family: "Playfair Display", "Times New Roman", serif;
            color: #3a2b22;
        }

        .coupon-label {
            font-size: 1.02rem;
            margin-bottom: 0.45rem;
            color: #5f4a37;
        }

        .btn-apply,
        .btn-checkout {
            background: #8f5f2f;
            border-color: #8f5f2f;
            color: #fff;
        }

        .btn-apply:hover,
        .btn-checkout:hover {
            background: #7f5328;
            border-color: #7f5328;
            color: #fff;
        }

        .sum-row {
            display: flex;
            justify-content: space-between;
            margin: 0.7rem 0;
            color: #6a5644;
        }

        .sum-total {
            border-top: 1px solid #e1d9cf;
            margin-top: 0.8rem;
            padding-top: 0.8rem;
            font-size: 1.08rem;
            font-weight: 600;
            color: #3e2f24;
        }

        .ship-free {
            color: #14834f;
        }

        .shipping-note {
            text-align: center;
            color: #988879;
            margin-top: 0.55rem;
            font-size: 0.87rem;
        }

        .benefit-card {
            background: #f7f7f7;
            border: 1px solid #ece8e2;
            border-radius: 14px;
            text-align: center;
            padding: 1rem 0.8rem;
            color: #8f5f2f;
        }

        .benefit-card i {
            font-size: 1.45rem;
            margin-bottom: 0.35rem;
        }

        .benefit-card p {
            margin: 0;
            color: #7c6652;
            font-size: 0.93rem;
        }

        .empty-cart-card {
            background: #f7f7f7;
            border: 1px solid #ece8e2;
            border-radius: 14px;
            padding: 2rem;
            text-align: center;
        }

        .site-footer {
            background: #2b0f08;
            color: #f2e8df;
        }

        .footer-brand {
            font-size: 2rem;
            line-height: 1;
            color: #e6ae2f;
            font-family: "Times New Roman", serif;
            font-style: italic;
        }

        .footer-brand-sub {
            color: #fff4e8;
            font-weight: 600;
            font-size: 2rem;
            font-style: normal;
            margin-left: 0.3rem;
        }

        .footer-text {
            color: #dac9bc;
            line-height: 1.45;
        }

        .footer-heading {
            color: #fff4ea;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-family: "Times New Roman", serif;
        }

        .footer-link {
            color: #e8d8cc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
        }

        .footer-link:hover {
            color: #ffffff;
        }

        .social-pill {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: #f9efe7;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-right: 0.4rem;
        }

        .social-pill:hover {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.13);
            margin: 2.2rem 0;
        }

        .newsletter-title {
            color: #fff4ea;
            font-family: "Times New Roman", serif;
            font-size: 2rem;
        }

        .newsletter-input {
            border: 0;
            border-radius: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 0.9rem 1rem;
        }

        .newsletter-input::placeholder {
            color: #b8a79b;
        }

        .newsletter-input:focus {
            box-shadow: none;
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
        }

        .btn-newsletter {
            background: #d6a825;
            border: 0;
            color: #2c1810;
            border-radius: 0.8rem;
            padding: 0.9rem 1.5rem;
            font-weight: 600;
        }

        .btn-newsletter:hover {
            background: #c79617;
            color: #2c1810;
        }

        .footer-logo-wrap {
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
        }

        .footer-logo {
            width: min(300px, 100%);
            height: auto;
            object-fit: contain;
            display: block;
            transition: transform 0.25s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .payment-chip {
            width: 32px;
            height: 20px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.3);
            display: inline-block;
            margin-left: 0.7rem;
        }

        .copyright-text {
            color: #ccb8aa;
        }
    

/* Auto-extracted inline style attributes */
.inl-1 { color:#cdbcb0; }`r`n