/* ============================================================
   ALWAN FURNITURE LLC — Luxury Furniture Store
   Brand: Deep Emerald Green + Gold + Cream
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --green-900: #0f2a20;
  --green-800: #14352a;
  --green-700: #1d4435;
  --green-600: #2a5a45;
  --gold-500: #c6a44e;
  --gold-400: #d4b563;
  --gold-300: #e3c87f;
  --cream: #f6f1e7;
  --cream-dark: #ece3d2;
  --bg: #faf8f3;
  --white: #ffffff;
  --ink: #23271f;
  --ink-soft: #5a5f54;
  --line: #e6ded0;
  --danger: #b3402f;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 42, 32, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 42, 32, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 42, 32, 0.16);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;

  --container: 1240px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--green-900); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 12px;
  display: inline-block;
}
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--ink-soft); margin-top: 14px; }
.divider-line { width: 64px; height: 2px; background: var(--gold-500); margin: 16px auto 0; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: .03em;
  transition: all .25s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-gold { background: var(--gold-500); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(198,164,78,.4); }
.btn-green { background: var(--green-800); color: var(--cream); }
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--green-800); color: var(--green-800); background: transparent; }
.btn-outline:hover { background: var(--green-800); color: var(--cream); }
.btn-ghost-gold { border: 1.5px solid var(--gold-400); color: var(--gold-300); }
.btn-ghost-gold:hover { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar {
  background: var(--green-900); color: var(--cream);
  font-size: 13px; letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; flex-wrap: wrap; gap: 6px; }
.topbar a:hover { color: var(--gold-300); }
.topbar .tb-left { display: flex; gap: 18px; align-items: center; }
.topbar .tb-right { display: flex; gap: 16px; align-items: center; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; }
.brand img { height: 56px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-weight: 500; font-size: 15px;
  color: var(--green-900); border-radius: 8px; transition: color .2s;
}
.nav > li > a:hover { color: var(--gold-500); }
.nav .has-mega { position: relative; }
.caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .6; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 22px; min-width: 260px;
  opacity: 0; visibility: hidden; transition: all .22s ease; z-index: 120;
}
.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--gold-500); margin-bottom: 12px; }
.mega a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--ink); transition: all .18s; }
.mega a:hover { color: var(--green-700); padding-left: 6px; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--green-900);
  position: relative; transition: background .2s;
}
.icon-btn:hover { background: var(--cream-dark); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold-500); color: var(--green-900);
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: grid; place-items: center; padding: 0 4px;
}
.burger { display: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; background: var(--green-900); }
.slider { position: relative; overflow: hidden; }
.slides { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: auto; display: block; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(15,42,32,.55); color: var(--cream);
  display: grid; place-items: center; z-index: 5; transition: all .2s;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--gold-500); color: var(--green-900); }
.slider-btn svg { width: 22px; height: 22px; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 5; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(246,241,231,.5); cursor: pointer; transition: all .25s; }
.dot.active { background: var(--gold-400); width: 28px; border-radius: 6px; }

/* ---------- Feature strip ---------- */
.features { background: var(--green-800); color: var(--cream); }
.features .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 26px; padding-bottom: 26px; }
.feature { display: flex; align-items: center; gap: 14px; }
.feature .fi { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; background: rgba(198,164,78,.16); display: grid; place-items: center; color: var(--gold-300); }
.feature .fi svg { width: 24px; height: 24px; }
.feature h4 { color: var(--cream); font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.feature p { font-size: 12.5px; color: rgba(246,241,231,.7); }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1/1; display: block;
  background: var(--cream-dark);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,42,32,.82) 0%, rgba(15,42,32,.18) 48%, rgba(15,42,32,0) 100%); }
.cat-card .cat-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; z-index: 2; }
.cat-card .cat-meta h3 { color: var(--white); font-size: 19px; }
.cat-card .cat-meta span { color: var(--gold-300); font-size: 12.5px; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.cat-card .cat-meta span svg { width: 14px; height: 14px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pc-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .pc-media img { transform: scale(1.06); }
.pc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold-500); color: var(--green-900);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px; text-transform: uppercase;
}
.pc-badge.sale { background: var(--danger); color: #fff; }
.pc-wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: var(--green-800); box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(-6px); transition: all .25s;
}
.product-card:hover .pc-wish { opacity: 1; transform: translateY(0); }
.pc-wish:hover { background: var(--green-800); color: var(--gold-300); }
.pc-wish svg { width: 18px; height: 18px; }

