﻿/* ============================================
   COMBITRAVAIL.MA â€” Industrial Workwear Brand
   Trustworthy. Built to Last. Made for Work.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&family=Noto+Sans+Arabic:wght@400;500;600;700&display=swap');

:root {
  --anthracite:    #1A1A1C;
  --anthracite-2:  #242426;
  --anthracite-3:  #2E2E30;
  --orange:        #FF5C00;
  --orange-dark:   #CC4900;
  --orange-light:  #FF7A30;
  --cement:        #8A8480;
  --cement-light:  #B0AAA4;
  --cream:         #F3EDE3;
  --cream-2:       #E8E0D2;
  --white:         #FAFAFA;
  --text:          #1A1A1C;
  --text-mid:      #4A4642;
  --text-light:    #8A8480;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.18);
  --radius:        6px;
  --radius-lg:     12px;
  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; overflow-x:hidden; }

body {
  font-family:'DM Sans', sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.65;
  overflow-x:hidden;
}
body.rtl, body[dir="rtl"], [dir="rtl"] { direction:rtl; font-family:'Noto Sans Arabic','DM Sans',sans-serif; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

/* ===== MARQUEE TOP BAR ===== */
.top-bar {
  background:var(--anthracite);
  color:var(--cream-2);
  font-size:0.8rem;
  font-weight:500;
  letter-spacing:0.04em;
  padding:10px 0;
  overflow:hidden;
  position:relative;
}
.top-bar::before, .top-bar::after {
  content:''; position:absolute; top:0; bottom:0; width:60px; z-index:2;
  pointer-events:none;
}
.top-bar::before { left:0; background:linear-gradient(to right, var(--anthracite), transparent); }
.top-bar::after  { right:0; background:linear-gradient(to left, var(--anthracite), transparent); }

.marquee-track {
  display:flex; gap:0; white-space:nowrap;
  animation:marquee 28s linear infinite;
}
.marquee-track span {
  display:inline-flex; align-items:center; gap:8px;
  padding:0 32px;
}
.marquee-track i { color:var(--orange); font-size:0.85rem; }
.marquee-track .sep { color:var(--anthracite-3); font-size:1.2rem; padding:0 4px; }

@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ===== NAVBAR ===== */
.navbar {
  background:var(--white);
  border-bottom:2px solid var(--cream-2);
  position:sticky; top:0; z-index:1000;
}
.navbar .container {
  display:flex; align-items:center; justify-content:space-between;
  height:72px; gap:20px;
}
.logo {
  font-family:'Barlow Condensed', sans-serif;
  font-weight:900; font-size:1.65rem; letter-spacing:-0.01em;
  color:var(--anthracite); text-transform:uppercase;
  display:flex; align-items:center; gap:0; line-height:1;
  direction:ltr; unicode-bidi:isolate;
}
.logo .accent { color:var(--orange); }
.logo .dot { color:var(--cement); font-weight:400; }

.nav-links {
  display:flex; list-style:none; gap:6px; align-items:center;
}
.nav-links a {
  font-size:0.88rem; font-weight:600; letter-spacing:0.03em;
  color:var(--text-mid); padding:8px 14px; border-radius:var(--radius);
  text-transform:uppercase; transition:var(--transition);
}
.nav-links a:hover { color:var(--orange); background:rgba(255,92,0,0.06); }

.nav-actions { display:flex; align-items:center; gap:12px; }

.lang-btn {
  background:var(--anthracite); color:var(--white);
  border:none; cursor:pointer;
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.85rem;
  letter-spacing:0.08em; padding:7px 14px; border-radius:var(--radius);
  transition:var(--transition);
}
.lang-btn:hover { background:var(--orange); }

.cart-btn {
  display:flex; align-items:center; gap:8px;
  background:var(--orange); color:var(--white);
  border:none; cursor:pointer; padding:9px 18px;
  border-radius:var(--radius); font-family:'DM Sans',sans-serif;
  font-weight:600; font-size:0.88rem; transition:var(--transition);
  position:relative;
}
.cart-btn:hover { background:var(--orange-dark); transform:translateY(-1px); }
.cart-count {
  position:absolute; top:-7px; right:-7px;
  background:var(--anthracite); color:var(--white);
  width:20px; height:20px; border-radius:50%;
  font-size:0.72rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.cart-count[data-empty="true"] { display:none; }

.mobile-toggle {
  display:none; background:none; border:none; cursor:pointer;
  font-size:1.4rem; color:var(--anthracite); padding:4px;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.5);
  z-index:9998; opacity:0; pointer-events:none;
  transition:opacity 0.3s ease;
}
.cart-overlay.open { opacity:1; pointer-events:all; }

.cart-drawer {
  position:fixed; top:0; right:0; bottom:0; width:380px;
  background:var(--white); z-index:9999;
  transform:translateX(100%); transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display:flex; flex-direction:column; border-left:2px solid var(--cream-2);
}
.cart-drawer.open { transform:translateX(0); }
[dir="rtl"] .cart-drawer { right:auto; left:0; transform:translateX(-100%); border-left:none; border-right:2px solid var(--cream-2); }
[dir="rtl"] .cart-drawer.open { transform:translateX(0); }

