/* ── Price Numbers ── */
.pc-price, .pc-old, .item-price, [class*='price'], .total, .subtotal { font-family: 'Roboto Mono', monospace; font-variant-numeric: tabular-nums; }
/* ════════════════════════════════════════
   frontend/public/assets/css/product.css
   ════════════════════════════════════════ */


*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html,body{margin:0;padding:0;border:0;}
body{background:#0a0a0a;color:#fff;font-family:'Roboto',sans-serif;font-size:15px;line-height:1.6;overflow-x:hidden;}
a{color:inherit;text-decoration:none;}ul{list-style:none;}img{max-width:100%;display:block;}
button,input,select,textarea{font-family:inherit;font-size:inherit;}button{cursor:pointer;border:none;background:none;}svg{display:block;flex-shrink:0;}
:root{--bg:#0a0a0a;--bg2:#111;--bg3:#1a1a1a;--bg4:#222;--or:#ff6b00;--or2:#ff8533;--odim:rgba(255,107,0,.10);--obdr:rgba(255,107,0,.28);--bdr:rgba(255,255,255,.08);--bdr2:rgba(255,255,255,.14);--sil:#aaa;--sil2:#666;--r:8px;--rlg:14px;--rxl:20px;--pill:9999px;--navh:64px;}
.wrap{width:100%;max-width:1260px;margin:0 auto;padding:0 24px;}

/* ── NAVBAR ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navh);
  background: #111;
  border-bottom: 2px solid var(--or);
  z-index: 1000;
  overflow: visible;
}
#nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  overflow: visible;
}
.logo {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 800;
  letter-spacing: -0.3px; flex-shrink: 0; white-space: nowrap;
}
.logo-dot { width: 8px; height: 8px; background: var(--or); border-radius: 50%; box-shadow: 0 0 8px var(--or); flex-shrink: 0; }
.logo-orange { color: var(--or); }
#nav-links { list-style: none; display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
#nav-links a { font-size: 13px; color: #aaa; white-space: nowrap; transition: color .2s; position: relative; padding-bottom: 2px; }
#nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--or); border-radius: 2px; transition: width .22s; }
#nav-links a:hover { color: #fff; }
#nav-links a:hover::after { width: 100%; }
#nav-search { flex: 1; min-width: 0; max-width: 300px; height: 36px; background: var(--bg3); border: 1px solid var(--bdr); border-radius: var(--pill); display: flex; align-items: center; gap: 8px; padding: 0 13px; transition: border-color .2s; position: relative; }
#nav-search:focus-within { border-color: var(--obdr); }
#nav-search input { flex: 1; background: none; border: none; outline: none; font-size: 13px; color: #fff; min-width: 0; }
#nav-search input::placeholder { color: #555; }
#s-clr { cursor: pointer; color: #555; display: none; flex-shrink: 0; }
#s-res { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #111; border: 1px solid var(--bdr); border-radius: var(--rlg); overflow: hidden; display: none; box-shadow: 0 8px 28px rgba(0,0,0,.6); z-index: 100; }
#s-res.show { display: block; }
.sr { display: flex; align-items: center; gap: 10px; padding: 9px 13px; cursor: pointer; transition: background .15s; text-decoration: none; color: #fff; }
.sr:hover { background: var(--bg3); }
.sr-th { width: 36px; height: 36px; background: var(--bg3); border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sr-th img { width: 100%; height: 100%; object-fit: cover; }
.sr-nm { font-size: 13px; font-weight: 500; } .sr-br { font-size: 11px; color: #555; } .sr-pr { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--or); white-space: nowrap; }
.sr-nil { padding: 14px; text-align: center; font-size: 13px; color: #555; }
#nav-right { display: flex; align-items: center; gap: 7px; flex-shrink: 0; margin-left: auto; }
.nb { width: 36px; height: 36px; background: var(--bg3); border: 1px solid var(--bdr); border-radius: var(--pill); display: flex; align-items: center; justify-content: center; color: #aaa; cursor: pointer; transition: all .2s; position: relative; text-decoration: none; flex-shrink: 0; }
.nb:hover { border-color: var(--obdr); color: var(--or); }
#cart-badge { position: absolute; top: -4px; right: -4px; width: 16px; height: 16px; background: var(--or); color: #000; font-size: 9px; font-weight: 700; border-radius: 50%; border: 2px solid #111; display: flex; align-items: center; justify-content: center; }
#cart-badge.hide { display: none; }
.dd-link { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: var(--r); font-size: 13px; color: var(--sil); text-decoration: none; transition: all .15s; cursor: pointer; }
.dd-link:hover { background: var(--bg3); color: #fff; }
#nav-ham { display: none; color: #aaa; padding: 4px; flex-shrink: 0; }
#mob { position: fixed; top: var(--navh); left: 0; right: 0; background: #111; border-bottom: 1px solid var(--bdr); z-index: 499; padding: 0 24px; transform: translateY(-110%); transition: transform .28s ease; }
#mob.show { transform: none; }
#mob a { display: block; padding: 12px 0; font-size: 14px; color: #aaa; border-bottom: 1px solid var(--bdr); transition: color .2s; }
#mob a:last-child { border: none; } #mob a:hover { color: var(--or); }
@media(max-width:768px){ #nav-links, #nav-search { display: none; } #nav-ham { display: flex; } }

/* ── BREADCRUMB ── */
.breadcrumb-bar{margin-top:var(--navh);padding:20px 0;border-bottom:1px solid var(--bdr);background:#111;}
.breadcrumb{display:flex;align-items:center;gap:6px;font-size:12px;color:#555;}
.breadcrumb a{color:#555;transition:color .2s;}
.breadcrumb a:hover{color:var(--or);}

/* ── PRODUCT SECTION ── */
.product-section{padding:40px 0 64px;}
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:start;}

/* ── GALLERY ── */
.gallery{}
.gallery-main{position:relative;aspect-ratio:1/1;height:auto;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--rxl);overflow:hidden;margin-bottom:12px;}
.gallery-main img{width:100%;height:100%;object-fit:contain;padding:20px;}
.gallery-main .no-img{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--bg4);}
.gallery-badge{position:absolute;top:14px;left:14px;font-size:10px;font-weight:700;padding:4px 10px;border-radius:var(--pill);}
.b-sale{background:#ef4444;color:#fff;}.b-new{background:var(--or);color:#000;}
.gallery-wish{position:absolute;top:12px;right:12px;width:36px;height:36px;background:rgba(0,0,0,.7);border:1px solid var(--bdr);border-radius:var(--pill);display:flex;align-items:center;justify-content:center;color:#aaa;cursor:pointer;transition:all .2s;}
.gallery-wish:hover,.gallery-wish.on{background:#ef4444;color:#fff;border-color:#ef4444;}

.gallery-thumbs{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px;}
.gallery-thumbs::-webkit-scrollbar{height:3px;}
.gallery-thumbs::-webkit-scrollbar-thumb{background:var(--bg4);border-radius:3px;}
.thumb{width:72px;height:72px;flex-shrink:0;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--r);overflow:hidden;cursor:pointer;transition:border-color .2s;}
.thumb img{width:100%;height:100%;object-fit:contain;padding:4px;}
.thumb.active{border-color:var(--or);}
.thumb:hover{border-color:var(--bdr2);}

/* ── PRODUCT INFO ── */
.product-info{}
.pi-brand{font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:#555;margin-bottom:6px;}
.pi-name {font-family: inherit;font-size:clamp(22px,3vw,32px);font-weight:800;letter-spacing:-0.03em;line-height:1.1;margin-bottom:12px;}
.pi-rating{display:flex;align-items:center;gap:8px;margin-bottom:16px;}
.pi-stars{display:flex;align-items:center;gap:2px;}
.pi-rc{font-size:12px;color:#555;}
.pi-rc a{color:var(--or);cursor:pointer;}
.pi-stock{display:inline-flex;align-items:center;gap:5px;font-size:12px;padding:4px 10px;border-radius:var(--pill);margin-bottom:20px;}
.in-stock{background:rgba(34,197,94,.1);color:#4ade80;border:1px solid rgba(34,197,94,.2);}
.out-stock{background:rgba(239,68,68,.1);color:#f87171;border:1px solid rgba(239,68,68,.2);}
.pi-price-row{display:flex;align-items:baseline;gap:10px;margin-bottom:8px;}
.pi-price {font-family: inherit;font-size:36px;font-weight:800;letter-spacing:-0.05em;color:var(--or);}
.pi-price-old{font-size:18px;color:#555;text-decoration:line-through;}
.pi-discount{font-size:12px;font-weight:600;color:#4ade80;background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.2);padding:3px 8px;border-radius:var(--pill);}
.pi-offer-end{font-size:12px;color:#555;margin-bottom:20px;}
.pi-offer-end span{color:var(--or);}
.pi-desc{font-size:14px;color:#aaa;font-weight:300;line-height:1.75;margin-bottom:24px;border-top:1px solid var(--bdr);padding-top:20px;}

/* Product configuration */
.product-config{display:flex;flex-direction:column;gap:18px;margin:0 0 24px;padding:18px;background:#111;border:1px solid var(--bdr);border-radius:var(--rlg);}
.cfg-section{display:flex;flex-direction:column;gap:10px;}
.cfg-head{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.cfg-title{font-size:12px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.7px;}
.cfg-note{font-size:11px;color:#555;}
.cfg-swatches,.cfg-choices{display:flex;flex-wrap:wrap;gap:8px;}
.cfg-swatch,.cfg-choice{min-height:42px;display:inline-flex;align-items:center;gap:8px;padding:8px 12px;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--r);color:#aaa;font-size:13px;cursor:pointer;transition:all .18s;}
.cfg-swatch:hover,.cfg-choice:hover{border-color:var(--bdr2);color:#fff;}
.cfg-swatch.on,.cfg-choice.on{background:var(--odim);border-color:var(--obdr);color:#fff;}
.cfg-dot{width:18px;height:18px;border-radius:50%;border:2px solid rgba(255,255,255,.22);box-shadow:0 0 0 1px rgba(0,0,0,.35);}
.cfg-delta{font-size:11px;color:var(--or);font-weight:700;white-space:nowrap;}
.cfg-choice.none{color:#777;}

/* Quantity */
.qty-row{display:flex;align-items:center;gap:16px;margin-bottom:20px;}
.qty-label{font-size:13px;color:#555;}
.qty-ctrl{display:flex;align-items:center;gap:0;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--r);overflow:hidden;}
.qty-btn{width:38px;height:38px;display:flex;align-items:center;justify-content:center;color:#aaa;cursor:pointer;transition:all .15s;font-size:16px;}
.qty-btn:hover{background:var(--bg4);color:#fff;}
.qty-num{width:48px;text-align:center;font-size:15px;font-weight:600;border:none;background:none;color:#fff;outline:none;}

/* Actions */
.pi-actions{display:flex;gap:10px;margin-bottom:28px;}
.btn-add{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:14px;background:var(--or);color:#000;border:none;border-radius:var(--r);font-size:14px;font-weight:700;cursor:pointer;transition:all .2s;}
.btn-add:hover{background:var(--or2);}
.btn-add:disabled{opacity:.4;cursor:not-allowed;}
.btn-wish2{width:50px;height:50px;display:flex;align-items:center;justify-content:center;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--r);color:#aaa;cursor:pointer;transition:all .2s;flex-shrink:0;}
.btn-wish2:hover,.btn-wish2.on{background:#ef4444;border-color:#ef4444;color:#fff;}

/* Meta */
.pi-meta{display:flex;flex-direction:column;gap:8px;padding:16px;background:var(--bg2);border:1px solid var(--bdr);border-radius:var(--r);}
.pi-meta-row{display:flex;align-items:center;gap:8px;font-size:12px;}
.pi-meta-label{color:#555;min-width:80px;}
.pi-meta-val{color:#aaa;}
.pi-meta-val a{color:var(--or);}

/* ── TABS ── */
.tabs-section{padding:0 0 64px;}
.tabs{display:flex;gap:0;border-bottom:1px solid var(--bdr);margin-bottom:32px;}
.tab{padding:12px 20px;font-size:14px;color:#555;cursor:pointer;transition:color .2s;border-bottom:2px solid transparent;margin-bottom:-1px;}
.tab:hover{color:#aaa;}
.tab.active{color:var(--or);border-bottom-color:var(--or);}

/* Description tab */
#tab-desc{font-size:14px;color:#aaa;line-height:1.9;}

/* Reviews tab */
.reviews-summary{display:grid;grid-template-columns:200px 1fr;gap:0;background:#111;border:1px solid var(--bdr);border-radius:var(--rlg);margin-bottom:24px;overflow:hidden;}
.rev-big{text-align:center;padding:32px 24px;background:var(--odim);border-right:1px solid var(--bdr);display:flex;flex-direction:column;align-items:center;justify-content:center;}
.rev-big-num {font-family: inherit;font-size:64px;font-weight:800;color:var(--or);line-height:1;letter-spacing:-3px;}
.rev-big-stars{display:flex;justify-content:center;gap:3px;margin:8px 0 6px;}
.rev-big-count{font-size:12px;color:#555;font-weight:500;}
.rev-bars{display:flex;flex-direction:column;gap:8px;padding:20px 28px;justify-content:center;}
.rev-bar-row{display:flex;align-items:center;gap:10px;font-size:12px;color:#555;cursor:pointer;transition:color .15s;}
.rev-bar-row:hover{color:#fff;}
.rev-bar-label{min-width:20px;text-align:right;display:flex;align-items:center;gap:3px;}
.rev-bar-track{flex:1;height:8px;background:var(--bg3);border-radius:4px;overflow:hidden;}
.rev-bar-fill{height:100%;background:linear-gradient(90deg,var(--or),#ff8533);border-radius:4px;transition:width .6s cubic-bezier(.4,0,.2,1);}
.rev-bar-pct{min-width:32px;text-align:right;font-weight:600;}
.rev-bar-count{min-width:40px;color:#555;font-size:11px;}

.review-item{display:flex;gap:16px;padding:20px;border-radius:var(--rlg);background:#111;border:1px solid var(--bdr);margin-bottom:10px;transition:border-color .2s;}
.review-item:hover{border-color:var(--bdr2);}
.rev-avatar {width:42px;height:42px;background:var(--odim);border:1px solid var(--obdr);border-radius:var(--rlg);display:flex;align-items:center;justify-content:center;font-family: inherit;font-size:15px;font-weight:700;color:var(--or);flex-shrink:0;overflow:hidden;}
.rev-avatar img{width:100%;height:100%;object-fit:cover;}
.rev-body{flex:1;}
.rev-top{display:flex;align-items:center;gap:10px;margin-bottom:4px;flex-wrap:wrap;}
.rev-name{font-size:13px;font-weight:600;}
.rev-date{font-size:11px;color:#555;margin-left:auto;}
.rev-stars{display:flex;gap:2px;}
.rev-text{font-size:13px;color:#aaa;font-weight:300;line-height:1.7;}

/* Review form */
.review-form{background:#111;border:1px solid var(--bdr);border-radius:var(--rlg);padding:28px;margin-top:20px;}
.star-picker{display:flex;gap:6px;margin-bottom:4px;align-items:center;}
.star-pick{cursor:pointer;color:#2a2a2a;transition:color .1s,transform .1s;}
.star-pick.on{color:var(--or);}
.star-pick:hover{color:var(--or);transform:scale(1.15);}
.form-row{margin-bottom:18px;}
.form-label{font-size:11px;color:#555;margin-bottom:7px;text-transform:uppercase;letter-spacing:.7px;font-weight:600;}
textarea.form-in{width:100%;min-height:100px;resize:vertical;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--r);padding:12px 14px;font-size:13px;color:#fff;outline:none;transition:border-color .2s;line-height:1.6;}
textarea.form-in:focus{border-color:var(--obdr);}
textarea.form-in::placeholder{color:#444;}
.char-count{font-size:11px;color:#555;text-align:right;margin-top:4px;}
.rev-tag-row{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:18px;}
.rev-tag{padding:5px 13px;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--pill);font-size:12px;color:#555;cursor:pointer;transition:all .15s;}
.rev-tag:hover,.rev-tag.on{background:var(--odim);border-color:var(--obdr);color:var(--or);}

/* ── RELATED ── */
.related-section{padding:0 0 64px;}
.related-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;}

/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;gap:6px;padding:9px 20px;border-radius:var(--pill);font-family:'Roboto',sans-serif;font-size:13px;font-weight:500;cursor:pointer;transition:all .2s;white-space:nowrap;border:1px solid transparent;}
.btn-or{background:var(--or);color:#000;border-color:var(--or);}
.btn-or:hover{background:var(--or2);}
.btn-gh{background:var(--bg3);color:#aaa;border-color:var(--bdr);}
.btn-gh:hover{color:#fff;border-color:var(--bdr2);}
.btn-sm{padding:6px 14px;font-size:12px;}

/* ── CART DRAWER ── */
#overlay{position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:600;opacity:0;pointer-events:none;transition:opacity .3s;}
#overlay.on{opacity:1;pointer-events:all;}
#drawer{position:fixed;top:0;right:0;width:390px;max-width:100%;height:100vh;background:#111;border-left:1px solid var(--bdr);z-index:601;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .32s cubic-bezier(.22,.61,.36,1);}
#drawer.on{transform:none;}
#dr-head {display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--bdr);font-family: inherit;font-size:16px;font-weight:700;flex-shrink:0;}
#dr-x{width:30px;height:30px;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--pill);display:flex;align-items:center;justify-content:center;color:#aaa;cursor:pointer;transition:color .2s;}
#dr-x:hover{color:#fff;}
#dr-body{flex:1;overflow-y:auto;padding:12px 20px;}
.di{display:flex;align-items:center;gap:11px;padding:11px 0;border-bottom:1px solid var(--bdr);}
.di:last-child{border:none;}
.di-img{width:56px;height:56px;background:var(--bg3);border-radius:var(--r);display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;}
.di-img img{width:100%;height:100%;object-fit:cover;}
.di-info{flex:1;min-width:0;}
.di-brand{font-size:9px;color:#555;text-transform:uppercase;letter-spacing:1px;}
.di-name{font-size:12px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:2px 0 5px;}
.di-price{font-size:12px;color:var(--or);font-weight:600;}
.di-qty{display:flex;align-items:center;gap:5px;margin-top:5px;}
.di-qb{width:22px;height:22px;background:var(--bg3);border:1px solid var(--bdr);border-radius:4px;display:flex;align-items:center;justify-content:center;color:#aaa;cursor:pointer;font-size:13px;transition:all .15s;}
.di-qb:hover{border-color:var(--obdr);color:var(--or);}
.di-qn{font-size:13px;font-weight:600;min-width:18px;text-align:center;}
.di-rm{color:#555;padding:4px;cursor:pointer;transition:color .2s;}
.di-rm:hover{color:#ef4444;}
#dr-foot{padding:14px 20px;border-top:1px solid var(--bdr);flex-shrink:0;}
#dr-tot{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;}
#dr-tot-l{color:#aaa;font-size:13px;}
#dr-tot-v {font-family: inherit;font-size:19px;font-weight:700;color:var(--or);}

/* ── TOAST ── */
#toasts{position:fixed;bottom:20px;right:20px;z-index:9999;display:flex;flex-direction:column;gap:8px;pointer-events:none;}
.t{display:flex;align-items:center;gap:10px;padding:11px 16px;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--r);font-size:13px;min-width:230px;animation:tin .28s ease;box-shadow:0 4px 20px rgba(0,0,0,.5);}
.t.ok{border-color:rgba(34,197,94,.3);}.t.err{border-color:rgba(239,68,68,.3);}.t.wrn{border-color:rgba(245,158,11,.3);}
@keyframes tin{from{opacity:0;transform:translateX(10px)}to{opacity:1;transform:none}}
.w100{width:100%;}.mt8{margin-top:8px;}
.sk{background:#111;border:1px solid var(--bdr);border-radius:var(--rlg);animation:pulse 1.5s ease-in-out infinite;}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.empty-cart{text-align:center;padding:40px 20px;color:#555;font-size:13px;}
.empty-cart strong{display:block;font-size:14px;color:#aaa;margin-bottom:4px;}

/* Product card (related) */
.pc{background:#111;border:1px solid var(--bdr);border-radius:var(--rlg);overflow:hidden;cursor:pointer;transition:border-color .2s,transform .2s;}
.pc:hover{border-color:var(--obdr);transform:translateY(-3px);}
.pc-img{position:relative;aspect-ratio:1;background:#fff;overflow:hidden;}
.pc-img img{width:100%;height:100%;object-fit:contain;padding:6px;box-sizing:border-box;transition:transform .35s;}
.pc:hover .pc-img img{transform:scale(1.04);}
.pc-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--bg4);}
.pc-bdg{position:absolute;top:12px;left:0;font-size:11px;font-weight:900;padding:6px 12px;border-radius:0 var(--pill) var(--pill) 0;box-shadow:0 8px 22px rgba(255,107,0,.24);}
.b-new{background:var(--or);color:#000;}.b-sale{background:var(--or);color:#000;}
[dir="rtl"] .pc-bdg{left:auto;right:0;border-radius:var(--pill) 0 0 var(--pill);}
.pc-body{padding:12px;}
.pc-brand{font-size:10px;letter-spacing:1px;text-transform:uppercase;color:#555;margin-bottom:3px;}
.pc-name {font-family: inherit;font-size:13px;font-weight:600;margin-bottom:8px;color:#fff;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.3;}
.pc-foot{display:flex;align-items:center;justify-content:space-between;}
.pc-price{font-family:'Roboto Mono',monospace;font-size:15px;font-weight:700;font-variant-numeric:tabular-nums;}
.pc-price.s{color:var(--or);}
.pc-old{font-size:11px;color:#555;text-decoration:line-through;margin-left:4px;}
.pc-add{width:30px;height:30px;background:var(--bg3);border:1px solid var(--bdr);border-radius:var(--pill);display:flex;align-items:center;justify-content:center;color:#aaa;transition:all .2s;}
.pc-add:hover{background:var(--or);border-color:var(--or);color:#000;}

@media(max-width:1024px){.related-grid{grid-template-columns:repeat(4,1fr);}}
@media(max-width:900px){.product-grid{grid-template-columns:1fr;gap:32px;}.related-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:768px){#nav-links,#nav-search{display:none;}#nav-ham{display:flex;}.related-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:480px){.pi-actions{flex-direction:column;}.btn-wish2{width:100%;height:46px;}.related-grid{grid-template-columns:repeat(2,1fr);}}



[dir="rtl"]{text-align:right;direction:rtl;}
[dir="rtl"] .logo,[dir="rtl"] #nav .wrap,[dir="rtl"] #nav-links{flex-direction:row-reverse;}
[dir="rtl"] .slide-txt{left:auto;right:0;padding:0 60px 0 20px;}
[dir="rtl"] .slide::after{background:linear-gradient(to left,rgba(0,0,0,.55) 0%,rgba(0,0,0,.1) 55%,transparent 100%);}
[dir="rtl"] .sec-head,[dir="rtl"] .ft-bot,[dir="rtl"] #nav-right{flex-direction:row-reverse;}
[dir="rtl"] .ft-top,[dir="rtl"] .cat-layout{direction:rtl;}
[dir="rtl"] #drawer{left:0;right:auto;transform:translateX(-100%);border-left:none;border-right:1px solid rgba(255,255,255,.08);}
[dir="rtl"] #drawer.on{transform:none;}
[dir="rtl"] .cat-sub-link{padding:9px 54px 9px 16px;}
[dir="rtl"] .cat-row-left{flex-direction:row-reverse;}
[dir="rtl"] .pc-foot{flex-direction:row-reverse;}
[dir="rtl"] .eyebrow::before{margin-right:0;margin-left:7px;}
[dir="rtl"] body{font-family:'Noto Kufi Arabic','Roboto',sans-serif;}


@keyframes spin{to{transform:rotate(360deg)}}
