/* public/css/nojoom.css */

/* ══ Import Fonts ══ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ══ Variables ══ */
:root {
    --dark-brown:  #4E342E;
    --gold:        #C9A96E;
    --gold-dark:   #b89760;
    --beige:       #F5E6D3;
    --light-gray:  #F7F7F7;
    --gray:        #6B5E58;
    --white:       #FFFFFF;
    --red:         #d4183d;
    --green:       #16a34a;
    --font-main:   'Cairo', sans-serif;
    --font-display:'Playfair Display', serif;
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
    --shadow-md:   0 4px 12px rgba(0,0,0,.1);
    --shadow-lg:   0 12px 32px rgba(0,0,0,.12);
    --shadow-xl:   0 24px 48px rgba(0,0,0,.15);
    --transition:  .25s ease;
    --nav-h:       140px;
}

/* ══ Reset ══ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{font-size:16px;scroll-behavior:smooth;}
body{font-family:var(--font-main);background:#fff;color:var(--dark-brown);line-height:1.7;direction:rtl;text-align:right;}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;transition:color var(--transition);}
a:hover{color:var(--gold);}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;font-size:1rem;}
ul{list-style:none;}

/* ══ Container ══ */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.25rem;}

/* ══ Typography ══ */
.font-display{font-family:var(--font-display);}
h1{font-size:2.5rem;font-weight:800;line-height:1.2;}
h2{font-size:2rem;font-weight:700;line-height:1.25;}
h3{font-size:1.5rem;font-weight:700;}
h4{font-size:1.25rem;font-weight:700;}
h5{font-size:1.1rem;font-weight:600;}

/* ══ Buttons ══ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 2rem;font-weight:700;border-radius:var(--radius-lg);transition:all var(--transition);border:none;cursor:pointer;font-size:1rem;}
.btn-primary,.btn-accent{background:var(--gold);color:#fff;}
.btn-primary:hover,.btn-accent:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn-dark,.btn-outline-dark{background:var(--dark-brown);color:#fff;}
.btn-dark:hover{background:#3d2820;transform:translateY(-2px);}
.btn-outline{background:transparent;border:2px solid var(--dark-brown);color:var(--dark-brown);}
.btn-outline:hover{background:var(--dark-brown);color:#fff;}
.btn-outline-gold{background:transparent;border:2px solid var(--gold);color:var(--gold);}
.btn-outline-gold:hover{background:var(--gold);color:#fff;}
.btn-lg{padding:1rem 2.5rem;font-size:1.1rem;}
.btn-sm{padding:.5rem 1.25rem;font-size:.875rem;}

/* ══ Reveal Animation ══ */
.rv{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease;}
.rv.in{opacity:1;transform:none;}
.rv.d1{transition-delay:.1s;}
.rv.d2{transition-delay:.2s;}
.rv.d3{transition-delay:.3s;}