.cart-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; border-bottom:1px solid var(--cream-2);
}
.cart-header h3 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size:1.3rem; text-transform:uppercase; letter-spacing:0.02em;
}
.close-cart {
  background:var(--cream); border:none; cursor:pointer;
  width:36px; height:36px; border-radius:50%; font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.close-cart:hover { background:var(--cream-2); }

.cart-items { flex:1; overflow-y:auto; padding:16px; }
.cart-empty {
  text-align:center; padding:40px 20px; color:var(--text-light);
}
.cart-empty i { font-size:2.5rem; margin-bottom:12px; display:block; opacity:0.3; }

.cart-item {
  display:flex; gap:12px; padding:14px 0;
  border-bottom:1px solid var(--cream-2);
}
.cart-item img { width:64px; height:72px; object-fit:cover; border-radius:var(--radius); border:1px solid var(--cream-2); }
.cart-item-info { flex:1; }
.cart-item-name { font-weight:600; font-size:0.88rem; margin-bottom:4px; }
.cart-item-meta {
  display:flex; flex-wrap:wrap; gap:5px;
  font-size:0.8rem; color:var(--text-light); margin-bottom:8px;
}
.cart-item-meta b { color:var(--text-mid); font-weight:700; }
.cart-item-price { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1.1rem; color:var(--orange); }
.cart-item-side { display:flex; flex-direction:column; align-items:flex-end; gap:8px; min-width:76px; }
.cart-item-actions { display:flex; align-items:center; gap:8px; }
.cart-item-actions button {
  width:28px; height:28px; border:1px solid var(--cream-2);
  border-radius:var(--radius); background:var(--cream);
  font-weight:700; cursor:pointer; color:var(--anthracite);
}
.cart-item-actions span { min-width:20px; text-align:center; font-weight:700; }
.cart-item-remove { background:none; border:none; cursor:pointer; color:var(--cement); font-size:0.78rem; padding:2px; transition:var(--transition); }
.cart-item-remove:hover { color:var(--orange); }

.cart-footer {
  padding:16px 24px 24px; border-top:2px solid var(--cream-2);
}
.cart-total {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:16px; font-weight:600;
}
.cart-total-price {
  font-family:'Barlow Condensed',sans-serif; font-weight:900;
  font-size:1.6rem; color:var(--anthracite);
}

/* ===== BTN SYSTEM ===== */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:var(--radius);
  font-family:'DM Sans',sans-serif; font-weight:600; font-size:0.95rem;
  cursor:pointer; border:2px solid transparent;
  transition:var(--transition); letter-spacing:0.02em;
  text-decoration:none; white-space:nowrap;
}
.btn-lg { padding:17px 36px; font-size:1rem; }
.btn-sm { padding:10px 20px; font-size:0.85rem; }
.btn-block { width:100%; justify-content:center; }

.btn-primary {
  background:var(--orange); color:var(--white); border-color:var(--orange);
}
.btn-primary:hover { background:var(--orange-dark); border-color:var(--orange-dark); transform:translateY(-2px); box-shadow:0 8px 20px rgba(255,92,0,0.35); }

.btn-dark {
  background:var(--anthracite); color:var(--white); border-color:var(--anthracite);
}
.btn-dark:hover { background:var(--anthracite-3); border-color:var(--anthracite-3); transform:translateY(-2px); }

.btn-outline {
  background:transparent; color:var(--white); border-color:rgba(255,255,255,0.4);
}
.btn-outline:hover { background:rgba(255,255,255,0.12); border-color:var(--white); }

.btn-outline-dark {
  background:transparent; color:var(--anthracite); border-color:var(--anthracite);
}
.btn-outline-dark:hover { background:var(--anthracite); color:var(--white); }

/* ===== CHECKOUT ===== */
.top-bar-static {
  display:flex; align-items:center; justify-content:center;
  gap:22px; flex-wrap:wrap;
}
.top-bar-static span { display:inline-flex; align-items:center; gap:7px; }
.top-bar-static i { color:var(--orange); }

.checkout-section {
  background:linear-gradient(180deg, var(--white) 0%, #F7F2EA 100%);
  padding:44px 0 80px;
}
.checkout-head {
  max-width:720px; margin-bottom:28px;
}
.checkout-head h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(2.1rem,4vw,3.2rem);
  line-height:1; text-transform:uppercase;
  color:var(--anthracite); margin:10px 0 10px;
}
.checkout-head p { color:var(--text-mid); max-width:620px; }

.checkout-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.42fr) minmax(330px, .78fr);
  gap:28px; align-items:start;
}
.checkout-form,
.order-summary {
  background:var(--white);
  border:2px solid var(--cream-2);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
}
.checkout-form { padding:28px; }
.order-summary {
  padding:24px;
  position:sticky; top:96px;
}
.checkout-card-title {
  display:flex; align-items:flex-start; gap:14px;
  margin-bottom:24px; padding-bottom:18px;
  border-bottom:1px solid var(--cream-2);
}
.checkout-card-title > i {
  width:42px; height:42px; border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  background:var(--anthracite); color:var(--orange);
  flex-shrink:0;
}
.checkout-card-title h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:1.45rem; line-height:1;
  text-transform:uppercase; color:var(--anthracite);
  margin-bottom:6px;
}
.checkout-card-title p { font-size:0.86rem; color:var(--text-light); line-height:1.5; }

