:root {
  /* لون العلامة (يُضبط من لوحة التحكم) */
  --pink: #c9788f;
  --pink-dark: #a85870;
  --pink-soft: #f3e4e8;
  --pink-bg: #faf6f3;
  /* محايدات أنيقة */
  --bg: #faf8f5;
  --ink: #211c1a;
  --ink-soft: #4a423e;
  --muted: #938a82;
  --line: #ece5dd;
  --card: #ffffff;
  --ok: #2f8f68;
  --warn: #c98a00;
  --danger: #d0574f;
  --serif: "Playfair Display", "Cairo", serif;
  --sans: "Cairo", "Segoe UI", system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 10px 40px rgba(33, 28, 26, .07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  direction: rtl;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--pink-dark); font-weight: 700; }
.eyebrow.center { display: block; text-align: center; }

/* ===== Top bar ===== */
.top-bar {
  background: var(--ink); color: #fff; text-align: center;
  font-size: 12.5px; padding: 9px; letter-spacing: 1px; font-weight: 500;
}

/* ===== Header ===== */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 16px;
}
.logo { font-family: var(--serif); font-weight: 700; display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; display: block; }
.logo-img + .logo-text { display: none; }
.logo-text { font-size: 24px; letter-spacing: 5px; color: var(--ink); line-height: 1; }
.logo small {
  display: block; font-family: var(--sans); font-size: 10px; color: var(--muted);
  font-weight: 500; letter-spacing: 2px; margin-top: 5px;
}
.main-nav { flex: 1; display: flex; justify-content: center; gap: 30px; }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--ink-soft); letter-spacing: .5px;
  padding: 6px 0; position: relative; transition: .2s;
}
.nav-link::after {
  content: ""; position: absolute; bottom: 0; right: 0; width: 0; height: 1.5px;
  background: var(--pink-dark); transition: .25s;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-act {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: var(--ink); transition: .2s;
}
.icon-act:hover { background: var(--pink-bg); color: var(--pink-dark); }
#menuToggle { display: none; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 2px; left: 2px; background: var(--pink-dark); color: #fff;
  min-width: 18px; height: 18px; border-radius: 20px; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; padding: 0 4px;
}
.search-wrap { max-height: 0; overflow: hidden; transition: max-height .3s ease; border-top: 0 solid var(--line); }
.search-wrap.show { max-height: 80px; border-top: 1px solid var(--line); }
.search-wrap input {
  width: 100%; max-width: 1200px; margin: 0 auto; display: block;
  padding: 16px 24px; border: none; font-size: 15px; font-family: inherit; outline: none; background: #fff;
}