.pc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.pc-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-500); font-weight: 600; }
.pc-title { font-family: var(--font-display); font-size: 17px; color: var(--green-900); margin: 5px 0 8px; line-height: 1.25; }
.pc-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 10px; color: var(--gold-500); font-size: 13px; }
.pc-rating span { display: inline-flex; }
.pc-rating svg { width: 15px; height: 15px; }
.pc-rating .count { color: var(--ink-soft); margin-left: 5px; font-size: 12px; }
.pc-price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pc-price .cur { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.pc-price .now { font-family: var(--font-display); font-size: 21px; color: var(--green-800); font-weight: 700; }
.pc-price .was { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; }
.pc-actions { margin-top: 14px; }
.pc-add {
  width: 100%; padding: 11px; border-radius: 999px;
  background: var(--green-800); color: var(--cream);
  font-weight: 600; font-size: 13.5px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .22s;
}
.pc-add:hover { background: var(--gold-500); color: var(--green-900); }
.pc-add svg { width: 17px; height: 17px; }
.tabby-hint { font-size: 11.5px; color: var(--ink-soft); margin-top: 9px; text-align: center; }
.tabby-hint b { color: var(--green-700); }

/* ============================================================
   DEALS BANNER
   ============================================================ */
.deal {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  border-radius: 20px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  box-shadow: var(--shadow-lg);
}
.deal::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(198,164,78,.18), transparent 60%); }
.deal-text { padding: 54px 48px; position: relative; z-index: 2; }
.deal-text .eyebrow { color: var(--gold-300); }
.deal-text h2 { color: var(--cream); font-size: clamp(28px, 3.5vw, 42px); }
.deal-text p { color: rgba(246,241,231,.82); margin: 14px 0 26px; max-width: 420px; }
.deal-media { position: relative; min-height: 320px; align-self: stretch; }
.deal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.deal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-800), transparent 30%); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: var(--cream); padding: 56px 0; text-align: center; position: relative;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(198,164,78,.16), transparent 55%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); font-size: clamp(32px, 5vw, 52px); }
.page-hero .crumbs { color: rgba(246,241,231,.7); font-size: 14px; margin-top: 12px; }
.page-hero .crumbs a:hover { color: var(--gold-300); }
.page-hero .crumbs .sep { margin: 0 8px; opacity: .6; }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 34px; align-items: start; }
.filters {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 16px);
}
.filters h3 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-500); margin-bottom: 14px; }
.filter-group { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-list li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 8px; font-size: 14.5px; color: var(--ink);
  transition: all .18s; cursor: pointer;
}
.filter-list li > a:hover { background: var(--cream); color: var(--green-800); }
.filter-list li > a.active { background: var(--green-800); color: var(--cream); font-weight: 600; }
.filter-list li > a .num { font-size: 12px; opacity: .65; }
.filter-list .group-label { font-weight: 700; color: var(--green-900); font-size: 13px; letter-spacing: .04em; padding: 12px 10px 4px; text-transform: uppercase; }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; gap: 14px; flex-wrap: wrap;
}
.shop-toolbar .count { color: var(--ink-soft); font-size: 14px; }
.shop-toolbar .count b { color: var(--green-900); }
.shop-toolbar select { padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); font-family: inherit; font-size: 14px; color: var(--ink); cursor: pointer; }
.filter-toggle { display: none; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); grid-column: 1 / -1; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(15,42,32,.5); z-index: 200; opacity: 0; visibility: hidden; transition: all .3s; }
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw;
  background: var(--bg); z-index: 210; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); background: var(--green-900); color: var(--cream); }