.form-row {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.form-group { margin-bottom:16px; }
.form-group label {
  display:block; font-weight:700; color:var(--anthracite);
  font-size:0.88rem; margin-bottom:7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; min-height:48px;
  border:1.5px solid var(--cream-2);
  border-radius:var(--radius);
  background:#fff; color:var(--text);
  font:500 0.95rem/1.4 'DM Sans',sans-serif;
  padding:12px 14px;
  transition:var(--transition);
}
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea {
  font-family:'Noto Sans Arabic','DM Sans',sans-serif;
}
.form-group textarea { resize:vertical; min-height:92px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(255,92,0,0.12);
}
.field-error {
  border-color:#D92D20 !important;
  box-shadow:0 0 0 3px rgba(217,45,32,0.12) !important;
}
.checkbox-line {
  display:flex; align-items:flex-start; gap:10px;
  margin:8px 0 20px; color:var(--text-mid);
  font-size:0.9rem; cursor:pointer;
}
.checkbox-line input { width:18px; height:18px; margin-top:2px; accent-color:var(--orange); flex-shrink:0; }
.checkout-submit {
  width:100%; justify-content:center; text-align:center;
  padding:16px 20px; font-size:1rem;
  white-space:normal;
}
.checkout-submit[disabled] {
  opacity:.55; cursor:not-allowed; transform:none; box-shadow:none;
}
.secure-note {
  text-align:center; margin-top:14px;
  font-size:0.84rem; color:var(--text-light);
}

.order-items { display:flex; flex-direction:column; gap:12px; }
.order-item {
  display:grid; grid-template-columns:64px 1fr auto;
  gap:12px; align-items:center;
  padding:12px; border:1px solid var(--cream-2);
  border-radius:var(--radius); background:#FFFCF8;
}
.order-item img {
  width:64px; height:76px; object-fit:cover;
  border-radius:var(--radius); border:1px solid var(--cream-2);
}
.order-item-info h4 {
  font-size:0.9rem; line-height:1.3; margin-bottom:4px;
  color:var(--anthracite);
}
.order-item-info p { font-size:0.8rem; color:var(--text-light); }
.order-item-price {
  font-family:'Barlow Condensed',sans-serif;
  color:var(--orange); font-weight:900; font-size:1.15rem;
  white-space:nowrap;
}
.order-total {
  display:flex; justify-content:space-between; align-items:center;
  margin:18px 0; padding-top:18px;
  border-top:2px solid var(--cream-2);
  font-family:'Barlow Condensed',sans-serif;
  font-size:1.55rem; font-weight:900; color:var(--anthracite);
}
.order-total span:last-child { color:var(--orange); }
.checkout-empty {
  text-align:center; border:1.5px dashed var(--cream-2);
  background:#FFFCF8; border-radius:var(--radius);
  padding:28px 18px; color:var(--text-mid);
}
.checkout-empty i {
  display:block; color:var(--orange);
  font-size:2rem; margin-bottom:10px;
}
.checkout-empty p { margin-bottom:14px; }
.checkout-info-card {
  border-radius:var(--radius);
  padding:16px; margin-top:14px;
  border:1px solid transparent;
}
.checkout-info-card h4 {
  display:flex; align-items:center; gap:8px;
  font-size:0.95rem; margin-bottom:6px; color:var(--anthracite);
}
.checkout-info-card p { font-size:0.84rem; color:var(--text-mid); line-height:1.55; }
.info-green { background:#EAF7EE; border-color:#CFEBD6; }
.info-green h4 i { color:#16833A; }
.info-orange { background:#FFF2E8; border-color:#FFD9C0; }
.info-orange h4 i { color:var(--orange); }

.toast {
  position:fixed; left:50%; bottom:26px;
  transform:translate(-50%, 90px);
  background:var(--anthracite); color:var(--white);
  padding:13px 22px; border-radius:var(--radius);
  z-index:10000; box-shadow:var(--shadow-lg);
  opacity:0; transition:var(--transition);
  max-width:min(92vw, 520px); text-align:center;
  pointer-events:none;
}
.toast.show { opacity:1; transform:translate(-50%, 0); }
.cart-drawer.open ~ .toast {
  top:74px; bottom:auto;
  transform:translate(-50%, -90px);
}
.cart-drawer.open ~ .toast.show { transform:translate(-50%, 0); }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(90deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.74) 42%, rgba(10,10,12,0.2) 72%, rgba(10,10,12,0.08) 100%),
    url('../images/hero-desktop-pantalon-clean.jpg') center / cover no-repeat,
    var(--anthracite);
  position:relative; overflow:hidden;
  padding:88px 0 56px;
  min-height:620px;
}
[dir="rtl"] .hero {
  background:
    linear-gradient(270deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.74) 42%, rgba(10,10,12,0.2) 72%, rgba(10,10,12,0.08) 100%),
    url('../images/hero-desktop-pantalon-clean-rtl.jpg') center / cover no-repeat,
    var(--anthracite);
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 28px,
      rgba(255,92,0,0.03) 28px,
      rgba(255,92,0,0.03) 30px
    );
}
.hero::after {
  content:''; position:absolute;
  bottom:0; left:0; right:0; height:5px;
  background:linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
}

.hero .container {
  display:flex; align-items:flex-end; justify-content:flex-start;
  min-height:476px; position:relative; z-index:1;
  padding-bottom:0; direction:ltr;
}

[dir="rtl"] .hero .container {
  justify-content:flex-start;
  direction:rtl;
}

.hero-content {
  max-width:570px;
  text-shadow:0 2px 20px rgba(0,0,0,0.68);
}

[dir="rtl"] .hero-content {
  direction:rtl;
  text-align:right;
}

[dir="rtl"] .hero-badges,
[dir="rtl"] .hero-cta {
  justify-content:flex-end;
}

.hero-label {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,92,0,0.15); color:var(--orange);
  border:1px solid rgba(255,92,0,0.3);
  padding:6px 14px; border-radius:100px;
  font-size:0.78rem; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; margin-bottom:20px;
}