/* ===== Hero ===== */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  min-height: 480px; gap: 20px;
}
.hero-content { padding: 40px 0; }
.hero-content h1 {
  font-family: var(--serif); font-weight: 600; font-size: 60px; line-height: 1.05;
  color: var(--ink); margin: 18px 0; letter-spacing: 1px;
}
.hero-content p { color: var(--ink-soft); font-size: 16px; max-width: 440px; margin-bottom: 28px; }
.hero-visual {
  align-self: stretch; margin: 24px 0; border-radius: 6px;
  background: #0d0d0d;
  position: relative; overflow: hidden; min-height: 400px;
  display: grid; place-items: center;
}
.hero-logo { width: 100%; height: 100%; object-fit: contain; }
.hero-visual.no-logo { background: linear-gradient(135deg, var(--pink-soft), #ece5dd 90%); }
.hero-visual.no-logo::after {
  content: "MIMIBEAUTY"; font-family: var(--serif); font-size: 46px; color: rgba(255,255,255,.7);
  letter-spacing: 6px; font-weight: 700;
}

/* ===== Buttons ===== */
.btn-dark {
  background: var(--ink); color: #fff; padding: 15px 40px; font-weight: 600; font-size: 14px;
  letter-spacing: 1px; border-radius: 2px; transition: .25s;
}
.btn-dark:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ===== Features ===== */
.features {
  max-width: 1200px; margin: 20px auto; padding: 30px 24px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature { display: flex; align-items: center; gap: 14px; justify-content: center; color: var(--ink); transition: .2s; }
.feature svg { color: var(--pink-dark); flex-shrink: 0; }
.feature b { display: block; font-size: 14px; font-weight: 700; }
.feature span { font-size: 12.5px; color: var(--muted); }
a.feature:hover b { color: var(--pink-dark); }
a.feature:hover svg { transform: scale(1.08); }

/* زر واتساب عائم */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: .25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,.6); }

/* ===== Section head ===== */
.section-head { text-align: center; margin: 56px auto 30px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: 34px; color: var(--ink);
  margin-top: 8px; letter-spacing: 1px;
}

/* ===== Category cards ===== */
.category-section { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative; aspect-ratio: 3/2; border-radius: 6px; overflow: hidden;
  display: flex; align-items: flex-end; text-align: right; transition: .3s;
}
.cat-card.c-women { background: linear-gradient(160deg, #f3e4e8, #e8d5d0); }
.cat-card.c-men { background: linear-gradient(160deg, #e2e6ea, #d3d8de); }
.cat-card.c-kids { background: linear-gradient(160deg, #f3ead9, #e9dcc4); }
.cat-card.c-beauty { background: linear-gradient(160deg, #f0e0ea, #e2cbdb); }
.cat-card .cc-emoji {
  position: absolute; top: 14px; left: 16px; font-size: 38px; opacity: .5;
  transition: .3s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card:hover .cc-emoji { transform: scale(1.1); opacity: .7; }
.cc-info { position: relative; z-index: 1; padding: 14px 16px; width: 100%; background: linear-gradient(to top, rgba(255,255,255,.85), transparent); }
.cc-info b { display: block; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.cc-info small { font-size: 11px; color: var(--ink-soft); border-bottom: 1px solid var(--ink); padding-bottom: 2px; letter-spacing: .5px; }

/* ===== Category filter (tabs) ===== */
.shop { max-width: 1200px; margin: 0 auto; padding: 0 24px 70px; }
.cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.cat-pill {
  padding: 9px 22px; border-radius: 2px; background: transparent; color: var(--ink-soft);
  font-weight: 600; font-size: 13.5px; letter-spacing: .5px; border: 1px solid var(--line); transition: .2s;
}
.cat-pill.active, .cat-pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== Product grid ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 26px; }
.card { background: transparent; display: flex; flex-direction: column; transition: .22s; }
.card .thumb {
  aspect-ratio: 3/4; background: linear-gradient(135deg, var(--pink-soft), #ece5dd);
  display: grid; place-items: center; font-size: 60px; position: relative; overflow: hidden; border-radius: 4px;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.card:hover .thumb img { transform: scale(1.04); }
.badge-sale { position: absolute; top: 12px; right: 12px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 2px; letter-spacing: .5px; }
.badge-out { position: absolute; inset: 0; background: rgba(255,255,255,.7); color: var(--ink); display: grid; place-items: center; font-weight: 700; font-size: 15px; letter-spacing: 1px; }
.card .body { padding: 14px 2px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .cat { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.card .name { font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--ink); min-height: 42px; }
.price-row { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.price { font-size: 17px; font-weight: 700; color: var(--ink); }
.old-price { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.card-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.buy-now-btn { background: var(--ink); color: #fff; padding: 12px; border-radius: 2px; font-weight: 600; font-size: 13.5px; letter-spacing: .5px; transition: .2s; }
.buy-now-btn:hover { background: var(--pink-dark); }
.buy-now-btn:disabled { background: #cfc7c0; cursor: not-allowed; }
.add-btn { background: #fff; color: var(--ink); border: 1px solid var(--line); padding: 11px; border-radius: 2px; font-weight: 600; font-size: 13.5px; letter-spacing: .5px; transition: .2s; }
.add-btn:hover { border-color: var(--ink); }
.add-btn:disabled { background: #f5f2ee; color: #b7afa8; border-color: var(--line); cursor: not-allowed; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #efe9e3; margin-top: 40px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 56px 24px 30px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand .fl { font-family: var(--serif); font-size: 26px; letter-spacing: 6px; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; color: #b8afa7; max-width: 360px; line-height: 1.8; }
.footer-col h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; color: #fff; }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; color: #b8afa7; margin-bottom: 10px; transition: .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 20px; font-size: 12.5px; color: #9c938b; }

/* ===== Drawer ===== */
.overlay { position: fixed; inset: 0; background: rgba(33,28,26,.5); z-index: 90; opacity: 0; pointer-events: none; transition: .25s; }
.overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; left: 0; height: 100%; width: 420px; max-width: 92vw;
  background: #fff; z-index: 100; transform: translateX(-105%); transition: .3s; display: flex; flex-direction: column;
  box-shadow: 6px 0 40px rgba(0,0,0,.15);
}
.drawer.show { transform: translateX(0); }
.drawer-head { padding: 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer-head h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-foot { padding: 20px; border-top: 1px solid var(--line); }
.icon-btn { background: var(--pink-bg); color: var(--ink); width: 36px; height: 36px; border-radius: 50%; font-size: 16px; transition: .2s; }
.icon-btn:hover { background: var(--pink-soft); }

.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item .ci-thumb { width: 68px; height: 84px; border-radius: 3px; background: var(--pink-soft); display: grid; place-items: center; font-size: 26px; overflow: hidden; flex-shrink: 0; }
.cart-item .ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; }
.ci-info .n { font-weight: 600; font-size: 14px; }
.ci-info .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty button { width: 28px; height: 28px; border-radius: 3px; background: var(--pink-bg); color: var(--ink); font-weight: 700; font-size: 16px; border: 1px solid var(--line); }
.qty button:disabled { opacity: .4; cursor: not-allowed; }
.ci-remove { color: var(--danger); background: none; font-size: 12.5px; font-weight: 600; }

.empty { text-align: center; color: var(--muted); padding: 50px 10px; grid-column: 1/-1; }
.empty .em { font-size: 52px; opacity: .5; }

/* ===== Order form ===== */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 3px; border: 1px solid var(--line);
  font-size: 14px; font-family: inherit; outline: none; background: #fff; color: var(--ink); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

.delivery-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-opt { border: 1px solid var(--line); border-radius: 4px; padding: 14px; cursor: pointer; text-align: center; transition: .2s; background: #fff; }
.delivery-opt.active { border-color: var(--ink); background: var(--pink-bg); }
.delivery-opt .di { font-size: 24px; }
.delivery-opt .dt { font-weight: 600; font-size: 14px; margin-top: 4px; }
.delivery-opt .dp { font-size: 13px; color: var(--pink-dark); font-weight: 700; margin-top: 4px; min-height: 18px; }

.summary { background: var(--pink-bg); border-radius: 4px; padding: 16px; margin: 16px 0; }
.summary .row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 9px; }
.summary .row.total { font-size: 18px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }

.btn-primary { width: 100%; background: var(--ink); color: #fff; padding: 15px; border-radius: 2px; font-weight: 600; font-size: 15px; letter-spacing: .5px; transition: .2s; }
.btn-primary:hover { background: var(--pink-dark); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.btn-ghost { width: 100%; background: #fff; color: var(--ink); border: 1px solid var(--line); padding: 13px; border-radius: 2px; font-weight: 600; margin-top: 10px; transition: .2s; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline { width: 100%; background: #fff; color: var(--ink); border: 1px solid var(--line); padding: 13px; border-radius: 2px; font-weight: 600; transition: .2s; }
.btn-outline:hover { border-color: var(--ink); }

.cod-note { background: #eef7f2; color: var(--ok); border-radius: 4px; padding: 11px 12px; font-size: 13px; font-weight: 600; margin: 14px 0; text-align: center; }

/* ===== Product modal ===== */
.pmodal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 18px; opacity: 0; pointer-events: none; transition: .2s; }
.pmodal.show { opacity: 1; pointer-events: auto; }
.pmodal .box { background: #fff; border-radius: 6px; max-width: 820px; width: 100%; max-height: 92vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; }
.pmodal .pm-img { background: linear-gradient(135deg, var(--pink-soft), #ece5dd); display: grid; place-items: center; font-size: 100px; min-height: 420px; }
.pmodal .pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pmodal .pm-body { padding: 32px; }
.pm-body h2 { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 26px; margin-bottom: 8px; }
.pm-body .price-row { margin: 10px 0; }
.pm-body .desc { color: var(--ink-soft); line-height: 1.8; margin: 14px 0; font-size: 14px; }
.opt-group { margin: 16px 0; }
.opt-group .lab { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 8px 16px; border-radius: 2px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; cursor: pointer; transition: .2s; }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.toast { position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 4px; z-index: 200; opacity: 0; transform: translateY(20px); transition: .3s; font-weight: 600; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.ok { background: var(--ok); }
.toast.err { background: var(--danger); }

/* success screen */
.success-box { text-align: center; padding: 24px; }
.success-box .em { font-size: 66px; }
.success-box h3 { font-family: var(--serif); color: var(--ok); margin: 14px 0; font-size: 24px; }
.success-box .oid { background: var(--pink-bg); padding: 10px 16px; border-radius: 4px; font-weight: 700; color: var(--ink); display: inline-block; margin: 8px 0; letter-spacing: 1px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 36px 0 10px; text-align: center; }
  .hero-content p { margin-inline: auto; }
  .features { grid-template-columns: 1fr 1fr; gap: 20px 14px; padding: 24px 18px; }
  .cat-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand p { margin-inline: auto; }
}
@media (max-width: 720px) {
  #menuToggle { display: grid; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100%;
    background: #fff; flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 80px 30px; gap: 6px; z-index: 60; transition: right .3s; box-shadow: -6px 0 40px rgba(0,0,0,.15);
  }
  .main-nav.show { right: 0; }
  .main-nav .nav-link { font-size: 17px; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .header-inner { padding: 12px 16px; gap: 8px; }
  .logo { flex: 1; justify-content: center; }
  .logo-img { height: 46px; }
  .logo-text { font-size: 20px; letter-spacing: 3px; }
  .icon-act { width: 40px; height: 40px; }
  .top-bar { font-size: 11.5px; letter-spacing: .5px; padding: 8px; }
}
@media (max-width: 640px) {
  .pmodal { padding: 0; place-items: stretch; }
  .pmodal .box { grid-template-columns: 1fr; border-radius: 0; max-height: 100vh; }
  .pmodal .pm-img { min-height: 300px; font-size: 70px; }
  .pmodal .pm-body { padding: 22px; }
  .hero-content { padding: 28px 0 6px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 14.5px; }
  .btn-dark { width: 100%; }
  .section-head { margin: 40px auto 22px; }
  .section-head h2 { font-size: 25px; }
  .shop { padding: 0 16px 50px; }
  .category-section { padding: 0 16px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card .name { font-size: 13.5px; min-height: 38px; }
  .price { font-size: 15px; }
  .card-actions .add-btn { display: none; }
  .buy-now-btn { padding: 11px; font-size: 13px; }
  .drawer { width: 100%; max-width: 100%; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; left: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
  .cats { gap: 6px; margin-bottom: 24px; }
  .cat-pill { padding: 8px 16px; font-size: 12.5px; }
}
@media (max-width: 400px) {
  .features { grid-template-columns: 1fr; }
  .cat-cards { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 33px; }
}

/* عروض وتقييمات وواتساب */
.sale-countdown {
  font-size: 12px; font-weight: 700; color: #c0392b;
  background: #fff3f0; padding: 6px 10px; border-radius: 8px; margin: 8px 0;
}
.card .sale-countdown { position: absolute; bottom: 8px; left: 8px; right: 8px; margin: 0; text-align: center; font-size: 11px; }
.social-proof-badge {
  display: inline-block; font-size: 13px; font-weight: 700; color: #e67e22;
  background: #fff8f0; padding: 8px 12px; border-radius: 999px; margin: 8px 0;
}
.reviews-block { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.reviews-block h4 { margin: 0 0 10px; font-size: 16px; }
.reviews-avg { font-weight: 700; margin-bottom: 10px; color: var(--pink-dark); }
.review-item { background: var(--bg2); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; }
.review-item p { margin: 6px 0 0; font-size: 13px; color: var(--muted); }
.review-form { margin-top: 14px; display: grid; gap: 8px; }
.review-form input, .review-form select, .review-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit;
}
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; margin-top: 10px; border-radius: 12px;
  background: #25d366; color: #fff; font-weight: 800; text-decoration: none; border: none; cursor: pointer;
}
.btn-wa:hover { background: #1ebe57; color: #fff; }
.track-link { color: var(--pink-dark); font-weight: 700; text-decoration: none; }
.track-link:hover { text-decoration: underline; }
.muted { color: var(--muted); font-size: 13px; }

/* ===== صفحة منتج مستقلة ===== */
.pp-loading { text-align: center; padding: 80px 20px; color: var(--muted); font-size: 18px; }
.pp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid var(--line); background: #fff;
  position: sticky; top: 0; z-index: 20;
}
.pp-logo { text-decoration: none; }
.pp-brand { font-size: 22px; font-weight: 900; letter-spacing: 3px; color: var(--pink-dark); }
.pp-back { text-decoration: none; color: var(--muted); font-weight: 700; }
.pp-wrap { max-width: 1080px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pp-gallery { position: sticky; top: 90px; align-self: start; }
.pp-main {
  position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden;
  background: var(--bg2); display: grid; place-items: center;
}
.pp-main img { width: 100%; height: 100%; object-fit: cover; }
.pp-emoji { font-size: 120px; }
.pp-cd { position: absolute; bottom: 12px; left: 12px; right: 12px; text-align: center; margin: 0; }
.pp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pp-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; }
.pp-thumb.active { border-color: var(--pink); }
.pp-crumb { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pp-crumb a { color: var(--muted); text-decoration: none; }
.pp-info h1 { font-size: 30px; margin: 4px 0 14px; line-height: 1.25; }
.pp-price { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pp-price .price { font-size: 26px; font-weight: 900; color: var(--pink-dark); }
.pp-off { background: var(--pink); color: #fff; font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 999px; }
.pp-desc { color: var(--muted); line-height: 1.9; margin: 12px 0 18px; }
.pp-info .btn-primary, .pp-info .btn-outline { width: 100%; margin-top: 10px; }
.pp-trust { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; font-size: 13px; color: var(--muted); font-weight: 600; }
.pp-reviews { max-width: 1080px; margin: 0 auto 40px; padding: 0 24px; border-top: none; }
.pp-footer { text-align: center; padding: 30px; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 820px) {
  .pp-wrap { grid-template-columns: 1fr; gap: 24px; padding: 18px 16px; }
  .pp-gallery { position: static; }
  .pp-info h1 { font-size: 24px; }
  .pp-price .price { font-size: 22px; }
  .pp-reviews { padding: 0 16px; }
}