.cart-head h3 { color: var(--cream); font-size: 20px; }
.cart-close { color: var(--cream); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.cart-close:hover { background: rgba(255,255,255,.1); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 18px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.cart-item h4 { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--green-900); }
.cart-item .ci-cat { font-size: 12px; color: var(--gold-500); }
.cart-item .ci-price { color: var(--green-700); font-weight: 700; margin-top: 4px; font-size: 14px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 6px; }
.qty button { width: 26px; height: 26px; display: grid; place-items: center; color: var(--green-800); font-size: 16px; }
.qty button:hover { background: var(--cream); }
.qty span { min-width: 28px; text-align: center; font-size: 13px; font-weight: 600; }
.ci-remove { color: var(--ink-soft); font-size: 12px; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; }
.ci-remove:hover { color: var(--danger); }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--ink-soft); }
.cart-empty svg { width: 56px; height: 56px; color: var(--cream-dark); margin: 0 auto 14px; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--white); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cart-total .lbl { color: var(--ink-soft); }
.cart-total .amt { font-family: var(--font-display); font-size: 24px; color: var(--green-800); font-weight: 700; }
.cart-pay-note { font-size: 12px; color: var(--ink-soft); text-align: center; margin: 10px 0 14px; }
.cart-foot .btn { width: 100%; justify-content: center; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--green-900); color: var(--cream); padding: 13px 22px; border-radius: 999px;
  box-shadow: var(--shadow-lg); z-index: 300; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 9px; opacity: 0; visibility: hidden; transition: all .3s;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-300); }

/* ============================================================
   PAYMENT STRIP
   ============================================================ */
.pay-strip { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pay-strip .container { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 26px 22px; text-align: center; }
.pay-strip .pay-lbl { font-weight: 600; color: var(--green-900); letter-spacing: .02em; }
.pay-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pay-badge {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 16px; font-weight: 700; font-size: 14px; color: var(--green-800);
  display: inline-flex; align-items: center; gap: 7px; box-shadow: var(--shadow-sm);
}
.pay-badge.tabby { color: #3fceac; }
.pay-badge.tamara { color: #b07cf0; }
.pay-badge .dot-ic { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }

/* ============================================================
   ABOUT / CONTENT PAGES
   ============================================================ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 28px; margin: 36px 0 14px; }
.prose h3 { font-size: 21px; margin: 26px 0 10px; font-family: var(--font-body); font-weight: 700; color: var(--green-800); }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.prose ul.bullets { margin: 0 0 18px; padding-left: 4px; }
.prose ul.bullets li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-soft); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; background: var(--gold-500); border-radius: 50%; }
.prose .lead { font-size: 18px; color: var(--ink); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img .badge-float {
  position: absolute; bottom: 20px; left: 20px; background: var(--gold-500); color: var(--green-900);
  border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-md);
}
.about-img .badge-float .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1; }
.about-img .badge-float .lbl { font-size: 12px; font-weight: 600; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-display); font-size: 40px; color: var(--green-800); font-weight: 700; }
.stat .lbl { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .vi { width: 56px; height: 56px; border-radius: 14px; background: var(--green-800); color: var(--gold-300); display: grid; place-items: center; margin-bottom: 16px; }
.value-card .vi svg { width: 28px; height: 28px; }
.value-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 14.5px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.testi .stars { color: var(--gold-500); margin-bottom: 14px; letter-spacing: 2px; }
.testi p { color: var(--ink); font-size: 15px; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--green-800); color: var(--gold-300); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.testi .who .nm { font-weight: 600; color: var(--green-900); font-size: 15px; }
.testi .who .role { font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================
   NEWSLETTER + FOOTER
   ============================================================ */
.newsletter {
  background: linear-gradient(120deg, var(--green-900), var(--green-700)); color: var(--cream);
  border-radius: 20px; padding: 50px; text-align: center; position: relative; overflow: hidden;
}
.newsletter::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(198,164,78,.18), transparent 60%); }
.newsletter > * { position: relative; z-index: 2; }
.newsletter h2 { color: var(--cream); font-size: clamp(26px, 3.5vw, 38px); }
.newsletter p { color: rgba(246,241,231,.8); margin: 12px 0 26px; }
.news-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.news-form input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(246,241,231,.3); background: rgba(255,255,255,.08); color: var(--cream); font-family: inherit; font-size: 14px; }
.news-form input::placeholder { color: rgba(246,241,231,.55); }
.news-form input:focus { outline: none; border-color: var(--gold-400); }