.hero-title {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:clamp(3rem, 5.5vw, 5rem);
  color:var(--white); line-height:0.95;
  text-transform:uppercase; letter-spacing:0;
  margin-bottom:20px;
}
.hero-title .line-accent { color:var(--orange); display:block; }
.hero-title .line-sub {
  font-size:0.55em; font-weight:700; color:var(--cement-light);
  letter-spacing:0.04em; display:block; margin-top:6px;
}

.hero-desc {
  color:var(--cement-light); font-size:1rem;
  max-width:440px; margin-bottom:20px; line-height:1.7;
}
.hero-desc strong { color:var(--white); font-weight:600; }

.hero-badges {
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,0.07); color:var(--cream-2);
  border:1px solid rgba(255,255,255,0.12);
  padding:6px 14px; border-radius:100px;
  font-size:0.82rem; font-weight:500;
}
.hero-badge i { color:var(--orange); font-size:0.8rem; }

.hero-cta { display:flex; gap:14px; flex-wrap:wrap; }

.hero-img {
  display:none;
  align-self:flex-end; position:relative;
}
.hero-img img {
  width:100%; max-width:520px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  object-fit:cover;
  filter:drop-shadow(0 -20px 60px rgba(0,0,0,0.5));
  margin:0 auto;
}
.hero-img-badge {
  position:absolute; top:20px; left:20px;
  background:var(--orange); color:var(--white);
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:0.9rem;
  letter-spacing:0.06em; text-transform:uppercase;
  padding:8px 16px; border-radius:var(--radius);
  box-shadow:0 4px 16px rgba(255,92,0,0.5);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background:var(--cream); border-bottom:2px solid var(--cream-2);
  padding:24px 0;
}
.trust-strip .container {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; divide-x:1px solid var(--cream-2);
}
.trust-item {
  display:flex; align-items:center; gap:14px;
  padding:0 24px; border-right:1px solid var(--cream-2);
}
.trust-item:last-child { border-right:none; }
.trust-icon {
  width:44px; height:44px; flex-shrink:0;
  background:var(--anthracite); border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  color:var(--orange); font-size:1.1rem;
}
.trust-text strong {
  display:block; font-size:0.9rem; font-weight:700;
  color:var(--anthracite); line-height:1.2;
  font-family:'Barlow Condensed',sans-serif; font-size:1rem; letter-spacing:0.01em; text-transform:uppercase;
}
.trust-text span { font-size:0.78rem; color:var(--text-light); }

/* ===== SECTION COMMON ===== */
.section { padding:80px 0; }
.section-alt { background:var(--cream); }

.section-header { text-align:center; max-width:560px; margin:0 auto 52px; }
.section-label {
  display:inline-block; background:var(--orange); color:var(--white);
  font-family:'Barlow Condensed',sans-serif; font-weight:700;
  font-size:0.8rem; letter-spacing:0.1em; text-transform:uppercase;
  padding:5px 14px; border-radius:100px; margin-bottom:14px;
}
.section-title {
  font-family:'Barlow Condensed',sans-serif; font-weight:900;
  font-size:clamp(2rem,3.5vw,2.8rem); line-height:1.05;
  text-transform:uppercase; letter-spacing:-0.01em;
  margin-bottom:14px; color:var(--anthracite);
}
.section-desc { color:var(--text-mid); font-size:0.95rem; line-height:1.7; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}

.product-card {
  background:var(--white); border:2px solid var(--cream-2);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--transition); position:relative;
}
.product-card:hover {
  border-color:var(--orange); transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,0.1);
}

.product-img-wrap {
  position:relative; overflow:hidden; background:var(--cream);
  aspect-ratio:4/3;
}
.product-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform:scale(1.04); }

.product-ribbon {
  position:absolute; top:0; left:0;
  background:var(--orange); color:var(--white);
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:0.78rem; letter-spacing:0.1em;
  text-transform:uppercase; padding:6px 12px;
  clip-path:polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  padding-right:20px;
}
.product-ribbon.ribbon-new { background:var(--anthracite); }

.product-save-tag {
  position:absolute; bottom:12px; right:12px;
  background:var(--anthracite); color:var(--orange);
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:1.1rem;
  padding:4px 12px; border-radius:var(--radius);
  letter-spacing:0.02em;
}

.product-body { padding:20px; }
.product-name {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size:1.3rem; text-transform:uppercase; line-height:1.1;
  margin-bottom:10px; color:var(--anthracite);
}
.product-specs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.spec-chip {
  font-size:0.74rem; font-weight:600; letter-spacing:0.04em;
  background:var(--cream); color:var(--text-mid);
  border:1px solid var(--cream-2); padding:4px 10px;
  border-radius:100px; text-transform:uppercase;
}

.product-pricing {
  display:flex; align-items:baseline; gap:10px; margin-bottom:16px;
}
.price-old {
  font-family:'Barlow Condensed',sans-serif; font-size:1.1rem;
  color:var(--cement); text-decoration:line-through; font-weight:600;
}
.price-current {
  font-family:'Barlow Condensed',sans-serif; font-weight:900;
  font-size:1.9rem; color:var(--anthracite); line-height:1;
}
.price-currency { font-size:1.1rem; font-weight:700; }

.product-actions { display:flex; flex-direction:column; gap:8px; }

