.footer-pc {
    background-color: var(--ink);
    color: var(--border);
    padding: 2.5rem 0 1.5rem 0;
    border-top: 2px solid var(--gold);
    font-family: var(--font-sans);
    font-size: var(--text-md);
}
.footer-pc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-pc__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
    .footer-pc__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 768px) {
    .footer-pc {
        display: none;
    }
}
.footer-pc__col--brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-pc__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.footer-pc__tagline {
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}
.footer-pc__socials {
    display: flex;
    gap: 1rem;
}
.footer-pc__socials a {
    color: var(--border);
    background: #222222;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-base) ease;
    border: 1px solid #333333;
}
.footer-pc__socials a:hover {
    color: var(--ink);
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.footer-pc__socials a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.footer-pc__title {
    color: var(--gold);
    font-size: var(--text-md);
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-pc__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}
html[dir="rtl"] .footer-pc__title::after {
    left: auto;
    right: 0;
}
.footer-pc__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-pc__links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all var(--duration-base) ease;
    display: inline-block;
    border-radius: 4px;
}
.footer-pc__links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}
.footer-pc__links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
html[dir="rtl"] .footer-pc__links a:hover {
    transform: translateX(-5px);
}
.footer-pc__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-pc__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b3b3b3;
}
.footer-pc__contact-list li svg {
    color: var(--gold);
    flex-shrink: 0;
}
.footer-pc__contact-list li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color var(--duration-base);
    border-radius: 4px;
}
.footer-pc__contact-list li a:hover {
    color: var(--gold);
}
.footer-pc__contact-list li a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.footer-pc__bottom {
    border-top: 1px solid #222222;
    padding-top: 2rem;
    text-align: center;
    color: #777777;
    font-size: var(--text-sm);
}
.footer-pc__bottom p {
    margin: 0;
}

/* ═══ Cart Drawer ═══ */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.58);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    transition: opacity var(--duration-base) ease;
}
.cart-drawer-overlay.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1500;
    box-shadow: -18px 0 50px rgba(0,0,0,0.18);
    transition: all var(--duration-slow) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
}
.cart-drawer.is-active {
    right: 0;
}
html[dir="rtl"] .cart-drawer {
    left: -420px;
    right: auto;
    box-shadow: 18px 0 50px rgba(0,0,0,0.18);
}
html[dir="rtl"] .cart-drawer.is-active {
    left: 0;
    right: auto;
}
@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .cart-drawer.is-active {
        right: 0;
    }
    html[dir="rtl"] .cart-drawer {
        left: -100%;
        right: auto;
    }
    html[dir="rtl"] .cart-drawer.is-active {
        left: 0;
        right: auto;
    }
}
.cart-drawer__header {
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #fffaf0, #fff);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
    flex-shrink: 0;
}
.cart-drawer__close {
    background: var(--bg-card-hover);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    transition: all var(--duration-base);
    flex-shrink: 0;
}
.cart-drawer__close:hover {
    background: #ffe8e8;
    color: #e53e3e;
}
.cart-drawer__close:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.cart-drawer__body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.35rem 1.5rem;
}
.cart-drawer__footer {
    padding: 1.35rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    background: linear-gradient(180deg, #fff, #fffaf0);
    box-shadow: 0 -10px 24px rgba(17, 17, 17, 0.04);
    flex-shrink: 0;
}
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px dashed var(--border);
}
.cart-drawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), #d4b96a);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: var(--text-base);
    font-family: var(--font-sans);
    box-shadow: 0 6px 20px rgba(197,160,89,0.35);
    transition: all var(--duration-base) ease;
    letter-spacing: 0.3px;
}
.cart-drawer__btn:hover {
    background: linear-gradient(135deg, #b8922a, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,160,89,0.45);
    color: var(--white);
}
.cart-drawer__btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.cart-item {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--bg-card-hover);
    align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item__image {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #faf7f0, #f5f0e8);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #efe4ce;
    flex-shrink: 0;
    font-size: var(--text-2xl);
}
.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item__details {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.cart-item__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-sans);
}
.cart-item__variant {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 600;
    background: #fff8ec;
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(197,160,89,0.25);
    width: fit-content;
}
.cart-item__price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.2rem;
}
.cart-item__qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--bg-card-hover);
}
.cart-item__qty-btn {
    border: none;
    background: none;
    width: 28px;
    height: 28px;
    font-size: var(--text-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #555;
    transition: background var(--duration-base);
    border-radius: 4px;
}
.cart-item__qty-btn:hover { background: var(--border); }
.cart-item__qty-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}
.cart-item__qty-input {
    border: none;
    background: transparent;
    width: 30px;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: 700;
    padding: 0;
    color: var(--ink);
}
.cart-item__price {
    font-size: var(--text-md);
    font-weight: 800;
    color: var(--ink);
}
.cart-item__remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    transition: color var(--duration-base);
    flex-shrink: 0;
    align-self: center;
    border-radius: 4px;
}
.cart-item__remove:hover { color: #e53e3e; }
.cart-item__remove:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.cart-drawer__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #bbb;
    font-family: var(--font-sans);
}
.cart-drawer__empty svg {
    display: block;
    margin: 0 auto 1rem;
    opacity: 0.3;
}

