/* ════════════════════════════════════════════════
     متجر العضيبي — ثيم Luxe (لافندر + ذهبي)
     ════════════════════════════════════════════════ */
  

  /* ════════════════════════════════════════════════
       ⚠️ إصلاح جذري: هذه المتغيرات كانت مثبَّتة هنا على قيم
       ثيم luxury دائماً، مما كان يُلغي فعلياً أي ثيم آخر يختاره
       الأدمن من لوحة التحكم (default/purple كانا يبدوان luxury
       تماماً بغض النظر عن التبديل). الآن تأتي من :root التي
       يحقنها ThemeManager::cssVariablesString() ديناميكياً حسب
       الثيم النشط + أي تخصيص محفوظ من لوحة التحكم.
       القيم أدناه fallback فقط (تُستخدم لو تعطّل حقن :root). ═══ */
  .luxe {
    font-family:var(--font-primary,'Tajawal'),system-ui,sans-serif;
    color:var(--text-h,#1F1A28); background:var(--bg-page,#FFFFFF);
    direction:inherit; -webkit-font-smoothing:antialiased; letter-spacing:-0.01em;
  }
  *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
  .luxe a{text-decoration:none;color:inherit}
  .luxe button{font-family:inherit;cursor:pointer}
  .luxe .display{font-family:var(--font-display,'Cormorant Garamond'),'Tajawal',serif;letter-spacing:0.02em}
  .luxe .container{max-width:var(--luxe-container-max-w,1320px);margin:0 auto;padding:0 var(--luxe-container-pad-x,32px)}
  @media(max-width:768px){.luxe .container{padding:0 var(--luxe-container-pad-x-mob,16px)}}

  /* Header desktop */
  .luxe .top-strip{background:var(--brand-primary-dark);color:rgba(255,255,255,0.85);font-size:12px;padding:8px 0}
  .luxe .top-strip .row{display:flex;justify-content:space-between;align-items:center;gap:20px}
  .luxe .top-strip .left,.luxe .top-strip .right{display:flex;gap:18px;align-items:center}
  .luxe .top-strip .promo{color:var(--brand-gold-light);font-weight:600;display:flex;align-items:center;gap:5px}
  .luxe .header-main{background:var(--bg-card);border-bottom:1px solid var(--border)}
  .luxe .header-main .row{display:flex;align-items:center;gap:32px;padding:20px 0}
  .luxe .brand-logo{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;color:var(--brand-primary);letter-spacing:0.05em;flex-shrink:0;text-decoration:none}
  .luxe .search-box{flex:1;display:flex;align-items:center;gap:10px;background:var(--bg-soft);border:1px solid var(--border);border-radius:var(--r-sm);padding:12px 18px}
  .luxe .search-box input{flex:1;border:0;background:transparent;outline:none;font-size:14px;color:var(--text-h);font-family:inherit;text-align:start}
  /* ⭐ جديد — تلميح متحرك فوق حقل البحث (نسخة الموبايل) — نفس آلية
     header-desktop.blade.php بالضبط، بأسماء أصناف مشتركة (lxhd-search-*)
     حتى يعمل نفس سكربت window.initSearchHintRotation على كلا النسختين. */
  .luxe .search-box .lxhd-search-wrap{position:relative;flex:1;min-width:0;height:18px}
  .luxe .search-box .lxhd-search-wrap input{position:absolute;inset:0;width:100%;height:100%}
  .luxe .search-box .lxhd-search-hint{position:absolute;inset:0;display:flex;align-items:center;gap:5px;overflow:hidden;pointer-events:none;z-index:1}
  .luxe .search-box .lxhd-hint-prefix{display:block;white-space:nowrap;color:var(--text-m);flex-shrink:0;font-size:14px;font-family:inherit}
  .luxe .search-box .lxhd-hint-clip{position:relative;flex:1;min-width:0;height:17px;overflow:hidden}
  .luxe .search-box .lxhd-hint-text{position:absolute;inset:0;display:flex;align-items:center;white-space:nowrap;color:var(--text-m);font-size:14px;font-family:inherit;transition:transform .32s cubic-bezier(.4,0,.2,1),opacity .32s ease;transform:translateY(0);opacity:1}
  .luxe .search-box .lxhd-hint-text.lxhd-hint-out{transform:translateY(-12px);opacity:0}
  .luxe .search-box .lxhd-hint-text.lxhd-hint-in{transform:translateY(12px);opacity:0}
  .luxe .search-box button{background:var(--brand-primary);color:#fff;border:0;padding:8px 18px;border-radius:var(--r-sm);font-size:12.5px;font-weight:700}
  .luxe .header-icons{display:flex;gap:6px;align-items:center}
  .luxe .icon-btn{background:none;border:0;padding:8px 12px;display:flex;flex-direction:column;align-items:center;gap:2px;color:var(--text-h);position:relative;text-decoration:none}
  .luxe .icon-btn .label{font-size:11px;font-weight:500}
  .luxe .icon-btn .badge{position:absolute;top:2px;inset-inline-start:2px;min-width:18px;height:18px;padding:0 5px;border-radius:var(--r-full);background:var(--brand-gold);color:var(--brand-primary-dark);font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center}
  .luxe .meganav{border-top:1px solid var(--border)}
  .luxe .meganav .row{display:flex;align-items:center;gap:4px}
  .luxe .meganav a{padding:14px 18px;font-size:13.5px;font-weight:500;color:var(--text-b);border-bottom:2px solid transparent;text-decoration:none}
  .luxe .meganav a.active{font-weight:700;color:var(--brand-primary);border-bottom-color:var(--brand-primary)}

  /* Mobile header */
  .luxe .m-header{position:sticky;top:0;z-index:10;background:var(--bg-page);padding:14px 16px 10px;border-bottom:1px solid var(--border)}
  .luxe .m-header .row1{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
  .luxe .m-header .icon-square{width:36px;height:36px;border-radius:var(--r-sm);background:var(--bg-card);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;position:relative;text-decoration:none}
  .luxe .m-header .icon-square .badge{position:absolute;top:-4px;left:-4px;min-width:18px;height:18px;padding:0 5px;border-radius:var(--r-full);background:var(--brand-gold);color:var(--brand-primary-dark);font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;border:2px solid var(--bg-page)}
  .luxe .m-header .brand-logo{font-size:22px}
  .luxe .m-header .search-box{background:var(--bg-card);padding:10px 14px}
  .luxe .m-header .search-box button{display:none}

  /* Mobile bottom nav */
  .luxe .m-bottom-nav{position:fixed;bottom:0;left:0;right:0;background:var(--bg-card);border-top:1px solid var(--border);padding:10px 0 14px;display:flex;justify-content:space-around;box-shadow:0 -4px 16px rgba(31,26,40,0.06);z-index:50}
  .luxe .m-bottom-nav a{display:flex;flex-direction:column;align-items:center;gap:3px;color:var(--text-m);font-size:10px;font-weight:500;text-decoration:none}
  .luxe .m-bottom-nav a.active{color:var(--brand-primary);font-weight:700}

  /* Footer */
  .luxe .site-footer{background:var(--brand-primary-dark);color:rgba(255,255,255,0.78);padding:56px 0 28px;margin-top:80px}
  .luxe .site-footer .grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
  @media(max-width:968px){.luxe .site-footer .grid{grid-template-columns:1fr 1fr;gap:28px}}
  @media(max-width:540px){.luxe .site-footer .grid{grid-template-columns:1fr}}
  .luxe .site-footer .brand{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:600;color:var(--brand-gold);margin-bottom:14px;letter-spacing:0.05em}
  .luxe .site-footer p{font-size:13px;line-height:1.7;color:rgba(255,255,255,0.65)}
  .luxe .site-footer h4{font-size:13px;font-weight:700;color:#fff;margin-bottom:14px;letter-spacing:0.05em}
  .luxe .site-footer ul{list-style:none}
  .luxe .site-footer li{font-size:12.5px;margin-bottom:10px;line-height:1.5}
  .luxe .site-footer a{color:rgba(255,255,255,0.7);text-decoration:none}
  .luxe .site-footer .copy{border-top:1px solid rgba(255,255,255,0.08);padding-top:20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;font-size:11.5px;color:rgba(255,255,255,0.55)}
  .luxe .site-footer .pay{display:flex;gap:10px;flex-wrap:wrap}
  .luxe .site-footer .pay span{padding:5px 10px;background:rgba(255,255,255,0.06);border-radius:6px;font-size:10.5px;font-weight:600;color:rgba(255,255,255,0.75)}
  .luxe .socials{display:flex;gap:20px;margin-top:8px}
  .luxe .socials span{width:34px;height:34px;border-radius:var(--r-sm);background:rgba(255,255,255,0.08);border:1px solid rgba(48,216,163,0.2);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:var(--brand-gold-light)}

  /* Hero */
  .luxe .hero{position:relative;border-radius:var(--r-xl);padding:64px;background:linear-gradient(120deg,var(--brand-primary-dark) 0%,var(--brand-primary) 60%,var(--brand-primary-soft) 100%);color:#fff;overflow:hidden;box-shadow:0 20px 50px rgba(93,74,126,0.25);display:grid;grid-template-columns:1.1fr 1fr;gap:40px;align-items:center}
  .luxe .hero h1{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:600;line-height:1.15;margin-bottom:16px}
  .luxe .hero p{font-size:16px;color:rgba(255,255,255,0.78);line-height:1.7;margin-bottom:28px;max-width:440px}
  .luxe .hero .badge{display:inline-block;font-size:11px;padding:6px 14px;background:rgba(48,216,163,0.2);color:var(--brand-gold-light);border-radius:var(--r-full);letter-spacing:0.14em;font-weight:700;margin-bottom:18px;border:1px solid rgba(48,216,163,0.35)}
  .luxe .hero .btn-gold{display:inline-flex;align-items:center;gap:8px;background:var(--brand-gold);color:var(--brand-primary-dark);border:0;padding:14px 28px;border-radius:var(--r-full);font-size:14px;font-weight:700;box-shadow:0 6px 18px rgba(48,216,163,0.35);text-decoration:none}
  .luxe .hero .btn-ghost{display:inline-flex;align-items:center;gap:8px;background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,0.4);padding:14px 28px;border-radius:var(--r-full);font-size:14px;font-weight:600;margin-inline-end:12px;text-decoration:none}
  .luxe .hero .visual{position:relative;height:380px;border-radius:var(--r-lg);background:linear-gradient(135deg,rgba(232,212,168,0.2),rgba(48,216,163,0.3));display:flex;align-items:center;justify-content:center}
  @media(max-width:968px){.luxe .hero{grid-template-columns:1fr;padding:28px 24px 32px;border-radius:var(--r-lg)}.luxe .hero h1{font-size:28px}.luxe .hero .visual{display:none}}

  /* Trust */
  .luxe .trust{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:20px 28px;margin-top:32px}
  .luxe .trust .item{display:flex;align-items:center;gap:14px}
  .luxe .trust .icon-wrap{width:44px;height:44px;border-radius:var(--r-sm);background:var(--brand-primary-mist);color:var(--brand-primary);display:flex;align-items:center;justify-content:center}
  .luxe .trust .t{font-size:14px;font-weight:700;color:var(--text-h)}
  .luxe .trust .s{font-size:12px;color:var(--text-m);margin-top:2px}
  @media(max-width:768px){.luxe .trust{grid-template-columns:repeat(2,1fr);gap:12px;padding:14px}.luxe .trust .t{font-size:12.5px}.luxe .trust .s{font-size:11px}}

  /* Sections */
  .luxe .section{margin-top:56px}
  .luxe .section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:28px}
  .luxe .section-head h2{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;color:var(--text-h);margin:0;line-height:1.2}
  .luxe .section-head .sub{font-size:14px;color:var(--text-m);margin-top:6px}
  .luxe .section-head a.cta{display:flex;align-items:center;gap:6px;color:var(--brand-primary);font-size:14px;font-weight:600;text-decoration:none}
  @media(max-width:768px){.luxe .section{margin-top:28px}.luxe .section-head h2{font-size:22px}.luxe .section-head{margin-bottom:16px}}

  /* Categories */
  .luxe .cats-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
  .luxe .cat-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:24px 16px;display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;transition:all 200ms;text-decoration:none}
  .luxe .cat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
  .luxe .cat-icon{width:64px;height:64px;border-radius:50%;background:var(--brand-primary-mist);display:flex;align-items:center;justify-content:center;font-size:28px;margin-bottom:6px}
  .luxe .cat-name{font-size:14px;font-weight:700;color:var(--text-h)}
  .luxe .cat-count{font-size:11.5px;color:var(--text-m)}
  @media(max-width:968px){.luxe .cats-grid{grid-template-columns:repeat(3,1fr)}}
  @media(max-width:540px){.luxe .cats-grid{display:flex;gap:12px;overflow-x:auto;padding-bottom:4px}.luxe .cats-grid::-webkit-scrollbar{display:none}.luxe .cat-card{flex-shrink:0;padding:12px;border-radius:50%;border:0;background:transparent}.luxe .cat-icon{width:60px;height:60px;background:var(--bg-card);border:1px solid var(--border);font-size:24px;box-shadow:var(--shadow-xs)}.luxe .cat-count{display:none}.luxe .cat-name{font-size:11.5px}}

  /* Products */
  .luxe .prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
  @media(max-width:968px){.luxe .prod-grid{grid-template-columns:repeat(2,1fr);gap:12px}}
  .luxe .prod-card{background:var(--bg-card);border-radius:var(--r-md);overflow:hidden;border:1px solid var(--border);transition:transform 200ms;text-decoration:none}
  .luxe .prod-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
  .luxe .prod-img{position:relative;aspect-ratio:4/5;background:linear-gradient(160deg,var(--brand-primary-mist) 0%,#ECE2F5 100%);display:flex;align-items:center;justify-content:center;overflow:hidden}
  .luxe .prod-img img{width:100%;height:100%;object-fit:cover}
  .luxe .prod-img .placeholder{width:64px;height:64px;opacity:0.35;color:var(--brand-primary)}
  .luxe .prod-fav{position:absolute;top:12px;left:12px;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,0.9);border:0;display:flex;align-items:center;justify-content:center;color:var(--brand-primary)}
  .luxe .prod-body{padding:16px}
  .luxe .prod-brand{font-size:10.5px;color:var(--brand-gold);font-weight:700;letter-spacing:0.1em;margin-bottom:4px;text-transform:uppercase}
  .luxe .prod-name{font-size:14px;font-weight:600;color:var(--text-h);line-height:1.35;margin-bottom:10px;min-height:38px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .luxe .prod-price{display:flex;align-items:baseline;gap:6px}
  .luxe .prod-price .num{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:700;color:var(--brand-primary)}
  .luxe .prod-price .cur{font-size:12px;color:var(--text-m)}
  .luxe .prod-price .old{font-size:12px;color:var(--text-m);text-decoration:line-through;margin-inline-start:auto}
  @media(max-width:768px){.luxe .prod-body{padding:12px}.luxe .prod-name{font-size:13px;min-height:34px}.luxe .prod-price .num{font-size:17px}}

  /* Editorial */
  .luxe .edit-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
  @media(max-width:768px){.luxe .edit-grid{grid-template-columns:1fr;gap:16px}}
  .luxe .edit-card{position:relative;height:280px;border-radius:var(--r-lg);padding:36px;overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end}
  .luxe .edit-card.dark{background:linear-gradient(135deg,var(--brand-primary-dark),var(--brand-primary));color:#fff}
  .luxe .edit-card.light{background:linear-gradient(135deg,var(--brand-primary-mist),rgba(232,212,168,0.25));color:var(--text-h)}
  .luxe .edit-card .sub{font-size:11.5px;font-weight:700;letter-spacing:0.14em;margin-bottom:8px;text-transform:uppercase}
  .luxe .edit-card.dark .sub{color:var(--brand-gold-light)}
  .luxe .edit-card.light .sub{color:var(--brand-gold)}
  .luxe .edit-card h3{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;line-height:1.2;margin-bottom:16px}
  .luxe .edit-card .btn{align-self:flex-start;display:inline-flex;align-items:center;gap:6px;border:0;padding:10px 22px;border-radius:var(--r-full);font-size:13px;font-weight:700;text-decoration:none}
  .luxe .edit-card.dark .btn{background:var(--brand-gold);color:var(--brand-primary-dark)}
  .luxe .edit-card.light .btn{background:var(--brand-primary);color:#fff}

  /* Brands */
  .luxe .brands-strip{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:24px 40px;display:flex;align-items:center;justify-content:space-around;gap:20px;flex-wrap:wrap}
  .luxe .brands-strip span{font-family:'Cormorant Garamond',serif;font-size:16px;font-weight:600;color:var(--text-h);opacity:0.7;letter-spacing:0.05em}
  @media(max-width:768px){.luxe .brands-strip{padding:16px 20px}.luxe .brands-strip span{font-size:13px}}

  /* Newsletter */
  .luxe .newsletter{background:linear-gradient(120deg,var(--brand-primary-mist),rgba(232,212,168,0.18));border-radius:var(--r-lg);padding:48px 64px;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;border:1px solid var(--border)}
  .luxe .newsletter .label{font-size:11.5px;color:var(--brand-gold);font-weight:700;letter-spacing:0.14em;margin-bottom:8px;text-transform:uppercase}
  .luxe .newsletter h3{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;color:var(--text-h);line-height:1.25;margin-bottom:8px}
  .luxe .newsletter p{font-size:14px;color:var(--text-b);line-height:1.6}
  .luxe .newsletter form{display:flex;gap:8px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:6px}
  .luxe .newsletter input{flex:1;border:0;background:transparent;outline:none;font-size:14px;padding:14px 18px;text-align:start;font-family:inherit;color:var(--text-h)}
  .luxe .newsletter button{background:var(--brand-primary);color:#fff;border:0;padding:0 28px;border-radius:var(--r-sm);font-size:13.5px;font-weight:700}
  @media(max-width:768px){.luxe .newsletter{grid-template-columns:1fr;padding:28px;gap:20px}.luxe .newsletter h3{font-size:22px}}

  /* Cart */
  .luxe .cart-page{display:grid;grid-template-columns:1fr 380px;gap:32px;align-items:start;padding-top:32px;padding-bottom:60px}
  @media(max-width:968px){.luxe .cart-page{grid-template-columns:1fr;padding-top:16px;padding-bottom:110px}}
  .luxe .cart-list{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-xs)}
  .luxe .cart-item{display:flex;gap:16px;padding:18px 20px}
  .luxe .cart-item+.cart-item{border-top:1px solid var(--border)}
  .luxe .cart-item-img{position:relative;width:96px;height:110px;flex-shrink:0;border-radius:var(--r-md);background:linear-gradient(160deg,var(--brand-primary-mist),#E5D7F2);display:flex;align-items:center;justify-content:center;overflow:hidden}
  .luxe .cart-item-img img{width:100%;height:100%;object-fit:cover}
  .luxe .cart-item-body{flex:1;display:flex;flex-direction:column}
  .luxe .cart-item-row1{display:flex;justify-content:space-between;align-items:flex-start;gap:8px}
  .luxe .cart-item-info{flex:1}
  .luxe .cart-item-brand{font-size:10.5px;color:var(--brand-gold);font-weight:700;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:4px}
  .luxe .cart-item-name{font-size:14px;font-weight:600;color:var(--text-h);line-height:1.3;margin-bottom:4px;text-decoration:none}
  .luxe .cart-item-meta{font-size:11px;color:var(--text-m);display:flex;gap:8px;flex-wrap:wrap}
  .luxe .cart-item-trash{width:32px;height:32px;border-radius:var(--r-sm);background:transparent;border:0;color:var(--text-m);display:flex;align-items:center;justify-content:center;flex-shrink:0;cursor:pointer}
  .luxe .cart-item-trash:hover{color:var(--danger);background:rgba(179,58,58,0.06)}
  .luxe .cart-item-row2{margin-top:12px;display:flex;align-items:center;justify-content:space-between}
  .luxe .qty-stepper{display:inline-flex;align-items:center;background:var(--brand-primary-mist);border-radius:var(--r-sm);padding:3px}
  .luxe .qty-stepper button{width:28px;height:28px;border-radius:6px;background:transparent;border:0;color:var(--brand-primary);display:flex;align-items:center;justify-content:center}
  .luxe .qty-stepper button.plus{background:var(--bg-card)}
  .luxe .qty-stepper .val{min-width:26px;text-align:center;font-size:13px;font-weight:700;color:var(--text-h)}
  .luxe .cart-item-price{display:flex;align-items:baseline;gap:4px}
  .luxe .cart-item-price .num{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:700;color:var(--brand-primary)}
  .luxe .cart-item-price .cur{font-size:11px;color:var(--text-m);font-weight:600}
  .luxe .promo-box{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:4px 4px 4px 16px;display:flex;align-items:center;gap:10px;margin-top:16px}
  .luxe .promo-box input{flex:1;border:0;background:transparent;outline:none;font-size:13px;color:var(--text-h);font-family:inherit;text-align:start;padding:12px 0}
  .luxe .promo-box button{background:var(--brand-primary);color:#fff;border:0;padding:10px 18px;border-radius:var(--r-sm);font-size:12px;font-weight:700}
  .luxe .summary{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-lg);padding:22px 24px;box-shadow:var(--shadow-xs);position:sticky;top:24px}
  .luxe .summary h3{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:600;color:var(--text-h);margin-bottom:16px}
  .luxe .summary .row{display:flex;justify-content:space-between;margin-bottom:10px;font-size:13.5px}
  .luxe .summary .row .label{color:var(--text-m)}
  .luxe .summary .row .val{color:var(--text-h);font-weight:600;font-feature-settings:"tnum"}
  .luxe .summary .row .val.success{color:var(--success)}
  .luxe .summary .divider{height:1px;background:var(--border);margin:14px 0}
  .luxe .summary .total-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:18px}
  .luxe .summary .total-row .label{font-size:13px;color:var(--text-m)}
  .luxe .summary .total-row .num{font-family:inherit;font-size:22px;font-weight:700;color:var(--brand-primary)}
  .luxe .summary .total-row .cur{font-size:12px;color:var(--text-m);margin-inline-start:4px}
  .luxe .btn-checkout{width:100%;height:52px;background:var(--brand-primary);color:#fff;border:0;border-radius:var(--r-md);font-size:14.5px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:8px;box-shadow:0 6px 16px rgba(93,74,126,0.32);text-decoration:none}
  .luxe .trust-line{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:14px;font-size:11.5px;color:var(--text-m)}
  .luxe .cart-empty{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-lg);padding:64px 24px;text-align:center;margin-top:32px}
  .luxe .cart-empty h3{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:600;color:var(--text-h);margin:16px 0 8px}
  .luxe .cart-empty p{color:var(--text-m);margin-bottom:20px}
  .luxe .cart-empty a{display:inline-block;background:var(--brand-primary);color:#fff;padding:12px 28px;border-radius:var(--r-full);font-weight:700;font-size:14px;text-decoration:none}

  /* Product detail */
  .luxe .product-page{display:grid;grid-template-columns:1fr 480px;gap:56px;padding-top:32px;padding-bottom:60px;align-items:start}
  @media(max-width:968px){.luxe .product-page{grid-template-columns:1fr;gap:24px;padding-top:16px;padding-bottom:10px}}
  .luxe .gallery{background:var(--bg-card);border-radius:var(--r-lg);overflow:hidden}
  .luxe .gallery-main{aspect-ratio:4/5;background:linear-gradient(160deg,var(--brand-primary-mist) 0%,#E5D7F2 50%,rgba(232,212,168,0.3) 100%);display:flex;align-items:center;justify-content:center;position:relative}
  .luxe .gallery-main img{width:100%;height:100%;object-fit:contain;padding:32px}
  .luxe .gallery-thumbs{display:flex;gap:10px;padding:16px;flex-wrap:wrap}
  .luxe .gallery-thumb{width:64px;height:64px;border-radius:var(--r-sm);background:var(--brand-primary-mist);border:2px solid var(--border);cursor:pointer;overflow:hidden}
  .luxe .gallery-thumb.active{border-color:var(--brand-primary)}
  .luxe .gallery-thumb img{width:100%;height:100%;object-fit:cover}
  .luxe .pd-info .brand-up{font-size:12px;color:var(--brand-gold);font-weight:700;letter-spacing:0.14em;text-transform:uppercase;margin-bottom:8px}
  .luxe .pd-info h1{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:600;color:var(--text-h);line-height:1.2;margin-bottom:14px}
  @media(max-width:768px){.luxe .pd-info h1{font-size:24px}}
  .luxe .pd-rating{display:flex;align-items:center;gap:10px;margin-bottom:22px}
  .luxe .pd-rating .stars{color:var(--brand-gold)}
  .luxe .pd-rating .num{font-size:13px;color:var(--text-h);font-weight:600}
  .luxe .pd-rating .count{font-size:13px;color:var(--text-m)}
  .luxe .pd-price{display:flex;align-items:baseline;gap:12px;margin-bottom:6px}
  .luxe .pd-price .num{font-family:'Cormorant Garamond',serif;font-size:38px;font-weight:700;color:var(--brand-primary)}
  .luxe .pd-price .cur{font-size:16px;color:var(--text-m);font-weight:600}
  .luxe .pd-price .old{font-size:16px;color:var(--text-m);text-decoration:line-through;margin-inline-start:6px}
  .luxe .pd-price .save{font-size:12px;padding:4px 10px;border-radius:var(--r-full);background:#E8F4ED;color:var(--success);font-weight:700}
  .luxe .pd-stock{font-size:12px;color:var(--success);margin-bottom:22px;display:flex;align-items:center;gap:6px}
  .luxe .pd-stock .dot{width:6px;height:6px;border-radius:50%;background:var(--success);display:inline-block}
  .luxe .pd-stock.out{color:var(--danger)}
  .luxe .pd-stock.out .dot{background:var(--danger)}
  .luxe .pd-section{margin-top:24px}
  .luxe .pd-section h4{font-size:14px;font-weight:700;color:var(--text-h);margin-bottom:10px}
  .luxe .desc-block{font-size:14px;color:var(--text-b);line-height:1.8}
  .luxe .pd-actions{margin-top:32px;display:flex;gap:12px;align-items:center}
  .luxe .pd-actions .qty-stepper{padding:6px}
  .luxe .pd-actions .qty-stepper button{width:36px;height:36px}
  .luxe .pd-actions .qty-stepper .val{min-width:30px;font-size:15px}
  .luxe .btn-add{flex:1;height:52px;background:var(--brand-primary);color:#fff;border:0;border-radius:var(--r-md);font-size:14.5px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:8px;box-shadow:0 6px 16px rgba(93,74,126,0.32)}
  .luxe .btn-fav{width:52px;height:52px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);color:var(--brand-primary);display:flex;align-items:center;justify-content:center}
  .luxe .btn-fav.active{color:var(--danger);background:rgba(179,58,58,0.08);border-color:rgba(179,58,58,0.2)}
  .luxe .pd-trust{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:28px}
  .luxe .pd-trust .item{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:14px 16px;display:flex;align-items:center;gap:12px}
  .luxe .pd-trust .icon-wrap{color:var(--brand-primary)}
  .luxe .pd-trust .t{font-size:13px;font-weight:700;color:var(--text-h)}
  .luxe .pd-trust .s{font-size:11px;color:var(--text-m)}

  /* Utilities */
  @media(max-width:968px){.luxe .with-bottom-nav{padding-bottom:calc(68px + env(safe-area-inset-bottom, 0px) + 20px)}}
  @media(min-width:969px){.luxe .m-only{display:none!important}.luxe .m-bottom-nav,.luxe .m-header{display:none}}
  @media(max-width:968px){.luxe .d-only{display:none!important}}
  /* ════════════════════════════════════════════════════════════════════
       طبقة "الأشكال القابلة للتحكم" (Style Tokens)
       ─────────────────────────────────────────────────────────────────
       تُفعَّل عبر data-* على <body> (ThemeManager::styleAttributes()).
       كل ثيم له قيم افتراضية مختلفة (انظر theme.json → "style")،
       والأدمن يقدر يغيّرها بشكل مستقل عن الثيم من لوحة التحكم.
       هذا ما يجعل "الشكل" يتغيّر فعلياً — مو بس اللون.
     ════════════════════════════════════════════════════════════════════ */

  /* ── 1) أيقونات: وزن/امتلاء (icon_style) ─────────────────────────── */
  [data-icon-style="bold"] .luxe svg,
  .luxe[data-icon-style="bold"] svg { stroke-width:2.75px; }

  [data-icon-style="filled"] .luxe svg,
  .luxe[data-icon-style="filled"] svg {
    fill:currentColor; stroke:currentColor; stroke-width:1.25px;
  }
  /* بعض الأيقونات الخطية (chevron/arrow) تنكسر بصرياً لو امتلأت — نستثنيها */
  .luxe[data-icon-style="filled"] svg.icon-no-fill,
  .luxe[data-icon-style="filled"] [data-lucide^="chevron"] svg,
  .luxe[data-icon-style="filled"] [data-lucide^="arrow"] svg { fill:none; stroke-width:2.25px; }

  /* ── 2) بطاقة المنتج: classic | soft | sharp (card_style) ─────────── */
  .luxe[data-card-style="soft"] .prod-card{
    border-radius:var(--r-xl);
    border-color:transparent;
    box-shadow:var(--shadow-sm);
  }
  .luxe[data-card-style="soft"] .prod-img{ border-radius:var(--r-xl) var(--r-xl) 0 0; }
  .luxe[data-card-style="soft"] .prod-card:hover{
    box-shadow:var(--shadow-lg);
    transform:translateY(-6px) scale(1.01);
  }
  .luxe[data-card-style="soft"] .prod-fav{
    top:14px; left:14px; background:var(--bg-card); box-shadow:var(--shadow-sm);
  }
  .luxe[data-card-style="soft"] .prod-brand{
    background:var(--brand-primary-mist); color:var(--brand-primary);
    display:inline-block; padding:2px 9px; border-radius:var(--r-full); text-transform:none;
  }
  /* ── نفس المنطق على بطاقات سلايدر الرئيسية (.lxh-prod-card) ── */
  .luxe[data-card-style="soft"] .lxh-prod-card{
    border-radius:var(--r-xl);
    border-color:transparent;
    box-shadow:var(--shadow-sm);
  }
  .luxe[data-card-style="soft"] .lxh-prod-img{ border-radius:var(--r-lg); }
  .luxe[data-card-style="soft"] .lxh-prod-card:hover{
    box-shadow:var(--shadow-lg);
    transform:translateY(-6px) scale(1.02);
  }
  .luxe[data-card-style="soft"] .lxh-cat-icon{ border-radius:50%; }

  .luxe[data-card-style="sharp"] .prod-card{
    border-radius:var(--r-sm);
    border-width:1.5px;
    box-shadow:none;
    transition:border-color 160ms, box-shadow 160ms, transform 160ms;
  }
  .luxe[data-card-style="sharp"] .prod-img{ border-radius:0; aspect-ratio:1/1; }
  .luxe[data-card-style="sharp"] .prod-card:hover{
    border-color:var(--brand-primary);
    box-shadow:0 0 0 1px var(--brand-primary), var(--shadow-md);
    transform:translateY(-2px);
  }
  .luxe[data-card-style="sharp"] .prod-fav{
    border-radius:var(--r-sm); top:10px; left:10px;
  }
  .luxe[data-card-style="sharp"] .prod-name{ font-weight:700; }
  .luxe[data-card-style="sharp"] .prod-price .num{ font-family:var(--font-primary); }
  /* ── نفس المنطق على بطاقات سلايدر الرئيسية (.lxh-prod-card) ── */
  .luxe[data-card-style="sharp"] .lxh-prod-card{
    border-radius:var(--r-sm);
    border-width:1.5px;
    box-shadow:none;
  }
  .luxe[data-card-style="sharp"] .lxh-prod-img{ border-radius:0; }
  .luxe[data-card-style="sharp"] .lxh-prod-card:hover{
    border-color:var(--brand-primary);
    box-shadow:0 0 0 1px var(--brand-primary);
    transform:translateY(-2px);
  }

  /* ── 3) كثافة الهيدر: mega | minimal | compact (header_style) ─────── */
  .luxe[data-header-style="minimal"] .top-strip{ display:none; }
  .luxe[data-header-style="minimal"] .meganav{ display:none; }
  .luxe[data-header-style="minimal"] .header-main .row{ padding:26px 0; }
  .luxe[data-header-style="minimal"] .brand-logo{ margin:0 auto 0 0; }
  .luxe[data-header-style="minimal"] .search-box{ border-radius:var(--r-full); max-width:560px; margin:0 auto; }

  .luxe[data-header-style="compact"] .top-strip{ padding:5px 0; font-size:11px; }
  .luxe[data-header-style="compact"] .header-main .row{ padding:12px 0; gap:20px; }
  .luxe[data-header-style="compact"] .brand-logo{ font-size:24px; }
  .luxe[data-header-style="compact"] .search-box{ padding:9px 14px; }
  .luxe[data-header-style="compact"] .icon-btn .label{ display:none; }
  .luxe[data-header-style="compact"] .icon-btn{ padding:8px; }

  /* ── 4) شكل الأزرار: pill | rounded | sharp (btn_style) ────────────── */
  .luxe[data-btn-style="rounded"] .btn-checkout,
  .luxe[data-btn-style="rounded"] .btn-add,
  .luxe[data-btn-style="rounded"] .btn-fav,
  .luxe[data-btn-style="rounded"] .promo-box button,
  .luxe[data-btn-style="rounded"] .promo-box,
  .luxe[data-btn-style="rounded"] .search-box button,
  .luxe[data-btn-style="rounded"] .cart-empty a { border-radius:var(--r-md) !important; }

  .luxe[data-btn-style="sharp"] .btn-checkout,
  .luxe[data-btn-style="sharp"] .btn-add,
  .luxe[data-btn-style="sharp"] .btn-fav,
  .luxe[data-btn-style="sharp"] .promo-box button,
  .luxe[data-btn-style="sharp"] .promo-box,
  .luxe[data-btn-style="sharp"] .search-box button,
  .luxe[data-btn-style="sharp"] .cart-empty a { border-radius:var(--r-sm) !important; }
  .luxe[data-btn-style="sharp"] .btn-checkout,
  .luxe[data-btn-style="sharp"] .btn-add { box-shadow:none; font-weight:800; letter-spacing:0.01em; }