/* ===== SIZE SELECTOR ===== */
.size-selector { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.size-btn {
  min-width:38px; height:34px; border:1.5px solid var(--cream-2);
  background:var(--white); color:var(--text-mid);
  font-family:'DM Sans',sans-serif; font-weight:600; font-size:0.8rem;
  border-radius:var(--radius); cursor:pointer; transition:var(--transition);
  padding:0 8px;
}
.size-btn:hover, .size-btn.active {
  border-color:var(--orange); color:var(--orange); background:rgba(255,92,0,0.06);
}

/* ===== WHY SECTION ===== */
.why-grid {
  display:grid; grid-template-columns:1fr 1.1fr;
  gap:64px; align-items:center;
}
.why-img { position:relative; }
.why-img img {
  border-radius:var(--radius-lg); width:100%;
  box-shadow:var(--shadow-lg);
}
.why-stat-box {
  position:absolute; bottom:-24px; right:-24px;
  background:var(--orange); color:var(--white);
  padding:28px 32px 24px; border-radius:20px;
  box-shadow:0 12px 40px rgba(255,92,0,0.45);
  text-align:center; min-width:160px;
}
.why-stat-num {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:5rem; line-height:1; display:block;
}
.why-stat-label { font-size:0.92rem; font-weight:700; opacity:1; display:block; margin-top:6px; line-height:1.3; }

.why-features { display:flex; flex-direction:column; gap:20px; margin-top:32px; }
.why-feature {
  display:flex; gap:16px; align-items:flex-start;
}
.why-feature-icon {
  width:44px; height:44px; flex-shrink:0;
  border-radius:var(--radius); background:var(--cream);
  border:2px solid var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--orange); font-size:1.1rem;
  transition:var(--transition);
}
.why-feature:hover .why-feature-icon {
  background:var(--orange); border-color:var(--orange); color:var(--white);
}
.why-feature-text h4 {
  font-weight:700; font-size:0.95rem; margin-bottom:4px;
  color:var(--anthracite);
}
.why-feature-text p { font-size:0.85rem; color:var(--text-mid); line-height:1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

.testimonial-card {
  background:var(--white); border:2px solid var(--cream-2);
  border-radius:var(--radius-lg); padding:24px;
  transition:var(--transition);
}
.testimonial-card:hover { border-color:var(--orange); }

.stars { color:#F59E0B; font-size:0.9rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-text {
  font-size:0.9rem; color:var(--text-mid); line-height:1.7;
  font-style:italic; margin-bottom:18px;
}
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--anthracite); color:var(--white);
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
}
.author-name { font-weight:700; font-size:0.9rem; margin-bottom:2px; }
.author-meta { font-size:0.78rem; color:var(--text-light); }

/* ===== BLOG PREVIEW ===== */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

.blog-card {
  background:var(--white); border:2px solid var(--cream-2);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--transition);
}
.blog-card:hover { border-color:var(--anthracite-3); transform:translateY(-3px); box-shadow:var(--shadow-md); }

.blog-thumb {
  aspect-ratio:16/9; background:var(--anthracite);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; position:relative;
}
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform:scale(1.05); }
.blog-thumb-placeholder {
  color:var(--cement); font-size:2rem; opacity:0.3;
}
.blog-cat-tag {
  position:absolute; bottom:12px; left:12px;
  background:var(--orange); color:var(--white);
  font-family:'Barlow Condensed',sans-serif; font-weight:700;
  font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase;
  padding:4px 10px; border-radius:100px;
}

.blog-body { padding:18px; }
.blog-meta { font-size:0.75rem; color:var(--text-light); margin-bottom:10px; display:flex; gap:12px; }
.blog-title {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size:1.15rem; text-transform:uppercase; line-height:1.15;
  color:var(--anthracite); margin-bottom:10px;
  transition:var(--transition);
}
.blog-card:hover .blog-title { color:var(--orange); }
.blog-excerpt { font-size:0.82rem; color:var(--text-mid); line-height:1.6; }

.blog-post {
  max-width:880px;
  margin:0 auto;
  padding:48px 24px 72px;
}
.blog-post h1,
.blog-post h2,
.blog-post h3,
.blog-post h4 {
  color:var(--anthracite);
  line-height:1.15;
  overflow-wrap:anywhere;
}
.blog-post p,
.blog-post li {
  overflow-wrap:anywhere;
}
.blog-post table {
  width:100% !important;
  max-width:100%;
  border-collapse:collapse;
}
.blog-post th,
.blog-post td {
  overflow-wrap:anywhere;
  word-break:normal;
}

/* ===== FAQ ===== */
.faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }

.faq-item {
  border:2px solid var(--cream-2); border-radius:var(--radius-lg);
  overflow:hidden; transition:border-color 0.2s;
}
.faq-item.open { border-color:var(--orange); }

.faq-question {
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 22px; cursor:pointer;
  font-weight:700; font-size:0.95rem; color:var(--anthracite);
  background:var(--white); transition:background 0.2s;
  gap:16px;
}
.faq-item.open .faq-question { background:var(--cream); }
.faq-question:hover { background:var(--cream); }

.faq-icon {
  width:28px; height:28px; flex-shrink:0;
  border:2px solid var(--cream-2); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; color:var(--cement);
  transition:var(--transition);
}
.faq-item.open .faq-icon {
  background:var(--orange); border-color:var(--orange); color:var(--white);
  transform:rotate(45deg);
}