/* ═══ Bottom Nav ═══ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
    padding-bottom: env(safe-area-inset-bottom, 0.5rem);
    z-index: var(--z-sticky);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #777;
    font-size: var(--text-xs);
    font-weight: 600;
    font-family: var(--font-sans);
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    transition: color var(--duration-base);
}
.bottom-nav-item svg {
    width: 22px;
    height: 22px;
}
.bottom-nav-item.is-active {
    color: var(--gold);
}
.bottom-nav-item:hover {
    color: var(--gold);
}
.bottom-nav-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ═══ WhatsApp Float ═══ */
.wa-float {
    position: fixed;
    bottom: 3.75rem;
    inset-inline-end: 1.25rem;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: transform var(--duration-base) ease;
    cursor: pointer;
}
.wa-float:hover {
    transform: scale(1.1);
}
.wa-float:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
    .wa-float {
        bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    body:not(.hide-bottom-nav) main {
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }
    .bottom-nav {
        min-height: 64px;
    }
    .wa-float {
        bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    }
    .scroll-top {
        bottom: calc(9rem + env(safe-area-inset-bottom, 0px));
    }
}

/* ═══ Scroll-to-Top ═══ */
.scroll-top {
    position: fixed;
    bottom: 90px;
    inset-inline-end: 20px;
    z-index: var(--z-sticky);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-base) var(--easing-default);
    box-shadow: var(--shadow-md);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.scroll-top:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ═══ Voice Assistant ═══ */
.voice-assistant-float {
    position: fixed;
    bottom: 7.5rem;
    inset-inline-end: 1.25rem;
    z-index: 10020;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #111 0%, #3a2b15 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.28);
    cursor: pointer;
    touch-action: manipulation;
    transition: transform var(--duration-base) ease, box-shadow var(--duration-base) ease;
}
.voice-assistant-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.34);
}
.voice-assistant-float.is-active {
    background: linear-gradient(135deg, #d4af37 0%, #8b6a22 100%);
    color: #111;
}
.voice-assistant-float:focus-visible,
.voice-assistant-panel__close:focus-visible,
.voice-assistant-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.voice-assistant-panel {
    position: fixed;
    inset-inline-end: 1.25rem;
    bottom: 8.75rem;
    width: min(380px, calc(100vw - 2rem));
    max-height: min(72vh, 640px);
    background: rgba(255, 255, 255, 0.98);
    color: #111;
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(18px);
    z-index: 10019;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.voice-assistant-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.voice-assistant-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.85rem;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.16) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}
.voice-assistant-panel__header strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}
.voice-assistant-panel__header p {
    margin: 0;
    font-size: 0.88rem;
    color: #666;
}
.voice-assistant-panel__close {
    border: none;
    background: rgba(17, 17, 17, 0.08);
    color: #111;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}
.voice-assistant-panel__body {
    padding: 1rem;
    overflow-y: auto;
    display: grid;
    gap: 0.8rem;
}
.voice-assistant-status,
.voice-assistant-transcript,
.voice-assistant-response {
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    font-size: 0.93rem;
    line-height: 1.7;
}
.voice-assistant-status {
    background: #111;
    color: #fff;
}
.voice-assistant-status.is-error {
    background: #7f1d1d;
}
.voice-assistant-transcript {
    background: #f7f4ec;
    color: #5d513d;
}
.voice-assistant-response {
    background: #fbfbfb;
    border: 1px solid #ece7dc;
}
.voice-assistant-results {
    display: grid;
    gap: 0.75rem;
}
.voice-assistant-result {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color var(--duration-base) ease, transform var(--duration-base) ease;
}
.voice-assistant-result:hover {
    border-color: rgba(197, 160, 89, 0.6);
    transform: translateY(-1px);
}
.voice-assistant-result__image {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f6f1e7 0%, #ece4d0 100%);
    overflow: hidden;
}
.voice-assistant-result__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.voice-assistant-result__body strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.96rem;
}
.voice-assistant-result__meta,
.voice-assistant-result__reason {
    display: block;
    font-size: 0.84rem;
    color: #6a6a6a;
}
.voice-assistant-result__reason {
    margin-top: 0.2rem;
    color: #8b6a22;
}
.voice-assistant-panel__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0 1rem 1rem;
}
.voice-assistant-input {
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid #ddd7cb;
    background: #fff;
    color: #111;
    padding: 0 0.95rem;
    font: inherit;
}
.voice-assistant-input:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.voice-assistant-btn {
    min-height: 46px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}
.voice-assistant-btn--primary {
    background: #111;
    color: #fff;
}
.voice-assistant-btn--secondary {
    background: #f2f2f2;
    color: #111;
}

@media (min-width: 769px) {
    .voice-assistant-float {
        bottom: 6.75rem;
    }
    .voice-assistant-panel {
        bottom: 8rem;
    }
}

@media (max-width: 768px) {
    .voice-assistant-float {
        bottom: calc(8.25rem + env(safe-area-inset-bottom, 0px));
    }
    .voice-assistant-panel {
        inset-inline: 1rem;
        width: auto;
        bottom: calc(12rem + env(safe-area-inset-bottom, 0px));
        max-height: min(68vh, 560px);
    }
    .voice-assistant-panel__actions {
        grid-template-columns: 1fr;
    }
}
