/* ============ DILESSE — components.css ============ */

/* ---------- Product Grid & Card ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(25, 23, 21, 0.04);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 144, 83, 0.25);
}
.product-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #F4EFEA;
}
.product-media .ph {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-img {
    transform: scale(1.06);
}
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ink);
    color: var(--cream);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 4;
    font-weight: 600;
}
.badge.gold {
    background: var(--gold);
    color: #fff;
}
.wish-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    z-index: 4;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(25, 23, 21, 0.08);
}
.wish-btn svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.8;
    transition: all 0.25s;
}
.wish-btn:hover {
    background: #FFF;
    transform: scale(1.1);
}
.wish-btn:hover svg {
    stroke: var(--gold);
}
.wish-btn.active svg {
    fill: #C0392B;
    stroke: #C0392B;
}
.quick-add {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    background: rgba(25, 23, 21, 0.92);
    backdrop-filter: blur(6px);
    color: var(--cream);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: var(--radius-pill);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 4;
    text-align: center;
}
.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}
.quick-add:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 6px 18px rgba(184, 144, 83, 0.35);
}
.product-info {
    padding: 16px 14px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-cat {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}
.product-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 5px 0 4px;
    line-height: 1.25;
}
.product-name a {
    transition: color 0.25s;
    color: var(--ink);
}
.product-name a:hover {
    color: var(--gold);
}
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--gold);
    margin: 3px 0 6px;
}
.product-rating .stars {
    letter-spacing: 1px;
}
.product-rating .rcount {
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 400;
}
.product-price {
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 1rem;
    margin-top: auto;
}
.product-price .old {
    color: var(--ink-soft);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 8px;
    font-size: 0.85em;
}

/* Placeholder Art Fallback */
.ph {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ph::after {
    content: attr(data-initial);
    font-family: var(--serif);
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 14px rgba(0,0,0,0.12);
}
.ph-1 { background: linear-gradient(150deg, #d9c8ad, #b3a184); }
.ph-2 { background: linear-gradient(150deg, #c7a97e, #8f6b45); }
.ph-3 { background: linear-gradient(150deg, #ece4d4, #cfc3ab); }
.ph-4 { background: linear-gradient(150deg, #e3d3bd, #a9885f); }
.ph-5 { background: linear-gradient(150deg, #cbb796, #7d6448); }
.ph-6 { background: linear-gradient(150deg, #f0e9dc, #d8cbb4); }
.ph-7 { background: linear-gradient(150deg, #bfae90, #96764a); }
.ph-8 { background: linear-gradient(150deg, #ded2c0, #b09a77); }

/* ---------- Cart Drawer ---------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(25, 23, 21, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 90;
}
.drawer-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(420px, 92vw);
    background: var(--white);
    z-index: 95;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.22, 0.9, 0.3, 1);
    box-shadow: var(--shadow-lg);
}
.cart-drawer.open {
    transform: translateX(0);
}
.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 26px;
    border-bottom: 1px solid rgba(25, 23, 21, 0.08);
}
.drawer-head h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
}
.drawer-close {
    font-size: 1.6rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.25s;
    display: grid;
    place-items: center;
}
.drawer-close:hover {
    background: var(--cream-card);
}
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.drawer-empty {
    text-align: center;
    color: var(--ink-soft);
    margin-top: 60px;
}
.drawer-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(25, 23, 21, 0.06);
}
.drawer-item .thumb {
    width: 68px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F4EFEA;
}
.drawer-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.drawer-item .di-info {
    flex: 1;
}
.drawer-item .di-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 0.98rem;
}
.drawer-item .di-price {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 2px;
}
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(25, 23, 21, 0.18);
    border-radius: 20px;
    margin-top: 6px;
}
.qty-control button {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
    display: grid;
    place-items: center;
}
.qty-control span {
    min-width: 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}
.di-remove {
    color: var(--ink-soft);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: all 0.25s;
}
.di-remove:hover {
    color: #a33;
    border-color: #a33;
}
.drawer-foot {
    padding: 22px 26px;
    border-top: 1px solid rgba(25, 23, 21, 0.08);
    background: var(--cream);
}
.drawer-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 140%);
    background: var(--ink);
    color: var(--cream);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    z-index: 120;
    transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.3, 1);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
}
.toast.show {
    transform: translate(-50%, 0);
}

/* ---------- Site Footer ---------- */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    margin-top: 60px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 70px 0 50px;
}
.footer-brand .logo {
    color: var(--cream);
}
.footer-brand .logo-text {
    color: var(--cream);
}
.footer-brand p {
    color: rgba(250, 247, 242, 0.65);
    font-size: 0.9rem;
    margin: 18px 0 24px;
    max-width: 320px;
}
.socials {
    display: flex;
    gap: 12px;
}
.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(250, 247, 242, 0.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    transition: all 0.25s;
    color: var(--cream);
}
.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: 0.78rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 600;
}
.footer-col a {
    display: block;
    color: rgba(250, 247, 242, 0.65);
    font-size: 0.92rem;
    padding: 6px 0;
    transition: all 0.25s;
}
.footer-col a:hover {
    color: var(--cream);
    padding-left: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    padding: 22px 0;
    font-size: 0.76rem;
    color: rgba(250, 247, 242, 0.5);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

/* Feature Strip */
.feature-strip {
    background: var(--white);
    border-top: 1px solid rgba(25, 23, 21, 0.06);
    border-bottom: 1px solid rgba(25, 23, 21, 0.06);
}
.feature-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 28px 0;
}
.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.feature svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.feature div strong {
    display: block;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}
.feature div span {
    font-size: 0.74rem;
    color: var(--ink-soft);
}

/* Free Shipping Progress Bar */
.shipping-bar-wrap {
    background: #F5EFE6;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(184, 144, 83, 0.2);
}
.shipping-bar-msg {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shipping-bar-msg strong {
    color: var(--gold-dark);
}
.shipping-bar-track {
    height: 7px;
    background: rgba(25, 23, 21, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.shipping-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Quick Add Size Popover */
.qa-popover {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 12px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}
.qa-popover.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.qa-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: var(--ink-soft);
}
.qa-sizes {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.qa-size-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid rgba(25, 23, 21, 0.2);
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
}
.qa-size-btn:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

/* Modals (Size Guide, Checkout, Quick View) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(25, 23, 21, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.modal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: min(640px, 96vw);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 36px 32px;
}
.modal-overlay.show .modal-card {
    transform: scale(1) translateY(0);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    color: var(--ink);
}
.modal-close:hover {
    background: var(--cream-2);
}
.modal-card h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 6px;
}

/* Size Guide Table */
.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.88rem;
}
.size-table th {
    background: var(--cream-card);
    padding: 10px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 1.5px solid rgba(25, 23, 21, 0.1);
}
.size-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(25, 23, 21, 0.08);
}
.unit-toggle {
    display: flex;
    gap: 8px;
    margin: 14px 0 20px;
}
.unit-btn {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(25, 23, 21, 0.18);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
}
.unit-btn.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

/* Checkout Modal Steps & Form */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 28px;
    position: relative;
}
.checkout-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(25, 23, 21, 0.1);
    z-index: 1;
}
.c-step {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.c-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream-card);
    border: 2px solid rgba(25, 23, 21, 0.15);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-soft);
    transition: all 0.25s;
}
.c-step.active .c-step-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(184, 144, 83, 0.2);
}
.c-step.done .c-step-dot {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.c-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.c-field {
    margin-bottom: 14px;
}
.c-field label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.c-field input, .c-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(25, 23, 21, 0.18);
    border-radius: 8px;
    background: var(--cream);
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
}
.c-field input:focus, .c-field select:focus {
    border-color: var(--gold);
    background: #fff;
}
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}
.del-opt {
    border: 1.5px solid rgba(25, 23, 21, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}
.del-opt:hover, .del-opt.selected {
    border-color: var(--gold);
    background: rgba(184, 144, 83, 0.04);
}
.del-opt input {
    accent-color: var(--gold);
}
.payment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.p-tab {
    flex: 1;
    padding: 12px;
    border: 1.5px solid rgba(25, 23, 21, 0.15);
    border-radius: 8px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.p-tab.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
}
.order-success-screen {
    text-align: center;
    padding: 20px 0;
}
.order-check-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2.4rem;
    box-shadow: 0 10px 25px rgba(184, 144, 83, 0.4);
    animation: checkBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes checkBounce {
    0% { transform: scale(0.3); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.receipt-box {
    background: var(--cream-card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid rgba(184, 144, 83, 0.2);
}
.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 6px 0;
    color: var(--ink-soft);
}
.receipt-row.total {
    border-top: 1px solid rgba(25, 23, 21, 0.12);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.05rem;
}

/* ---------- Dark Theme Components Overrides ---------- */
[data-theme="dark"] .product-card {
    background: var(--cream-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .product-card:hover {
    border-color: rgba(197, 158, 95, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}
[data-theme="dark"] .product-media {
    background: #131211;
}
[data-theme="dark"] .wish-btn {
    background: rgba(23, 21, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .wish-btn svg {
    stroke: var(--ink);
}
[data-theme="dark"] .wish-btn:hover {
    background: #25221F;
}
[data-theme="dark"] .wish-btn:hover svg {
    stroke: var(--gold);
}
[data-theme="dark"] .quick-add {
    background: rgba(23, 21, 20, 0.95);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .quick-add:hover {
    background: var(--gold);
    color: #0E0D0C;
    border-color: var(--gold);
}
[data-theme="dark"] .badge {
    background: #262320;
    color: #FAF7F2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .badge.gold {
    background: var(--gold);
    color: #0E0D0C;
}

/* Drawer in Dark Mode */
[data-theme="dark"] .drawer {
    background: #141312;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
}
[data-theme="dark"] .drawer-head,
[data-theme="dark"] .drawer-foot {
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .drawer-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .drawer-item .thumb {
    background: #1C1917;
}
[data-theme="dark"] .qty-control {
    background: #1E1B19;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .qty-control button {
    color: var(--ink);
}
[data-theme="dark"] .qty-control button:hover {
    background: #2A2623;
}
[data-theme="dark"] .shipping-bar-wrap {
    background: #1B1816;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .shipping-bar-track {
    background: #282420;
}
[data-theme="dark"] .drawer-empty svg path {
    stroke: var(--gold);
}

/* Modals in Dark Mode */
[data-theme="dark"] .modal-overlay {
    background: rgba(0, 0, 0, 0.75);
}
[data-theme="dark"] .modal-card {
    background: #171514;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.85);
}
[data-theme="dark"] .modal-close {
    color: var(--ink-soft);
}
[data-theme="dark"] .modal-close:hover {
    color: var(--ink);
    background: var(--cream-2);
}
[data-theme="dark"] .size-table th {
    background: #221F1C;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .size-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--ink);
}
[data-theme="dark"] .unit-btn {
    background: #1E1B19;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--ink);
}
[data-theme="dark"] .unit-btn.active {
    background: var(--gold);
    color: #0E0D0C;
    border-color: var(--gold);
}

/* Checkout Form in Dark Mode */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select {
    background: #100F0E;
    color: #FAF7F2;
    border: 1px solid rgba(255, 255, 255, 0.14);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 158, 95, 0.2);
}
[data-theme="dark"] .delivery-opt {
    background: #1E1B19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ink);
}
[data-theme="dark"] .delivery-opt.selected {
    border-color: var(--gold);
    background: #25201A;
}
[data-theme="dark"] .receipt-box {
    background: #1E1B19;
    border-color: rgba(197, 158, 95, 0.25);
}
[data-theme="dark"] .receipt-row.total {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: var(--ink);
}
[data-theme="dark"] .step-item {
    color: var(--ink-soft);
}
[data-theme="dark"] .step-item.active {
    color: var(--gold);
}
[data-theme="dark"] .step-circle {
    background: #221F1C;
    color: var(--ink-soft);
}
[data-theme="dark"] .step-item.active .step-circle {
    background: var(--gold);
    color: #0E0D0C;
}

/* Toast in Dark Mode */
[data-theme="dark"] .toast {
    background: #221F1C;
    color: var(--ink);
    border: 1px solid rgba(197, 158, 95, 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

/* Footer in Dark Mode */
[data-theme="dark"] .site-footer {
    background: #080706;
    color: #FAF7F2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .site-footer .footer-brand .logo-text {
    color: #FAF7F2;
}
[data-theme="dark"] .site-footer .footer-brand p {
    color: rgba(250, 247, 242, 0.65);
}
[data-theme="dark"] .site-footer .socials a {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FAF7F2;
}
[data-theme="dark"] .site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