.faq-answer {
  max-height:0; overflow:hidden; transition:max-height 0.35s ease;
}
.faq-answer-inner {
  padding:0 22px 18px; font-size:0.9rem; color:var(--text-mid); line-height:1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:var(--anthracite); padding:72px 0; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(-55deg,transparent,transparent 40px,rgba(255,92,0,0.04) 40px,rgba(255,92,0,0.04) 42px);
}
.cta-banner .container {
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-text .section-title { color:var(--white); text-align:left; }
.cta-text .section-title .accent { color:var(--orange); }
.cta-text p { color:var(--cement-light); font-size:0.95rem; margin-top:12px; }
.cta-actions { display:flex; gap:14px; flex-wrap:wrap; }

/* ===== FOOTER ===== */
footer {
  background:var(--anthracite-2); color:var(--cement-light);
  border-top:4px solid var(--anthracite-3);
  padding:56px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:40px; padding-bottom:48px;
  border-bottom:1px solid var(--anthracite-3);
}
.footer-brand .logo { margin-bottom:16px; }
.footer-brand p {
  font-size:0.85rem; line-height:1.7; max-width:280px; margin-bottom:20px;
}
.footer-socials { display:flex; gap:10px; }
.social-btn {
  width:36px; height:36px; border-radius:var(--radius);
  background:var(--anthracite-3); color:var(--cement-light);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; transition:var(--transition);
}
.social-btn:hover { background:var(--orange); color:var(--white); }

.footer-col h4 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size:1rem; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--white); margin-bottom:18px;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  font-size:0.85rem; color:var(--cement-light); transition:var(--transition);
  display:flex; align-items:center; gap:8px;
}
.footer-links a:hover { color:var(--orange); }
.footer-links a i { font-size:0.75rem; color:var(--orange); opacity:0.7; }

.footer-bottom {
  padding:20px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.8rem; flex-wrap:wrap; gap:12px;
}
.footer-bottom a { color:var(--cement); }
.footer-bottom a:hover { color:var(--orange); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position:fixed; bottom:24px; right:24px; z-index:500;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; box-shadow:0 6px 20px rgba(37,211,102,0.5);
  transition:var(--transition);
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 8px 28px rgba(37,211,102,0.6); }
[dir="rtl"] .wa-float { right:auto; left:24px; }

/* ===== MOBILE NAV ===== */
@media (max-width:900px) {
  .mobile-toggle { display:block; }
  .nav-links {
    display:none; position:absolute; top:72px; left:0; right:0;
    background:var(--white); border-bottom:2px solid var(--cream-2);
    flex-direction:column; padding:16px; gap:4px;
    box-shadow:var(--shadow-md);
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 16px; width:100%; border-radius:var(--radius); }
  .navbar { position:relative; }
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero {
    padding:78px 0 50px;
    min-height:580px;
  }
  .hero .container { min-height:452px; padding-bottom:0; gap:0; }
  .why-grid { grid-template-columns:1fr; gap:40px; }
  .why-stat-box { right:0; bottom:-16px; min-width:140px; }
  .trust-strip .container { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:none; }
  .checkout-grid { grid-template-columns:1fr; }
  .order-summary { position:static; order:-1; }
}

@media (max-width:768px) {
  .section { padding:56px 0; }
  .hero {
    min-height:auto;
    padding:330px 0 44px;
    background:
      linear-gradient(180deg, rgba(10,10,12,0.04) 0%, rgba(10,10,12,0.22) 34%, rgba(10,10,12,0.84) 64%, var(--anthracite) 100%),
      url('../images/hero-mobile-pantalon-clean.jpg') center top / cover no-repeat;
  }
  [dir="rtl"] .hero {
    background:
      linear-gradient(180deg, rgba(10,10,12,0.04) 0%, rgba(10,10,12,0.22) 34%, rgba(10,10,12,0.84) 64%, var(--anthracite) 100%),
      url('../images/hero-mobile-pantalon-clean.jpg') center top / cover no-repeat;
  }
  .hero::before {
    background:
      repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 28px,
        rgba(255,92,0,0.035) 28px,
        rgba(255,92,0,0.035) 30px
      );
  }
  .hero .container {
    display:block;
    position:relative;
    z-index:1;
    padding-bottom:0;
  }
  .hero-img { display:none; }
  .hero-content {
    max-width:360px;
    text-shadow:0 2px 18px rgba(0,0,0,0.65);
  }
  .hero-label { margin-bottom:16px; }
  .hero-title { margin-bottom:14px; }
  .hero-desc {
    color:#F3EDE3;
    margin-bottom:24px;
  }
  .hero-badges { margin-bottom:24px; }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .blog-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .cta-banner .container { flex-direction:column; text-align:center; }
  .cta-text .section-title { text-align:center; }
  .cta-actions { justify-content:center; }
  .hero-title { font-size:2.6rem; }
  .trust-strip .container { grid-template-columns:1fr 1fr; }
  .checkout-section { padding:30px 0 56px; }
  .checkout-form, .order-summary { padding:20px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .order-item { grid-template-columns:56px 1fr; }
  .order-item-price { grid-column:2; }
  .top-bar-static { gap:10px; justify-content:flex-start; }
  .blog-post {
    padding:34px 20px 56px;
  }
  .blog-post table {
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    white-space:normal;
  }
  .blog-post th,
  .blog-post td {
    min-width:112px;
    padding:10px !important;
    font-size:0.84rem;
    line-height:1.45;
  }
}

