    /* ================= CART SIDEBAR ================= */
    .cart-overlay {
        position: fixed;
        inset: 0;
        background: rgba(28, 58, 43, 0.4);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }
    .cart-overlay.active { opacity: 1; visibility: visible; }

    .cart-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        width: 400px;
        max-width: 95vw;
        height: 100vh;
        background: white;
        z-index: 1501;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    }
    .cart-sidebar.active { transform: translateX(0); }

    .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 28px;
        border-bottom: 1px solid var(--ivory-dark);
    }
    .cart-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; font-weight: 400; }
    .cart-item-label { color: var(--text-light); font-size: 1rem; }
    .cart-close {
        background: none;
        border: none;
        font-size: 1.1rem;
        cursor: pointer;
        color: var(--text-light);
        transition: var(--transition);
        padding: 6px;
    }
    .cart-close:hover { color: var(--terracotta); transform: rotate(90deg); }

    .cart-body { flex: 1; overflow-y: auto; padding: 28px; }

    .cart-empty {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        color: var(--text-light);
        text-align: center;
        padding: 40px 0;
    }
    .cart-empty i { font-size: 3rem; color: var(--sage); }
    .cart-empty p { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--text-mid); }

    .btn-hero-sm {
        display: inline-block;
        background: var(--forest);
        color: white;
        padding: 10px 24px;
        border-radius: 30px;
        font-family: 'DM Serif Display', serif;
        transition: var(--transition);
    }
    .btn-hero-sm:hover { background: var(--terracotta); color: white; }

    .cart-footer {
        padding: 20px 28px 28px;
        border-top: 1px solid var(--ivory-dark);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .cart-total { font-size: 1.1rem; color: var(--text-mid); font-family: 'Cormorant Garamond', serif; }
    .cart-total strong { color: var(--forest); font-size: 1.3rem; font-family: 'DM Serif Display', serif; }

    .btn-view-cart {
        display: block;
        text-align: center;
        border: 1.5px solid var(--forest);
        color: var(--forest);
        padding: 12px;
        border-radius: var(--radius-card);
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        transition: var(--transition);
    }
    .btn-view-cart:hover { background: var(--forest); color: white; }

    .btn-checkout,
    .btn-checkout-now {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--terracotta);
        color: white;
        width: 100%;
        padding: 16px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1.1rem;
        border: none;
        cursor: pointer;
        transition: var(--transition);
    }
    .btn-checkout:hover,
    .btn-checkout-now:hover { background: var(--terracotta-lt); transform: translateY(-2px); color: white; }

    /* Cart drawer items */
    .drawer-item {
        display: flex;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--ivory-dark);
        align-items: center;
    }
    .drawer-item:last-child { border-bottom: none; }
    .drawer-item-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; background: var(--ivory); flex-shrink: 0; }
    .drawer-item-info { flex: 1; min-width: 0; }
    .drawer-item-info h4 { font-family: 'DM Serif Display', serif; font-size: 0.92rem; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
    .drawer-item-info .item-price { font-size: 0.88rem; color: var(--forest); font-weight: 600; }
    .drawer-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
    .dqty-btn {
        width: 24px;
        height: 24px;
        background: var(--ivory);
        border: 1px solid var(--ivory-dark);
        border-radius: 50%;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    .dqty-btn:hover { background: var(--forest); color: white; border-color: var(--forest); }
    .dqty-num { font-family: 'DM Serif Display', serif; min-width: 18px; text-align: center; font-size: 0.95rem; }
    .drawer-remove { background: none; border: none; color: var(--text-light); font-size: 0.8rem; padding: 4px; margin-left: auto; transition: var(--transition); }
    .drawer-remove:hover { color: var(--terracotta); }

    /* ================= TOAST ================= */
    .toast {
        position: fixed;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%) translateY(80px);
        background: var(--forest);
        color: white;
        padding: 14px 28px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1rem;
        z-index: 3000;
        box-shadow: 0 8px 30px rgba(28, 58, 43, 0.35);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        white-space: nowrap;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
    .toast i { color: var(--sage); }
    .toast.error { background: #DC2626; }
    .toast.error i { color: #FCA5A5; }


.mobile-nav,
.nav-menu.mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    padding-top: 90px;
}

.mobile-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99998;
}

@media (max-width:768px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .product-card{
        min-width:0;
    }

    .product-info h3{
        font-size:.95rem;
        line-height:1.3;
    }

    .price{
        font-size:1rem;
    }
}

.shop-search-wrap{
    width:100%;
}

.shop-search-inner{
    width:100%;
    max-width:100%;
}

.shop-search-input{
    min-width:0;
    width:100%;
}

@media (max-width:768px){

    .shop-topbar{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:15px;
    }

}