/* ══ Toast ══ */
.toast-overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s;}
.toast-overlay.show{opacity:1;pointer-events:all;}
.toast-box{background:#fff;border-radius:var(--radius-xl);padding:2.5rem 2rem;max-width:380px;width:90%;text-align:center;box-shadow:var(--shadow-xl);}
.toast-icon{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;}
.toast-icon.success{background:#dcfce7;color:#16a34a;}
.toast-icon.error{background:#fee2e2;color:#dc2626;}
.toast-box h3{font-size:1.25rem;font-weight:700;margin-bottom:.5rem;}
.toast-box p{color:var(--gray);margin-bottom:1.5rem;}
.toast-close{background:var(--gold);color:#fff;padding:.6rem 2rem;border-radius:var(--radius-md);font-weight:700;font-size:.9rem;width:100%;}

/* ════════════════════════════
   HEADER
════════════════════════════ */
.main-header-wrap{position:sticky;top:0;z-index:1000;background:#fff;box-shadow:var(--shadow-sm);transition:box-shadow var(--transition);}
.main-header-wrap.scrolled{box-shadow:var(--shadow-md);}

.top-bar{background:var(--dark-brown);color:#fff;padding:.45rem 0;font-size:.82rem;}
.top-bar-inner{display:flex;justify-content:space-between;align-items:center;}
.top-bar-link{color:rgba(255,255,255,.85);display:inline-flex;align-items:center;gap:.35rem;transition:color var(--transition);}
.top-bar-link:hover{color:var(--gold);}
.top-bar-sep{color:rgba(255,255,255,.3);margin:0 .5rem;}
.top-bar-offer{color:var(--gold);font-weight:700;}
.top-bar-right{display:flex;align-items:center;gap:.25rem;}

.main-header{padding:.9rem 0;border-bottom:1px solid rgba(78,52,46,.08);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;}

/* Logo */
.logo-wrap{display:flex;align-items:center;flex-shrink:0;}
.logo-img{height:52px;width:auto;object-fit:contain;}
.logo-text{font-family:var(--font-display);font-size:1.75rem;font-weight:800;color:var(--dark-brown);}

/* Search */
.header-search{flex:1;max-width:520px;display:flex;background:var(--light-gray);border:1.5px solid transparent;border-radius:var(--radius-lg);overflow:hidden;transition:border-color var(--transition);}
.header-search:focus-within{border-color:var(--gold);background:#fff;}
.header-search-input{flex:1;padding:.65rem 1rem;background:transparent;border:none;outline:none;font-size:.95rem;color:var(--dark-brown);}
.header-search-btn{padding:.65rem 1rem;background:var(--gold);color:#fff;border-radius:0;transition:background var(--transition);}
.header-search-btn:hover{background:var(--gold-dark);}

/* Actions */
.header-actions{display:flex;align-items:center;gap:.5rem;}
.header-action{display:flex;flex-direction:column;align-items:center;gap:.15rem;padding:.35rem .6rem;border-radius:var(--radius-md);color:var(--dark-brown);transition:all var(--transition);position:relative;}
.header-action:hover{background:var(--beige);color:var(--gold);}
.action-label{font-size:.72rem;font-weight:600;}
.cart-icon-wrap{position:relative;}
.cart-badge{position:absolute;top:-8px;left:-8px;background:var(--gold);color:#fff;font-size:.65rem;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;line-height:1;}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:.5rem;border-radius:var(--radius-sm);}
.hamburger span{display:block;width:22px;height:2px;background:var(--dark-brown);border-radius:2px;transition:all var(--transition);}

/* Nav */
.main-nav{background:var(--light-gray);border-bottom:1px solid rgba(78,52,46,.08);}
.nav-inner{display:flex;align-items:center;}
.nav-list{display:flex;align-items:center;gap:.25rem;}
.nav-list>li{position:relative;}
.nav-list>li>a{display:flex;align-items:center;gap:.3rem;padding:.65rem 1rem;font-weight:600;font-size:.92rem;border-radius:var(--radius-sm);transition:all var(--transition);}
.nav-list>li>a:hover,.nav-list>li>a.active{color:var(--gold);background:rgba(201,169,110,.12);}

/* Dropdown */
.dropdown-menu{position:absolute;top:calc(100% + 4px);right:0;background:#fff;border:1px solid rgba(78,52,46,.1);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);min-width:200px;padding:.5rem;opacity:0;pointer-events:none;transform:translateY(-8px);transition:all var(--transition);z-index:200;}
.has-dropdown:hover .dropdown-menu{opacity:1;pointer-events:all;transform:none;}
.dropdown-menu li a{display:block;padding:.5rem .75rem;font-size:.88rem;border-radius:var(--radius-sm);transition:all var(--transition);}
.dropdown-menu li a:hover{background:var(--beige);color:var(--gold);}
.dropdown-all a{color:var(--gold)!important;font-weight:700;border-top:1px solid rgba(78,52,46,.1);margin-top:.25rem;padding-top:.5rem!important;}

/* ════════════════════════════
   MOBILE SIDEBAR
════════════════════════════ */
.sidebar-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:1500;opacity:0;pointer-events:none;transition:opacity .3s;}
.sidebar-overlay.open{opacity:1;pointer-events:all;}
.mobile-sidebar{position:fixed;top:0;right:-320px;width:300px;height:100vh;background:#fff;z-index:1600;display:flex;flex-direction:column;transition:right .35s cubic-bezier(.4,0,.2,1);box-shadow:var(--shadow-xl);}
.mobile-sidebar.open{right:0;}
.sidebar-head{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;background:var(--dark-brown);color:#fff;}
.sidebar-logo{font-family:var(--font-display);font-size:1.3rem;font-weight:700;color:var(--gold);}
.sidebar-close{color:#fff;font-size:1.25rem;padding:.25rem .5rem;border-radius:4px;}
.sidebar-nav{flex:1;overflow-y:auto;padding:1rem 0;}
.sidebar-nav a{display:flex;align-items:center;gap:.75rem;padding:.75rem 1.5rem;font-weight:600;font-size:.95rem;border-radius:0;transition:all var(--transition);}
.sidebar-nav a:hover,.sidebar-nav a.active{background:var(--beige);color:var(--gold);}
.sidebar-nav .sidebar-sub{padding-right:2.5rem;font-size:.88rem;font-weight:500;color:var(--gray);}
.sidebar-footer{padding:1.25rem 1.5rem;border-top:1px solid rgba(78,52,46,.1);display:flex;flex-direction:column;gap:.75rem;}
.sidebar-btn-primary{background:var(--gold);color:#fff;text-align:center;padding:.7rem;border-radius:var(--radius-md);font-weight:700;}
.sidebar-btn-outline{border:1.5px solid var(--dark-brown);color:var(--dark-brown);text-align:center;padding:.65rem;border-radius:var(--radius-md);font-weight:600;background:none;}

/* ════════════════════════════
   PAGE HEADER
════════════════════════════ */
.page-header{position:relative;background:linear-gradient(135deg,var(--dark-brown) 0%,#3d2820 100%);padding:4rem 0;text-align:center;overflow:hidden;}
.page-header::after{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");pointer-events:none;}
.page-header h1{color:#fff;font-size:2.5rem;margin-bottom:.75rem;position:relative;}
.page-header p{color:rgba(255,255,255,.75);font-size:1.1rem;position:relative;}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:1rem;font-size:.88rem;position:relative;}
.breadcrumb a{color:var(--gold);opacity:.85;}
.breadcrumb a:hover{opacity:1;}
.breadcrumb span{color:rgba(255,255,255,.5);}

/* ════════════════════════════
   SECTION
════════════════════════════ */
.section{padding:5rem 0;}
.section-gray{background:var(--light-gray);}
.section-beige{background:var(--beige);}
.section-dark{background:var(--dark-brown);color:#fff;}
.section-header{text-align:center;margin-bottom:3.5rem;}
.section-title{font-family:var(--font-display);font-size:2.25rem;font-weight:700;color:var(--dark-brown);margin-bottom:.75rem;}
.section-title span{color:var(--gold);}
.section-subtitle{font-size:1.05rem;color:var(--gray);max-width:600px;margin:0 auto;}
.divider{width:60px;height:3px;background:var(--gold);border-radius:2px;margin:.75rem auto 1.25rem;}

/* ════════════════════════════
   HERO (الصفحة الرئيسية)
════════════════════════════ */
.hero-section{background:linear-gradient(135deg,var(--beige) 0%,var(--light-gray) 100%);padding:6rem 0;position:relative;overflow:hidden;}
.hero-section::before{content:'';position:absolute;left:-200px;top:-200px;width:500px;height:500px;background:radial-gradient(circle,rgba(201,169,110,.15) 0%,transparent 70%);pointer-events:none;}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(201,169,110,.15);border:1px solid var(--gold);color:var(--gold);padding:.4rem 1rem;border-radius:50px;font-size:.85rem;font-weight:700;margin-bottom:1.5rem;}
.hero-title{font-family:var(--font-display);font-size:3.5rem;font-weight:800;color:var(--dark-brown);line-height:1.15;margin-bottom:1.25rem;}
.hero-title span{color:var(--gold);}
.hero-subtitle{font-size:1.15rem;color:var(--gray);margin-bottom:2rem;line-height:1.8;}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem;}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;padding-top:2rem;border-top:1px solid rgba(78,52,46,.12);}
.hero-stat-title{font-size:1.75rem;font-weight:800;color:var(--gold);}
.hero-stat-text{font-size:.82rem;color:var(--gray);}
.hero-image-wrap{position:relative;}
.hero-image-wrap img{border-radius:var(--radius-xl);box-shadow:var(--shadow-xl);width:100%;object-fit:cover;aspect-ratio:4/3;}
.hero-image-badge{position:absolute;bottom:1.5rem;right:1.5rem;background:#fff;border-radius:var(--radius-lg);padding:1rem 1.25rem;box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:.75rem;}
.hero-image-badge-icon{width:44px;height:44px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.25rem;}
.hero-image-badge-title{font-weight:700;font-size:.9rem;}
.hero-image-badge-sub{font-size:.78rem;color:var(--gray);}

/* ════════════════════════════
   CATEGORIES GRID
════════════════════════════ */
.category-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:1.25rem;}
.category-card{display:flex;flex-direction:column;align-items:center;gap:.85rem;padding:1.75rem 1rem;background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);transition:all var(--transition);text-align:center;}
.category-card:hover{border-color:var(--gold);transform:translateY(-5px);box-shadow:var(--shadow-lg);background:var(--beige);}
.category-icon{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.85rem;transition:transform var(--transition);}
.category-card:hover .category-icon{transform:scale(1.1);}
.category-name{font-weight:700;font-size:.9rem;color:var(--dark-brown);}

/* ════════════════════════════
   PRODUCTS GRID
════════════════════════════ */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:1.75rem;}
.product-card{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);overflow:hidden;transition:all var(--transition);}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-xl);border-color:rgba(201,169,110,.3);}
.product-img-wrap{position:relative;aspect-ratio:1;overflow:hidden;background:var(--light-gray);}
.product-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.product-card:hover .product-img-wrap img{transform:scale(1.08);}
.discount-badge{position:absolute;top:.85rem;right:.85rem;background:var(--red);color:#fff;padding:.3rem .7rem;border-radius:var(--radius-sm);font-size:.78rem;font-weight:700;}
.product-actions-overlay{position:absolute;top:.85rem;left:.85rem;display:flex;flex-direction:column;gap:.4rem;opacity:0;transition:opacity var(--transition);}
.product-card:hover .product-actions-overlay{opacity:1;}
.wishlist-btn{width:36px;height:36px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.9rem;box-shadow:var(--shadow-sm);transition:all var(--transition);}
.wishlist-btn:hover{background:var(--beige);}
.product-info{padding:1.25rem;}
.product-cat{font-size:.72rem;font-weight:700;color:var(--gold);text-transform:uppercase;letter-spacing:.5px;display:block;margin-bottom:.35rem;}
.product-info h3{font-size:1rem;font-weight:700;margin-bottom:.65rem;color:var(--dark-brown);}
.product-info h3 a{color:inherit;}
.product-info h3 a:hover{color:var(--gold);}
.product-price-row{display:flex;align-items:center;gap:.6rem;margin-bottom:1rem;}
.price{font-size:1.4rem;font-weight:800;color:var(--gold);}
.old-price{font-size:.9rem;color:var(--gray);text-decoration:line-through;}
.add-to-cart-btn{width:100%;background:var(--dark-brown);color:#fff;padding:.7rem;border-radius:var(--radius-md);font-weight:700;display:flex;align-items:center;justify-content:center;gap:.4rem;transition:all var(--transition);}
.add-to-cart-btn:hover{background:#3d2820;transform:translateY(-1px);}

/* ════════════════════════════
   SHOP LAYOUT (صفحة المتجر)
════════════════════════════ */
.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:2.5rem;align-items:start;}
.shop-sidebar{position:sticky;top:calc(var(--nav-h) + 1rem);}
.filter-card{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-lg);padding:1.5rem;margin-bottom:1.25rem;}
.filter-card h3{font-size:1rem;font-weight:700;margin-bottom:1rem;color:var(--dark-brown);padding-bottom:.6rem;border-bottom:1px solid rgba(78,52,46,.08);}
.filter-list li{margin-bottom:.25rem;}
.filter-list a{display:flex;align-items:center;justify-content:space-between;padding:.45rem .65rem;border-radius:var(--radius-sm);font-size:.88rem;transition:all var(--transition);}
.filter-list a:hover,.filter-list a.active{background:var(--beige);color:var(--gold);}
.filter-list .count{font-size:.75rem;background:var(--light-gray);border-radius:50px;padding:.1rem .5rem;}
.price-inputs{display:flex;align-items:center;gap:.5rem;}
.price-input{flex:1;padding:.5rem .65rem;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-sm);font-size:.88rem;text-align:center;}
.price-input:focus{outline:none;border-color:var(--gold);}
.clear-filter{display:block;text-align:center;margin-top:.5rem;font-size:.82rem;color:var(--red);padding:.35rem;}
.shop-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem;padding:.75rem 1rem;background:#fff;border-radius:var(--radius-md);border:1.5px solid rgba(78,52,46,.08);}
.results-count{font-size:.9rem;color:var(--gray);}
.sort-select{padding:.4rem .75rem;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-sm);font-family:inherit;font-size:.88rem;color:var(--dark-brown);background:#fff;}
.sort-select:focus{outline:none;border-color:var(--gold);}
.pagination{margin-top:2.5rem;display:flex;justify-content:center;gap:.5rem;}
.pagination a,.pagination span{padding:.5rem .85rem;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-sm);font-size:.88rem;}
.pagination a:hover{background:var(--beige);}
.pagination .active span{background:var(--gold);color:#fff;border-color:var(--gold);}

/* ════════════════════════════
   PRODUCT DETAIL
════════════════════════════ */
.product-detail-layout{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;}
.product-gallery-main{border-radius:var(--radius-xl);overflow:hidden;background:var(--light-gray);aspect-ratio:1;}
.product-gallery-main img{width:100%;height:100%;object-fit:cover;}
.product-thumbs{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.75rem;}
.product-thumb{width:72px;height:60px;object-fit:cover;border-radius:var(--radius-sm);cursor:pointer;border:2px solid transparent;transition:border-color var(--transition);}
.product-thumb:hover,.product-thumb.active{border-color:var(--gold);}
.product-detail-info .product-category-tag{display:inline-block;background:rgba(201,169,110,.15);color:var(--gold);padding:.3rem .85rem;border-radius:50px;font-size:.8rem;font-weight:700;margin-bottom:.85rem;}
.product-detail-title{font-size:1.85rem;font-weight:800;margin-bottom:.5rem;}
.product-detail-rating{display:flex;align-items:center;gap:.5rem;margin-bottom:1.25rem;}
.stars{color:#f59e0b;font-size:1rem;}
.rating-count{font-size:.85rem;color:var(--gray);}
.product-detail-price{font-size:2.25rem;font-weight:800;color:var(--gold);margin-bottom:.25rem;}
.product-detail-old-price{font-size:1.1rem;text-decoration:line-through;color:var(--gray);margin-bottom:1.5rem;}
.product-detail-desc{color:var(--gray);line-height:1.85;margin-bottom:1.75rem;font-size:.97rem;}
.product-detail-stock{display:inline-flex;align-items:center;gap:.4rem;font-size:.88rem;font-weight:700;padding:.35rem .85rem;border-radius:50px;margin-bottom:1.5rem;}
.stock-available{background:#dcfce7;color:#15803d;}
.stock-unavailable{background:#fee2e2;color:#dc2626;}
.product-qty-wrap{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;}
.qty-label{font-weight:600;font-size:.9rem;}
.qty-control{display:flex;align-items:center;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-md);overflow:hidden;}
.qty-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:var(--light-gray);font-size:1.1rem;transition:background var(--transition);}
.qty-btn:hover{background:var(--beige);}
.qty-val{width:44px;text-align:center;font-weight:700;}
.product-detail-actions{display:flex;gap:.85rem;flex-wrap:wrap;margin-bottom:2rem;}
.btn-add-cart{flex:1;background:var(--gold);color:#fff;padding:.9rem;border-radius:var(--radius-lg);font-weight:700;font-size:1rem;}
.btn-add-cart:hover{background:var(--gold-dark);}
.btn-buy-now{background:var(--dark-brown);color:#fff;padding:.9rem 1.5rem;border-radius:var(--radius-lg);font-weight:700;}
.btn-wishlist{width:46px;height:46px;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;transition:all var(--transition);}
.btn-wishlist:hover,.btn-wishlist.active{border-color:var(--red);color:var(--red);}
.product-specs{border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-lg);overflow:hidden;}
.spec-row{display:flex;justify-content:space-between;padding:.65rem 1rem;font-size:.9rem;border-bottom:1px solid rgba(78,52,46,.06);}
.spec-row:last-child{border-bottom:none;}
.spec-row:nth-child(even){background:var(--light-gray);}
.spec-key{font-weight:600;color:var(--dark-brown);}
.spec-val{color:var(--gray);}

/* Tabs */
.product-tabs{margin-top:3rem;}
.tabs-nav{display:flex;border-bottom:2px solid rgba(78,52,46,.1);margin-bottom:2rem;}
.tab-btn{padding:.7rem 1.5rem;font-weight:700;font-size:.92rem;color:var(--gray);border-bottom:2px solid transparent;margin-bottom:-2px;transition:all var(--transition);}
.tab-btn.active{color:var(--gold);border-bottom-color:var(--gold);}
.tab-panel{display:none;}
.tab-panel.active{display:block;}

/* Reviews */
.review-card{border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-lg);padding:1.25rem;margin-bottom:1rem;}
.review-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:.65rem;}
.reviewer-name{font-weight:700;}
.review-date{font-size:.8rem;color:var(--gray);}
.review-body{color:var(--gray);font-size:.93rem;line-height:1.8;}

/* ════════════════════════════
   CART
════════════════════════════ */
.cart-layout{display:grid;grid-template-columns:1fr 380px;gap:2.5rem;align-items:start;}
.cart-item{display:flex;align-items:center;gap:1.25rem;padding:1.25rem;background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-lg);margin-bottom:1rem;}
.cart-item-img{width:80px;height:80px;object-fit:cover;border-radius:var(--radius-md);flex-shrink:0;}
.cart-item-info{flex:1;}
.cart-item-info h3{font-size:.97rem;font-weight:700;margin-bottom:.25rem;}
.cart-item-price{font-size:.88rem;color:var(--gray);}
.cart-item-qty{display:flex;align-items:center;gap:.5rem;}
.cart-item-qty button{width:30px;height:30px;background:var(--light-gray);border-radius:var(--radius-sm);font-size:1rem;transition:background var(--transition);}
.cart-item-qty button:hover{background:var(--beige);}
.cart-item-qty span{width:36px;text-align:center;font-weight:700;}
.cart-item-total{font-size:1.1rem;font-weight:800;color:var(--gold);min-width:90px;text-align:left;}
.remove-btn{color:var(--gray);font-size:.85rem;padding:.3rem .5rem;border-radius:var(--radius-sm);transition:all var(--transition);}
.remove-btn:hover{color:var(--red);background:#fee2e2;}
.cart-summary{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);padding:1.75rem;position:sticky;top:calc(var(--nav-h) + 1rem);}
.cart-summary h3{font-size:1.15rem;font-weight:700;margin-bottom:1.25rem;padding-bottom:.85rem;border-bottom:1px solid rgba(78,52,46,.08);}
.coupon-section{margin-bottom:1.25rem;}
.coupon-form{display:flex;gap:.5rem;}
.coupon-form input{flex:1;padding:.55rem .85rem;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-md);font-size:.88rem;}
.coupon-form input:focus{outline:none;border-color:var(--gold);}
.coupon-form button{background:var(--dark-brown);color:#fff;padding:.55rem 1rem;border-radius:var(--radius-md);font-weight:700;font-size:.85rem;}
.coupon-applied{background:#dcfce7;border-radius:var(--radius-md);padding:.65rem 1rem;display:flex;justify-content:space-between;align-items:center;font-size:.88rem;}
.coupon-applied span{color:#15803d;font-weight:700;}
.coupon-applied button{color:var(--red);font-size:.82rem;}
.summary-rows{margin-bottom:1.5rem;}
.summary-row{display:flex;justify-content:space-between;padding:.5rem 0;font-size:.92rem;border-bottom:1px solid rgba(78,52,46,.05);}
.discount-row{color:#15803d;}
.total-row{font-size:1.1rem;font-weight:800;color:var(--dark-brown);border-bottom:none;padding-top:.85rem;margin-top:.5rem;border-top:2px solid rgba(78,52,46,.1);}
.checkout-btn{width:100%;margin-bottom:.85rem;font-size:1rem;padding:.9rem;}
.continue-shopping{display:block;text-align:center;font-size:.88rem;color:var(--gray);padding:.5rem;}
.continue-shopping:hover{color:var(--gold);}

/* ════════════════════════════
   CHECKOUT
════════════════════════════ */
.checkout-layout{display:grid;grid-template-columns:1fr 400px;gap:2.5rem;align-items:start;}
.saved-addresses{margin-bottom:2rem;}
.saved-addresses h3{font-size:1rem;font-weight:700;margin-bottom:1rem;}
.addresses-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:.85rem;}
.address-card{border:1.5px solid rgba(78,52,46,.12);border-radius:var(--radius-lg);padding:1rem;cursor:pointer;transition:all var(--transition);}
.address-card:hover,.address-card.selected{border-color:var(--gold);background:rgba(201,169,110,.06);}
.address-card strong{font-size:.85rem;color:var(--gold);}
.address-card p{font-size:.82rem;color:var(--gray);margin:.35rem 0;}
.address-card small{font-size:.78rem;color:var(--gray);}
.checkout-form-section h3{font-size:1.15rem;font-weight:700;margin:1.5rem 0 1rem;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem;}
.form-group label{display:block;font-size:.88rem;font-weight:600;margin-bottom:.4rem;}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.65rem .9rem;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-md);font-size:.92rem;transition:border-color var(--transition);}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--gold);}
.payment-methods-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.85rem;margin-bottom:1.5rem;}
.payment-option input{display:none;}
.payment-card{border:1.5px solid rgba(78,52,46,.12);border-radius:var(--radius-lg);padding:1rem;text-align:center;cursor:pointer;transition:all var(--transition);}
.payment-option input:checked+.payment-card{border-color:var(--gold);background:rgba(201,169,110,.08);}
.payment-icon{display:block;font-size:1.75rem;margin-bottom:.4rem;}
.payment-card span:last-child{font-size:.85rem;font-weight:600;}
.checkout-summary{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);padding:1.75rem;position:sticky;top:calc(var(--nav-h) + 1rem);}
.checkout-summary h3{font-size:1.1rem;font-weight:700;margin-bottom:1.25rem;padding-bottom:.85rem;border-bottom:1px solid rgba(78,52,46,.08);}
.order-items-list{margin-bottom:1.25rem;max-height:250px;overflow-y:auto;}
.order-item-row{display:flex;align-items:center;gap:.75rem;padding:.5rem 0;border-bottom:1px solid rgba(78,52,46,.06);}
.order-item-thumb{width:44px;height:44px;object-fit:cover;border-radius:var(--radius-sm);}
.order-item-row>div:nth-child(2){flex:1;font-size:.85rem;}
.order-item-row>div:nth-child(2) small{display:block;color:var(--gray);}
.order-item-row>div:last-child{font-weight:700;font-size:.88rem;white-space:nowrap;}
.checkout-note{font-size:.78rem;color:var(--gray);text-align:center;margin-top:.75rem;}
.checkout-note a{color:var(--gold);}

/* ════════════════════════════
   ORDERS
════════════════════════════ */
.orders-layout{max-width:900px;margin:0 auto;}
.order-card{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);padding:1.5rem;margin-bottom:1.25rem;transition:box-shadow var(--transition);}
.order-card:hover{box-shadow:var(--shadow-md);}
.order-card-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;flex-wrap:wrap;gap:.75rem;}
.order-number{font-weight:800;font-size:1rem;color:var(--dark-brown);}
.order-date{font-size:.82rem;color:var(--gray);}
.order-status{padding:.3rem .85rem;border-radius:50px;font-size:.8rem;font-weight:700;}
.status-pending{background:#fef3c7;color:#92400e;}
.status-confirmed{background:#dbeafe;color:#1e40af;}
.status-processing{background:#ede9fe;color:#5b21b6;}
.status-shipped{background:#dbeafe;color:#1e40af;}
.status-delivered{background:#dcfce7;color:#15803d;}
.status-cancelled{background:#fee2e2;color:#dc2626;}
.order-card-items{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem;}
.order-item-mini{display:flex;align-items:center;gap:.5rem;background:var(--light-gray);border-radius:var(--radius-sm);padding:.35rem .6rem;font-size:.82rem;}
.order-item-mini img{width:32px;height:32px;object-fit:cover;border-radius:4px;}
.order-card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:1rem;border-top:1px solid rgba(78,52,46,.08);}
.order-total-label{font-size:.88rem;color:var(--gray);}
.order-total-val{font-size:1.2rem;font-weight:800;color:var(--gold);}
.order-actions{display:flex;gap:.65rem;}
.btn-order-detail{background:var(--gold);color:#fff;padding:.45rem 1rem;border-radius:var(--radius-md);font-size:.85rem;font-weight:700;}
.btn-cancel-order{border:1.5px solid var(--red);color:var(--red);padding:.43rem 1rem;border-radius:var(--radius-md);font-size:.85rem;font-weight:600;}

/* ════════════════════════════
   ACCOUNT
════════════════════════════ */
.account-layout{display:grid;grid-template-columns:260px 1fr;gap:2.5rem;align-items:start;}
.account-sidebar{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);overflow:hidden;position:sticky;top:calc(var(--nav-h) + 1rem);}
.account-sidebar-header{background:var(--dark-brown);color:#fff;padding:1.5rem;text-align:center;}
.account-avatar{width:64px;height:64px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.75rem;font-weight:800;color:#fff;margin:0 auto .75rem;}
.account-name{font-weight:700;}
.account-email{font-size:.8rem;opacity:.75;}
.account-nav a{display:flex;align-items:center;gap:.75rem;padding:.85rem 1.25rem;font-size:.92rem;font-weight:600;border-bottom:1px solid rgba(78,52,46,.06);transition:all var(--transition);}
.account-nav a:hover,.account-nav a.active{background:var(--beige);color:var(--gold);}
.account-content{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);padding:2rem;}
.account-content h2{font-size:1.3rem;font-weight:700;margin-bottom:1.5rem;padding-bottom:.85rem;border-bottom:1px solid rgba(78,52,46,.08);}

/* ════════════════════════════
   AUTH PAGES
════════════════════════════ */
.auth-section{min-height:calc(100vh - var(--nav-h));display:flex;align-items:center;justify-content:center;padding:3rem 1rem;background:linear-gradient(135deg,var(--beige) 0%,var(--light-gray) 100%);}
.auth-card{background:#fff;border-radius:var(--radius-xl);box-shadow:var(--shadow-xl);padding:2.5rem;width:100%;max-width:460px;}
.auth-logo{text-align:center;margin-bottom:1.75rem;}
.auth-logo span{font-family:var(--font-display);font-size:2rem;font-weight:800;color:var(--dark-brown);}
.auth-title{text-align:center;font-size:1.5rem;font-weight:800;margin-bottom:.5rem;}
.auth-subtitle{text-align:center;color:var(--gray);font-size:.9rem;margin-bottom:2rem;}
.auth-form .form-group{margin-bottom:1.1rem;}
.auth-form .form-group label{font-size:.88rem;font-weight:600;display:block;margin-bottom:.4rem;}
.auth-form .form-group input{width:100%;padding:.7rem 1rem;border:1.5px solid rgba(78,52,46,.15);border-radius:var(--radius-md);font-size:.95rem;}
.auth-form .form-group input:focus{outline:none;border-color:var(--gold);}
.auth-btn{width:100%;background:var(--gold);color:#fff;padding:.85rem;border-radius:var(--radius-lg);font-weight:800;font-size:1rem;margin-top:.5rem;}
.auth-btn:hover{background:var(--gold-dark);}
.auth-divider{text-align:center;margin:1.25rem 0;color:var(--gray);font-size:.85rem;position:relative;}
.auth-divider::before,.auth-divider::after{content:'';position:absolute;top:50%;width:40%;height:1px;background:rgba(78,52,46,.12);}
.auth-divider::before{right:0;}
.auth-divider::after{left:0;}
.auth-link{text-align:center;margin-top:1.25rem;font-size:.88rem;color:var(--gray);}
.auth-link a{color:var(--gold);font-weight:700;}
.auth-error{background:#fee2e2;color:#dc2626;padding:.65rem 1rem;border-radius:var(--radius-md);font-size:.88rem;margin-bottom:1rem;}
.auth-success{background:#dcfce7;color:#15803d;padding:.65rem 1rem;border-radius:var(--radius-md);font-size:.88rem;margin-bottom:1rem;}

/* ════════════════════════════
   WHOLESALE PAGE
════════════════════════════ */
.wholesale-section-dark{background:linear-gradient(135deg,var(--dark-brown) 0%,#3d2820 100%);padding:5rem 0;color:#fff;}
.wholesale-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.wholesale-title{font-family:var(--font-display);font-size:2.75rem;font-weight:800;margin-bottom:1.25rem;}
.wholesale-title span{color:var(--gold);}
.wholesale-subtitle{font-size:1.05rem;opacity:.9;margin-bottom:2rem;line-height:1.8;}
.wholesale-features{display:flex;flex-direction:column;gap:1.25rem;margin-bottom:2.5rem;}
.wholesale-feature{display:flex;align-items:flex-start;gap:1rem;}
.wholesale-feature-icon{width:52px;height:52px;background:var(--gold);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0;}
.wholesale-feature-title{font-size:1.05rem;font-weight:700;margin-bottom:.25rem;}
.wholesale-feature-text{font-size:.9rem;opacity:.85;}
.wholesale-pricing-card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-2xl, 24px);padding:2rem;}
.pricing-tier{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;background:rgba(255,255,255,.08);border-radius:var(--radius-md);margin-bottom:.75rem;}
.pricing-tier:last-child{margin-bottom:0;}
.pricing-tier-label{font-size:.92rem;opacity:.9;}
.pricing-tier-discount{font-size:1.2rem;font-weight:800;color:var(--gold);}
.wholesale-form-card{background:#fff;border-radius:var(--radius-xl);padding:2.5rem;max-width:700px;margin:3rem auto 0;}
.wholesale-form-card h3{font-size:1.5rem;font-weight:800;color:var(--dark-brown);margin-bottom:.5rem;}
.wholesale-form-card p{color:var(--gray);margin-bottom:2rem;}

/* ════════════════════════════
   BLOG
════════════════════════════ */
.blog-layout{display:grid;grid-template-columns:1fr 320px;gap:2.5rem;align-items:start;}
.blog-grid-main{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.75rem;}
.blog-card{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);overflow:hidden;transition:all var(--transition);}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.blog-card a{display:block;color:inherit;}
.blog-img-wrap{aspect-ratio:16/9;overflow:hidden;background:var(--light-gray);position:relative;}
.blog-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.blog-card:hover .blog-img-wrap img{transform:scale(1.05);}
.blog-tag-pill{position:absolute;top:.75rem;right:.75rem;background:var(--gold);color:#fff;padding:.25rem .7rem;border-radius:50px;font-size:.75rem;font-weight:700;}
.blog-content{padding:1.25rem;}
.blog-meta-row{display:flex;align-items:center;gap:.75rem;margin-bottom:.65rem;font-size:.8rem;color:var(--gray);}
.blog-card h3{font-size:1.05rem;font-weight:700;margin-bottom:.65rem;line-height:1.5;}
.blog-excerpt{font-size:.88rem;color:var(--gray);line-height:1.7;margin-bottom:.75rem;}
.blog-read-more{font-size:.85rem;font-weight:700;color:var(--gold);}

/* Blog Sidebar */
.blog-sidebar-card{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-lg);padding:1.5rem;margin-bottom:1.25rem;}
.blog-sidebar-card h4{font-size:1rem;font-weight:700;margin-bottom:1rem;padding-bottom:.65rem;border-bottom:1px solid rgba(78,52,46,.08);}
.popular-post-item{display:flex;gap:.75rem;padding:.6rem 0;border-bottom:1px solid rgba(78,52,46,.05);}
.popular-post-item:last-child{border-bottom:none;}
.popular-post-img{width:60px;height:50px;object-fit:cover;border-radius:var(--radius-sm);flex-shrink:0;}
.popular-post-title{font-size:.85rem;font-weight:600;line-height:1.4;margin-bottom:.2rem;}
.popular-post-date{font-size:.75rem;color:var(--gray);}
.tags-cloud{display:flex;flex-wrap:wrap;gap:.4rem;}
.tag-pill{background:var(--light-gray);padding:.3rem .7rem;border-radius:50px;font-size:.78rem;font-weight:600;transition:all var(--transition);}
.tag-pill:hover{background:var(--beige);color:var(--gold);}

/* Blog Post */
.post-layout{display:grid;grid-template-columns:1fr 300px;gap:2.5rem;}
.post-featured-img{border-radius:var(--radius-xl);overflow:hidden;margin-bottom:2rem;}
.post-featured-img img{width:100%;height:auto;}
.post-meta{display:flex;align-items:center;gap:1.25rem;margin-bottom:1.75rem;flex-wrap:wrap;}
.post-meta-item{display:flex;align-items:center;gap:.4rem;font-size:.85rem;color:var(--gray);}
.post-body{color:var(--dark-brown);line-height:2;font-size:1.02rem;}
.post-body h2,.post-body h3{margin:1.75rem 0 1rem;color:var(--dark-brown);}
.post-body p{margin-bottom:1.25rem;}
.post-body img{border-radius:var(--radius-lg);margin:1.5rem 0;}
.post-body ul,.post-body ol{padding-right:1.5rem;margin-bottom:1.25rem;}
.post-body li{margin-bottom:.5rem;}
.post-tags{margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(78,52,46,.1);display:flex;align-items:center;flex-wrap:wrap;gap:.5rem;}
.post-share{margin-top:1.5rem;display:flex;align-items:center;gap:.75rem;}
.share-btn{width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.85rem;}
.share-wa{background:#25D366;color:#fff;}
.share-tw{background:#000;color:#fff;}

/* ════════════════════════════
   WISHLIST
════════════════════════════ */
.wishlist-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1.5rem;}
.wishlist-card{background:#fff;border:1.5px solid rgba(78,52,46,.08);border-radius:var(--radius-xl);overflow:hidden;transition:all var(--transition);}
.wishlist-card:hover{box-shadow:var(--shadow-lg);}
.wishlist-card-img{aspect-ratio:1;overflow:hidden;background:var(--light-gray);}
.wishlist-card-img img{width:100%;height:100%;object-fit:cover;}
.wishlist-card-info{padding:1rem;}
.wishlist-card-info h3{font-size:.97rem;font-weight:700;margin-bottom:.5rem;}
.wishlist-card-actions{display:flex;gap:.5rem;margin-top:.75rem;}
.btn-wishlist-cart{flex:1;background:var(--gold);color:#fff;padding:.55rem;border-radius:var(--radius-md);font-size:.85rem;font-weight:700;}
.btn-wishlist-remove{border:1.5px solid var(--red);color:var(--red);padding:.53rem .75rem;border-radius:var(--radius-md);font-size:.85rem;}

/* ════════════════════════════
   EMPTY STATE
════════════════════════════ */
.empty-state{text-align:center;padding:5rem 1rem;}
.empty-state h3{font-size:1.5rem;font-weight:700;margin-bottom:.75rem;}
.empty-state p{color:var(--gray);margin-bottom:1.5rem;}

/* ════════════════════════════
   FLOATING BUTTONS
════════════════════════════ */
.floating-btns{position:fixed;bottom:2rem;left:2rem;z-index:999;display:flex;flex-direction:column;gap:.65rem;}
.float-btn{width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-lg);transition:all var(--transition);}
.whatsapp-btn{background:#25D366;color:#fff;animation:pulse-wa 2.5s infinite;}
.whatsapp-btn:hover{background:#22c55e;transform:scale(1.1);}
.phone-btn{background:var(--gold);color:#fff;}
.phone-btn:hover{background:var(--gold-dark);transform:scale(1.1);}
.scroll-top-btn{background:var(--dark-brown);color:#fff;}
.scroll-top-btn:hover{background:#3d2820;transform:scale(1.1);}
@keyframes pulse-wa{0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.6);}50%{box-shadow:0 0 0 14px rgba(37,211,102,0);}}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.site-footer{background:var(--dark-brown);color:#fff;}
.footer-top{padding:4rem 0 2rem;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:3rem;margin-bottom:3rem;}
.footer-logo{margin-bottom:1rem;}
.footer-logo img{height:52px;width:auto;}
.footer-logo-text{font-family:var(--font-display);font-size:1.75rem;font-weight:800;color:var(--gold);}
.footer-about p{font-size:.9rem;opacity:.85;line-height:1.8;margin-bottom:1.25rem;}
.footer-social{display:flex;gap:.65rem;}
.social-link{width:38px;height:38px;background:rgba(255,255,255,.1);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;transition:all var(--transition);}
.social-link:hover{background:var(--gold);transform:translateY(-2px);}
.footer-col-title{font-size:1rem;font-weight:700;color:var(--gold);margin-bottom:1.25rem;}
.footer-links li{margin-bottom:.5rem;}
.footer-links a{font-size:.88rem;opacity:.85;display:flex;align-items:center;gap:.4rem;transition:all var(--transition);}
.footer-links a:hover{opacity:1;color:var(--gold);padding-right:.25rem;}
.footer-contact-list{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.5rem;}
.footer-contact-item{display:flex;align-items:flex-start;gap:.65rem;font-size:.88rem;opacity:.85;}
.footer-contact-item svg{flex-shrink:0;margin-top:2px;color:var(--gold);}
.footer-contact-item a:hover{color:var(--gold);}
.footer-payment-title{font-size:.88rem;font-weight:700;color:var(--gold);margin-bottom:.75rem;}
.footer-payment-methods{display:flex;flex-wrap:wrap;gap:.5rem;}
.payment-badge{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);padding:.3rem .75rem;border-radius:var(--radius-sm);font-size:.75rem;font-weight:700;}
.footer-newsletter{background:rgba(255,255,255,.07);border-radius:var(--radius-xl);padding:2.5rem;display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;margin-top:1rem;}
.footer-newsletter h4{font-size:1.2rem;font-weight:700;color:var(--gold);margin-bottom:.5rem;}
.footer-newsletter p{font-size:.88rem;opacity:.85;}
.newsletter-form{display:flex;gap:.5rem;}
.newsletter-input{flex:1;padding:.7rem 1rem;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-md);color:#fff;font-family:inherit;font-size:.9rem;}
.newsletter-input::placeholder{color:rgba(255,255,255,.5);}
.newsletter-input:focus{outline:none;border-color:var(--gold);}
.newsletter-btn{background:var(--gold);color:#fff;padding:.7rem 1.25rem;border-radius:var(--radius-md);font-weight:700;white-space:nowrap;}
.newsletter-btn:hover{background:var(--gold-dark);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0;}
.footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.75rem;font-size:.82rem;opacity:.7;}
.footer-bottom-links{display:flex;gap:1.5rem;}
.footer-bottom-links a:hover{color:var(--gold);opacity:1;}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media(max-width:1024px){
    .shop-layout{grid-template-columns:220px 1fr;}
    .cart-layout{grid-template-columns:1fr;}
    .cart-summary{position:static;}
    .checkout-layout{grid-template-columns:1fr;}
    .checkout-summary{position:static;}
    .account-layout{grid-template-columns:1fr;}
    .blog-layout{grid-template-columns:1fr;}
    .post-layout{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .wholesale-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
    :root{--nav-h:120px;}
    h1{font-size:1.85rem;}
    h2{font-size:1.5rem;}
    .hero-grid{grid-template-columns:1fr;}
    .hero-title{font-size:2.25rem;}
    .hero-image-wrap{display:none;}
    .hero-stats{grid-template-columns:repeat(3,1fr);gap:1rem;}
    .hero-stat-title{font-size:1.3rem;}
    .header-search{display:none;}
    .main-nav{display:none;}
    .hamburger{display:flex;}
    .action-label{display:none;}
    .shop-layout{grid-template-columns:1fr;}
    .shop-sidebar{position:static;}
    .product-detail-layout{grid-template-columns:1fr;}
    .products-grid{grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:1rem;}
    .category-grid{grid-template-columns:repeat(auto-fill,minmax(110px,1fr));}
    .form-grid{grid-template-columns:1fr;}
    .payment-methods-grid{grid-template-columns:1fr 1fr;}
    .checkout-layout{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .footer-newsletter{grid-template-columns:1fr;}
    .footer-bottom-inner{flex-direction:column;text-align:center;}
    .newsletter-form{flex-direction:column;}
    .section{padding:3rem 0;}
    .blog-grid-main{grid-template-columns:1fr;}
    .wholesale-pricing-card{margin-top:2rem;}
}
@media(max-width:480px){
    .cart-item{flex-wrap:wrap;}
    .cart-layout{grid-template-columns:1fr;}
    .addresses-grid{grid-template-columns:1fr;}
    .top-bar-right{flex-direction:column;align-items:flex-start;gap:.15rem;}
    .top-bar-sep{display:none;}
}