@media (max-width:480px) {
  .products-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .trust-strip .container { grid-template-columns:1fr; }
  .trust-item { border-right:none; border-bottom:1px solid var(--cream-2); padding:14px 20px; }
  .trust-item:last-child { border-bottom:none; }
  .cart-drawer { width:100%; }
  .hero-cta { flex-direction:column; }
  .hero-cta .btn { text-align:center; justify-content:center; }
  .checkout-head h1 { font-size:2.2rem; }
  .checkout-card-title { gap:10px; }
  .checkout-card-title > i { width:38px; height:38px; }
  .checkout-submit { font-size:0.93rem; padding:15px 14px; }
  .nav-actions { gap:8px; }
  .cart-btn { padding:8px 12px; }
}

/* ===== RTL OVERRIDES ===== */
[dir="rtl"] .marquee-track { animation-direction:reverse; }
[dir="rtl"] .product-ribbon { left:auto; right:0; clip-path:polygon(10px 0, 100% 0, 100% 100%, 0 100%); padding-right:12px; padding-left:20px; }
[dir="rtl"] .trust-item { border-right:none; border-left:1px solid var(--cream-2); }
[dir="rtl"] .trust-item:last-child { border-left:none; }
[dir="rtl"] .footer-brand p { text-align:right; }
[dir="rtl"] .cta-text .section-title { text-align:right; }
[dir="rtl"] .hero-img-badge { left:auto; right:20px; }
[dir="rtl"] .blog-cat-tag { left:auto; right:12px; }
[dir="rtl"] .why-stat-box { right:auto; left:-20px; }
[dir="rtl"] .cart-count { right:auto; left:-7px; }
[dir="rtl"] .footer-links a i { order:-1; }


/* ===== PRODUCT DETAIL PAGE ===== */

/* --- layout --- */
.product-detail {
  display:grid;
  grid-template-columns:45% 1fr;
  gap:56px;
  align-items:start;
  padding:32px 0 64px;
}

/* --- gallery --- */
.product-gallery { position:sticky; top:90px; }

.product-gallery .main-img {
  width:100%;
  display:block;
  border-radius:var(--radius-lg);
  background:var(--cream);
  object-fit:contain;
  max-height:540px;
  padding:16px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--cream-2);
}

.product-gallery .thumbnails {
  display:flex;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}

.product-gallery .thumbnails img {
  width:74px;
  height:74px;
  object-fit:cover;
  border-radius:var(--radius);
  border:2px solid var(--cream-2);
  cursor:pointer;
  transition:var(--transition);
  background:var(--cream);
}

.product-gallery .thumbnails img.active,
.product-gallery .thumbnails img:hover { border-color:var(--orange); }

/* --- info column header --- */
.product-info > h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:2.6rem;
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.02em;
  color:var(--anthracite);
  margin-bottom:10px;
}

.product-info .rating {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  font-size:0.85rem;
  color:var(--text-mid);
}
.product-info .rating .stars { color:var(--orange); font-size:1rem; }

.product-info .product-tagline {
  font-size:0.875rem;
  color:var(--text-light);
  margin-bottom:18px;
  line-height:1.6;
}

/* --- price block --- */
.product-info .product-price {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  padding:16px 0;
  margin-bottom:20px;
  border-top:1px solid var(--cream-2);
  border-bottom:1px solid var(--cream-2);
}

.product-info .price-current {
  font-family:'Barlow Condensed',sans-serif;
  font-size:2.8rem;
  font-weight:900;
  color:var(--anthracite);
  line-height:1;
  letter-spacing:-0.03em;
}

.product-info .price-old {
  font-size:1.05rem;
  color:var(--cement);
  text-decoration:line-through;
}

.product-info .price-save {
  font-size:0.68rem;
  font-weight:700;
  letter-spacing:0.08em;
  background:var(--orange);
  color:var(--white);
  padding:4px 9px;
  border-radius:3px;
  text-transform:uppercase;
  align-self:center;
}

/* --- spec grid --- */
.spec-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  margin-bottom:22px;
}

.spec-item {
  display:flex;
  align-items:flex-start;
  gap:9px;
  padding:10px 12px;
  background:var(--cream);
  border-radius:var(--radius);
  border:1.5px solid var(--cream-2);
}

.spec-item.highlight {
  background:var(--anthracite);
  border-color:var(--anthracite);
}

.spec-item i {
  font-size:0.88rem;
  color:var(--orange);
  flex-shrink:0;
  width:15px;
  text-align:center;
  margin-top:2px;
}

.spec-item strong {
  display:block;
  font-size:0.76rem;
  font-weight:700;
  color:var(--anthracite);
  line-height:1.35;
  letter-spacing:0.01em;
}

.spec-item span {
  display:block;
  font-size:0.66rem;
  color:var(--cement);
  margin-top:1px;
  line-height:1.4;
}

.spec-item.highlight strong { color:var(--cream); }
.spec-item.highlight span  { color:var(--cement-light); }

/* --- size selector --- */
.product-info .size-selector { margin-bottom:6px; }

.size-label-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}

.size-label-row label {
  font-size:0.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--text-mid);
}

.guide-taille-toggle {
  font-size:0.72rem;
  font-weight:600;
  color:var(--orange);
  cursor:pointer;
  background:none;
  border:none;
  padding:0;
  font-family:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}