.footer { background: var(--green-900); color: rgba(246,241,231,.75); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer .f-brand img { height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .95; }
.footer .f-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer .f-links li { margin-bottom: 11px; }
.footer .f-links a { font-size: 14px; transition: all .18s; }
.footer .f-links a:hover { color: var(--gold-300); padding-left: 4px; }
.footer .f-contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer .f-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex: 0 0 18px; margin-top: 3px; }
.f-social { display: flex; gap: 10px; margin-top: 18px; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; color: var(--cream); transition: all .2s; }
.f-social a:hover { background: var(--gold-500); color: var(--green-900); }
.f-social svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom .pay-mini { display: flex; gap: 8px; align-items: center; }
.footer-bottom .pay-mini span { background: rgba(255,255,255,.08); padding: 5px 11px; border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--cream); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .deal { grid-template-columns: 1fr; }
  .deal-media { min-height: 240px; order: -1; }
  .deal-media::after { background: linear-gradient(0deg, var(--green-800), transparent 40%); }
}

@media (max-width: 980px) {
  .nav, .header-actions .desk-only { display: none; }
  .burger { display: grid; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; left: 0; height: 100%; width: 300px; max-width: 86vw; z-index: 210; border-radius: 0; transform: translateX(-100%); transition: transform .3s; overflow-y: auto; }
  .filters.open { transform: translateX(0); }
  .filter-toggle { display: inline-flex; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values, .testi-grid { grid-template-columns: 1fr; }
}

/* ---- MOBILE: 2 cards per row everywhere ---- */
@media (max-width: 760px) {
  .section { padding: 48px 0; }
  .features .container { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pc-body { padding: 12px 12px 14px; }
  .pc-title { font-size: 14.5px; }
  .pc-price .now { font-size: 17px; }
  .pc-add { padding: 9px; font-size: 12.5px; }
  .pc-cat { font-size: 10px; }
  .cat-card .cat-meta h3 { font-size: 15px; }
  .deal-text { padding: 36px 26px; }
  .newsletter { padding: 36px 22px; }
  .news-form { flex-direction: column; }
  .news-form .btn { justify-content: center; }
}

/* ---- Topbar: keep everything on ONE line on mobile (swipeable) ---- */
@media (max-width: 760px) {
  .topbar { font-size: 12px; }
  .topbar .container {
    flex-wrap: nowrap; white-space: nowrap; gap: 14px;
    overflow-x: auto; justify-content: flex-start;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .topbar .container::-webkit-scrollbar { display: none; }
  .topbar .tb-left, .topbar .tb-right { flex: 0 0 auto; flex-wrap: nowrap; }
  .topbar .tb-left .hide-xs { display: inline-flex; }
  .lang-toggle { padding: 3px 9px; }

  /* ---- Slider arrows smaller so they don't cover the banner ---- */
  .slider-btn { width: 36px; height: 36px; }
  .slider-btn svg { width: 18px; height: 18px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-dots { bottom: 10px; }
}

@media (max-width: 480px) {
  .brand img { height: 46px; }
  .cat-grid { gap: 11px; }
  .product-grid { gap: 11px; }
  .pc-media { aspect-ratio: 1/1; }
  .footer-grid { grid-template-columns: 1fr; }
  .pc-rating { font-size: 11px; }
}

/* Mobile nav panel */
.mobile-nav { position: fixed; top: 0; left: 0; height: 100%; width: 320px; max-width: 88vw; background: var(--bg); z-index: 210; transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: var(--shadow-lg); }
.mobile-nav.open { transform: translateX(0); }
.mn-head { background: var(--green-900); padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; }
.mn-head img { height: 44px; filter: brightness(0) invert(1); }
.mn-close { color: var(--cream); width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; }
.mn-close:hover { background: rgba(255,255,255,.1); }
.mn-body { padding: 12px 8px; }
.mn-body a { display: block; padding: 13px 16px; font-size: 16px; color: var(--green-900); border-radius: 10px; font-weight: 500; }
.mn-body a:hover { background: var(--cream); color: var(--green-700); }
.mn-body .mn-group { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-500); padding: 16px 16px 6px; font-weight: 700; }
.mn-body .mn-sub { padding-left: 28px; font-size: 14.5px; color: var(--ink-soft); }
.mn-cta { padding: 16px; }
.mn-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   SEARCH BAR (wide, with category select)
   ============================================================ */
.search-wrap { flex: 1; max-width: 520px; margin: 0 10px; }
.search-bar {
  display: flex; align-items: stretch; width: 100%;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px;
  overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--gold-400); }
.search-cat {
  border: none; background: var(--cream); color: var(--green-900);
  font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 0 14px;
  cursor: pointer; max-width: 150px; border-right: 1px solid var(--line);
}
.search-cat:focus { outline: none; }
.search-input { flex: 1; border: none; padding: 12px 16px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: transparent; min-width: 0; }
.search-input:focus { outline: none; }
.search-input::placeholder { color: var(--ink-soft); }
.search-btn {
  background: var(--green-800); color: var(--cream); padding: 0 20px;
  display: grid; place-items: center; transition: background .2s;
}
.search-btn:hover { background: var(--gold-500); color: var(--green-900); }
.search-btn svg { width: 20px; height: 20px; }

/* Mobile search row (under header) */
.search-mobile { display: none; padding: 10px 0; background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: var(--header-h); z-index: 90; }
.search-mobile .search-cat { max-width: 120px; }

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(246,241,231,.35); border-radius: 999px;
  padding: 4px 12px; font-size: 13px; font-weight: 600; color: var(--cream);
  background: transparent; transition: all .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.12); border-color: var(--gold-400); }