.product-info .sizes {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.product-info .size-btn {
  min-width:44px;
  height:40px;
  padding:0 10px;
  border:1.5px solid var(--cream-2);
  background:var(--white);
  border-radius:var(--radius);
  font-family:'Barlow Condensed',sans-serif;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.03em;
  cursor:pointer;
  transition:var(--transition);
  color:var(--text);
}

.product-info .size-btn:hover {
  border-color:var(--anthracite);
  background:var(--cream);
}

.product-info .size-btn.active {
  background:var(--anthracite);
  border-color:var(--anthracite);
  color:var(--white);
}

/* --- guide taille inline --- */
.guide-taille-inline {
  display:none;
  margin-bottom:14px;
  padding:14px 15px;
  background:var(--cream);
  border-radius:var(--radius);
  border:1px solid var(--cream-2);
}

.guide-taille-inline.open { display:block; }

.gt-inline-head {
  font-size:0.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--anthracite);
  margin-bottom:10px;
}

.gt-inline-fields { display:flex; gap:8px; margin-bottom:8px; }
.gt-inline-field { flex:1; }

.gt-inline-field label {
  display:block;
  font-size:0.64rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.07em;
  color:var(--cement);
  margin-bottom:4px;
}

.gt-inline-field input {
  width:100%;
  padding:8px 10px;
  border:1.5px solid var(--cream-2);
  border-radius:var(--radius);
  font-size:0.9rem;
  background:var(--white);
  color:var(--text);
  box-sizing:border-box;
  font-family:inherit;
}

.gt-inline-field input:focus {
  outline:none;
  border-color:var(--orange);
}

.gt-inline-btn {
  width:100%;
  padding:9px 0;
  background:var(--orange);
  color:var(--white);
  border:none;
  border-radius:var(--radius);
  font-family:'Barlow Condensed',sans-serif;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:var(--transition);
}

.gt-inline-btn:hover { background:var(--orange-dark); }

.gt-inline-result {
  display:none;
  margin-top:8px;
  padding:10px 12px;
  border-radius:var(--radius);
  background:var(--anthracite);
  color:var(--cream);
  line-height:1.4;
}

.gt-inline-result.visible { display:block; }

.gt-inline-result .gt-size-label {
  font-family:'Barlow Condensed',sans-serif;
  font-size:1.5rem;
  font-weight:800;
  color:var(--orange);
  display:block;
  margin-bottom:1px;
}

.gt-inline-result .gt-size-note { font-size:0.7rem; color:var(--cement-light); }

.gt-inline-result.not-found {
  background:var(--cream-2);
  color:var(--text-mid);
}

/* --- qty --- */
.product-info .qty-selector { margin-bottom:14px; }

.product-info .qty-selector > label {
  display:block;
  font-size:0.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--text-mid);
  margin-bottom:8px;
}

.qty-controls {
  display:inline-flex;
  align-items:center;
  border:1.5px solid var(--cream-2);
  border-radius:var(--radius);
  overflow:hidden;
}

.qty-minus,.qty-plus {
  width:38px;
  height:40px;
  border:none;
  background:var(--cream);
  font-size:1.15rem;
  cursor:pointer;
  transition:var(--transition);
  color:var(--text);
  font-family:inherit;
}

.qty-minus:hover,.qty-plus:hover { background:var(--anthracite); color:var(--white); }

.qty-input {
  width:52px;
  height:40px;
  border:none;
  border-left:1.5px solid var(--cream-2);
  border-right:1.5px solid var(--cream-2);
  text-align:center;
  font-size:0.95rem;
  font-weight:600;
  background:var(--white);
  font-family:inherit;
  -moz-appearance:textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance:none; }

/* --- CTA buttons --- */
.add-cart-btn {
  width:100%;
  padding:15px 18px;
  font-size:0.95rem;
  font-weight:700;
  letter-spacing:0.04em;
  margin-bottom:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
}

.whatsapp-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  width:100%;
  padding:13px 18px;
  background:#25D366;
  color:var(--white) !important;
  border-radius:var(--radius);
  font-weight:700;
  font-size:0.92rem;
  transition:var(--transition);
  margin-bottom:18px;
  text-decoration:none;
}

.whatsapp-btn:hover { background:#1ebd5a; }

/* --- livraison box --- */
.livraison-box {
  padding:16px 18px;
  background:var(--cream);
  border-radius:var(--radius);
  border:1px solid var(--cream-2);
}

.livraison-box h4 {
  font-size:0.68rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--anthracite);
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--cream-2);
}

.livraison-box .lv-item {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:0.82rem;
  color:var(--text-mid);
  margin-bottom:8px;
  line-height:1.4;
}

.livraison-box .lv-item:last-child { margin-bottom:0; }
.livraison-box .lv-item i { color:var(--orange); flex-shrink:0; width:14px; text-align:center; }

/* --- responsive --- */
@media (max-width:900px) {
  .product-detail {
    grid-template-columns:1fr;
    gap:28px;
  }
  .product-gallery {
    position:static;
    max-width:480px;
    margin:0 auto;
  }
}

@media (max-width:540px) {
  .product-info > h1 { font-size:1.9rem; }
  .product-info .price-current { font-size:2.2rem; }
  .spec-grid { grid-template-columns:1fr; gap:6px; }
  .gt-inline-fields { flex-direction:column; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  padding:12px 0;
  border-bottom:1px solid var(--cream-2);
  background:var(--white);
}

.breadcrumb {
  display:flex;
  align-items:center;
  gap:6px;
  font-size:0.78rem;
  color:var(--cement);
  flex-wrap:wrap;
}

.breadcrumb a {
  color:var(--cement);
  transition:color 0.2s;
}

.breadcrumb a:hover { color:var(--orange); }

.breadcrumb span:not(.breadcrumb-sep) { color:var(--anthracite); font-weight:600; }
.breadcrumb-sep { color:var(--cement-light); }