.lang-toggle svg { width: 15px; height: 15px; opacity: .85; }
.header .lang-toggle { color: var(--green-900); border-color: var(--line); }
.header .lang-toggle:hover { background: var(--cream-dark); }

/* ============================================================
   COLLECTION BANNER SECTIONS (Bedroom / Office / Majlis)
   ============================================================ */
.collection { padding: 40px 0; }
.collection-banner {
  display: block; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 30px; position: relative;
  background: var(--cream-dark);
}
.collection-banner img { width: 100%; height: auto; display: block; transition: transform .6s ease; aspect-ratio: 1920/823; object-fit: cover; }
.collection-banner:hover img { transform: scale(1.02); }
.collection-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.collection-head .ch-left .eyebrow { margin-bottom: 6px; }
.collection-head h2 { font-size: clamp(24px, 3.4vw, 36px); }
.collection-head .ch-link { font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.collection-head .ch-link:hover { color: var(--gold-500); }
.collection-head .ch-link svg { width: 17px; height: 17px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pdp-gallery .pdp-main { border-radius: 16px; overflow: hidden; background: var(--cream); box-shadow: var(--shadow-sm); aspect-ratio: 1/1; }
.pdp-gallery .pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumbs button { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; background: var(--cream); }
.pdp-thumbs button.active { border-color: var(--gold-500); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .pdp-cat { color: var(--gold-500); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
.pdp-info h1 { font-size: clamp(26px, 3.5vw, 38px); margin: 8px 0 12px; }
.pdp-rating { display: flex; align-items: center; gap: 4px; color: var(--gold-500); margin-bottom: 18px; }
.pdp-rating svg { width: 17px; height: 17px; }
.pdp-rating .count { color: var(--ink-soft); font-size: 13px; margin-left: 6px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.pdp-price .now { font-family: var(--font-display); font-size: 34px; color: var(--green-800); font-weight: 700; }
.pdp-price .was { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; }
.pdp-desc { color: var(--ink-soft); margin-bottom: 26px; line-height: 1.7; }

.pdp-opt { margin-bottom: 24px; }
.pdp-opt .opt-label { font-weight: 600; color: var(--green-900); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.pdp-opt .opt-label .opt-val { color: var(--ink-soft); font-weight: 500; }
.swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; position: relative; transition: transform .15s; }
.swatch:hover { transform: scale(1.08); }
.swatch.active { border-color: var(--green-800); box-shadow: 0 0 0 2px var(--white) inset; }
.swatch.active::after { content: ""; position: absolute; inset: -6px; border: 2px solid var(--gold-500); border-radius: 50%; }
.size-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pill {
  padding: 10px 18px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--white); font-weight: 600; font-size: 14px; color: var(--ink); cursor: pointer;
  transition: all .18s; display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 84px;
}
.size-pill .sp-price { font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.size-pill:hover { border-color: var(--gold-400); }
.size-pill.active { border-color: var(--green-800); background: var(--green-800); color: var(--cream); }
.size-pill.active .sp-price { color: var(--gold-300); }

.pdp-buy { display: flex; align-items: center; gap: 14px; margin: 28px 0 18px; flex-wrap: wrap; }
.pdp-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.pdp-qty button { width: 42px; height: 46px; display: grid; place-items: center; color: var(--green-800); font-size: 20px; }
.pdp-qty button:hover { background: var(--cream); }
.pdp-qty span { min-width: 44px; text-align: center; font-weight: 700; }
.pdp-buy .btn { flex: 1; justify-content: center; min-width: 200px; height: 48px; }
.pdp-pay-note {
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 12px; align-items: center;
}
.pdp-pay-note b { color: var(--green-700); }
.pdp-pay-note > svg { width: 24px; height: 24px; flex: 0 0 24px; color: var(--gold-500); }
.pdp-meta { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 20px; }
.pdp-meta li { display: flex; gap: 10px; align-items: center; color: var(--ink-soft); font-size: 14px; margin-bottom: 10px; }
.pdp-meta svg { width: 18px; height: 18px; color: var(--gold-500); flex: 0 0 18px; }

/* ============================================================
   RTL SUPPORT (Arabic)
   ============================================================ */
[dir="rtl"] body { font-family: "Tajawal", "Jost", system-ui, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: "Tajawal", var(--font-display), serif; }
[dir="rtl"] .eyebrow { letter-spacing: .12em; }
[dir="rtl"] .topbar .container,
[dir="rtl"] .header .container { flex-direction: row-reverse; }
[dir="rtl"] .tb-left, [dir="rtl"] .tb-right { flex-direction: row-reverse; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .header-actions { flex-direction: row-reverse; }
[dir="rtl"] .search-cat { border-right: none; border-left: 1px solid var(--line); }
[dir="rtl"] .cat-card .cat-meta, [dir="rtl"] .prose, [dir="rtl"] .section-head { text-align: right; }
[dir="rtl"] .section-head { text-align: center; }
[dir="rtl"] .pc-add svg, [dir="rtl"] .btn svg { transform: scaleX(-1); }
[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .cart-drawer.open { transform: translateX(0); }
[dir="rtl"] .cart-item { grid-template-columns: auto 1fr 72px; }
[dir="rtl"] .mobile-nav { left: auto; right: 0; transform: translateX(100%); }
[dir="rtl"] .mobile-nav.open { transform: translateX(0); }
[dir="rtl"] .mn-body .mn-sub { padding-left: 16px; padding-right: 28px; }
[dir="rtl"] .wa-float { right: auto; left: 22px; }
[dir="rtl"] .filters { left: auto; right: 0; transform: translateX(100%); }
[dir="rtl"] .filters.open { transform: translateX(0); }
[dir="rtl"] .pdp-meta li, [dir="rtl"] .footer .f-contact li, [dir="rtl"] .prose ul.bullets li { flex-direction: row-reverse; }
[dir="rtl"] .prose ul.bullets li { padding-left: 0; padding-right: 26px; }
[dir="rtl"] .prose ul.bullets li::before { left: auto; right: 4px; }
[dir="rtl"] .footer .f-links a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .deal-media::after { background: linear-gradient(-90deg, var(--green-800), transparent 30%); }

@media (max-width: 980px) {
  .search-wrap.desk-search { display: none; }
  .search-mobile { display: block; }
  [dir="rtl"] .header .container, [dir="rtl"] .topbar .container { flex-direction: row-reverse; }
}

/* ============================================================
   PRODUCT PAGE — Laravel additions
   ============================================================ */
.pdp-main { position: relative; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pdp-thumb { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; background: var(--cream); padding: 0; cursor: pointer; }
.pdp-thumb.active { border-color: var(--gold-500); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.is-hidden { display: none; }

/* Size dropdown */
.pdp-size-select {
  width: 100%; max-width: 320px; padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: 12px; background: var(--white); font-family: inherit; font-size: 15px;
  color: var(--ink); cursor: pointer; font-weight: 500;
}
.pdp-size-select:focus { outline: none; border-color: var(--gold-400); }

/* Buy Now */
#pdpBuy:hover { background: var(--green-700); }

/* Tabby / Tamara block */
.pdp-bnpl { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 22px; padding: 16px 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; }
.bnpl-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-soft); flex-wrap: wrap; }
.bnpl-text b { color: var(--green-800); }
.bnpl-logo { font-weight: 800; font-size: 14px; padding: 5px 12px; border-radius: 8px; letter-spacing: -.02em; flex: 0 0 auto; }
.bnpl-logo.tabby  { background: #3fceac; color: #04303a; }
.bnpl-logo.tamara { background: #ddb6ff; color: #3a1d57; }

/* Stock badge */
.pdp-stock { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 999px; margin-bottom: 8px; }
.pdp-stock svg { width: 18px; height: 18px; }
.pdp-stock.in_stock   { background: #e6f4ea; color: #1d7a43; }
.pdp-stock.low_stock  { background: #fdf2e2; color: #a96a17; }
.pdp-stock.out_of_stock { background: #fbe9e7; color: var(--danger); }

/* Meta list small caps */
.pdp-meta small { font-size: 10px; color: var(--ink-soft); font-weight: 700; vertical-align: super; }
.pdp-meta b { color: var(--green-900); font-weight: 600; margin-right: 4px; }

/* Full details block */
.pdp-details { max-width: 900px; margin: 50px auto 0; border-top: 1px solid var(--line); padding-top: 36px; }
.pdp-details h2 { font-size: 26px; margin-bottom: 16px; }
.pdp-longdesc { color: var(--ink-soft); line-height: 1.8; font-size: 15.5px; }

[dir="rtl"] .pdp-meta b { margin-right: 0; margin-left: 4px; }
[dir="rtl"] .bnpl-row { flex-direction: row-reverse; }

@media (max-width: 760px) {
  .pdp-bnpl { padding: 14px; }
  .pdp-size-select { max-width: 100%; }
  .pdp-thumb { width: 64px; height: 64px; }
}

/* ---------- Checkout ---------- */
.checkout-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.checkout-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.checkout-form h2 { font-size: 22px; margin-bottom: 20px; }
.checkout-field { margin-bottom: 16px; }
.checkout-field label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.checkout-field input, .checkout-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; background: var(--bg); color: var(--ink);
}
.checkout-field input:focus, .checkout-field textarea:focus { outline: none; border-color: var(--gold-500); }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-summary { background: var(--cream); border-radius: var(--radius); padding: 24px; position: sticky; top: 100px; }
.checkout-summary h3 { font-size: 18px; margin-bottom: 16px; }
.checkout-line { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.checkout-line .ci-name { font-weight: 500; }
.checkout-line .ci-meta { color: var(--ink-soft); font-size: 12px; }
.checkout-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; margin-top: 16px; color: var(--green-900); }
.checkout-error { background: #fbeae6; border: 1px solid var(--danger); color: var(--danger); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 20px; font-size: 14px; }
.checkout-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.checkout-submit { width: 100%; justify-content: center; height: 52px; margin-top: 8px; font-size: 15px; }
.checkout-secure { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft); margin-top: 14px; }
.checkout-secure svg { width: 16px; height: 16px; flex: 0 0 auto; }

.result-wrap { max-width: 560px; margin: 0 auto; text-align: center; padding: 60px 20px; }
.result-icon { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.result-icon.success { background: #e3f3ea; color: var(--green-700); }
.result-icon.pending { background: #fdf3e0; color: var(--gold-500); }
.result-icon.cancelled { background: #fbeae6; color: var(--danger); }
.result-icon svg { width: 36px; height: 36px; }
.result-order-no { color: var(--ink-soft); margin-top: 8px; font-size: 14px; }
.result-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-row { grid-template-columns: 1fr; }
}
