:root {
  --bg: #0D0B09;
  --bg-soft: #14100C;
  --card: #171310;
  --card-2: #1D1814;
  --border: rgba(181, 129, 95, 0.18);
  --border-strong: rgba(181, 129, 95, 0.4);
  --rose-gold: #DBB18F;
  --copper: #B5815F;
  --bronze: #8B563C;
  --text: #F2E9DE;
  --muted: #A99A8B;
  --grad: linear-gradient(135deg, #DBB18F 0%, #B5815F 50%, #8B563C 100%);
  --grad-soft: linear-gradient(135deg, rgba(219, 177, 143, 0.14), rgba(139, 86, 60, 0.14));
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --font-head: 'Cairo', 'Segoe UI', sans-serif;
  --font-body: 'Tajawal', 'Segoe UI', sans-serif;
  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { width: min(1160px, 92%); margin-inline: auto; }

::selection { background: var(--copper); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--bronze), var(--copper)); border-radius: 8px; }

/* ============ Gradient text / shine ============ */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine-sweep 4.5s ease-in-out infinite;
}
@keyframes shine-sweep {
  0% { transform: translateX(-120%); }
  45% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-grad {
  background: var(--grad);
  color: #1A120B;
  box-shadow: 0 10px 30px rgba(181, 129, 95, 0.35);
}
.btn-grad:hover { box-shadow: 0 14px 40px rgba(219, 177, 143, 0.45); }

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--rose-gold);
  background: transparent;
}
.btn-ghost:hover { background: var(--grad-soft); border-color: var(--copper); }

.btn-lg { padding: 16px 42px; font-size: 17px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 11, 9, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(13, 11, 9, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 46px; width: auto; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--text); }
.logo-name .grad-text { display: inline; }
.logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: var(--rose-gold); }
.main-nav a.active {
  color: #1A120B;
  background: var(--grad);
  font-weight: 700;
}

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

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--rose-gold);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.icon-btn:hover { border-color: var(--copper); background: var(--grad-soft); transform: translateY(-1px); }
.icon-btn svg { width: 21px; height: 21px; }

.cart-count {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 20px;
  background: var(--grad);
  color: #1A120B;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
}
.cart-count.show { opacity: 1; transform: scale(1); }

.menu-toggle { display: none; }

/* ============ Mobile menu ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--card);
  border-inline-end: 1px solid var(--border);
  z-index: 1100;
  padding: 90px 26px 30px;
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
[dir="rtl"] .mobile-menu { transform: translateX(100%); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--rose-gold); background: var(--grad-soft); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.show { opacity: 1; pointer-events: auto; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 85% -10%, rgba(219, 177, 143, 0.16), transparent 60%),
    radial-gradient(700px 450px at 10% 110%, rgba(139, 86, 60, 0.22), transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-strong);
  background: var(--grad-soft);
  color: var(--rose-gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose-gold);
  box-shadow: 0 0 10px var(--rose-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 34px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.hero-meta .item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
}
.hero-meta .item span { color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-photo img { width: 100%; height: 480px; object-fit: cover; }
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(219, 177, 143, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-photo .frame-line {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(219, 177, 143, 0.45);
  border-radius: 10px;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: -26px;
  inset-inline-start: -26px;
  background: rgba(23, 19, 16, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card .hc-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #1A120B;
  flex-shrink: 0;
}
.hero-card .hc-icon svg { width: 22px; height: 22px; }
.hero-card strong { display: block; font-family: var(--font-head); font-size: 15px; }
.hero-card span { color: var(--muted); font-size: 12px; }

/* ============ Sections ============ */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-br { border-top: 1px solid var(--border); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-strong);
  color: var(--copper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 16px; }

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--grad);
  transition: height 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: var(--grad);
  color: #1A120B;
  transform: rotate(-6deg) scale(1.05);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--copper);
  transition: color 0.25s, gap 0.25s;
}
.service-card .service-link:hover { color: var(--rose-gold); gap: 11px; }
.service-card .service-link svg { width: 15px; height: 15px; }

/* ============ Promo (screens) ============ */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.promo-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  position: relative;
}
.promo-img img { width: 100%; height: 420px; object-fit: cover; }
.promo-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(13, 11, 9, 0.75));
}

.promo-visual { position: relative; }
.promo-img-small {
  position: absolute;
  bottom: -24px;
  inset-inline-start: -24px;
  width: 54%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.promo-img-small img { width: 100%; height: 230px; object-fit: cover; display: block; }
.promo-expo-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 3;
  background: rgba(13, 11, 9, 0.85);
  border: 1px solid var(--border-strong);
  color: var(--rose-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.promo-content .section-tag { margin-bottom: 12px; }
.promo-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.4;
  margin-bottom: 16px;
}
.promo-content > p { color: var(--muted); margin-bottom: 24px; }

.verticals { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.vertical {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.vertical:hover { border-color: var(--copper); background: var(--grad-soft); color: var(--rose-gold); }

/* ============ Products ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }

.product-visual {
  height: 190px;
  background:
    radial-gradient(300px 200px at 30% 20%, rgba(219, 177, 143, 0.2), transparent 60%),
    radial-gradient(280px 220px at 80% 90%, rgba(139, 86, 60, 0.25), transparent 60%),
    linear-gradient(160deg, #1D1814, #14100C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.product-visual svg { width: 74px; height: 74px; opacity: 0.9; }
.product-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(181, 129, 95, 0.28);
  border-radius: 10px;
  pointer-events: none;
}
.product-card:hover .product-visual svg {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 18px rgba(219, 177, 143, 0.35));
}

.product-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  min-height: 52px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-price .price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--rose-gold);
}
.product-price .currency { font-size: 13px; color: var(--muted); }
.product-price .contact-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--copper);
  border: 1px dashed var(--border-strong);
  padding: 4px 12px;
  border-radius: 50px;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  padding: 10px 16px;
  font-size: 13.5px;
  border-radius: 12px;
}

/* ============ Trust badges ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.trust-item:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.trust-item .t-icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
}
.trust-item .t-icon svg { width: 26px; height: 26px; }
.trust-item h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.trust-item p { color: var(--muted); font-size: 13px; }

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.testimonial .quote-mark {
  position: absolute;
  top: 18px;
  inset-inline-end: 24px;
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
}
.testimonial .stars { color: var(--rose-gold); margin-bottom: 14px; font-size: 16px; letter-spacing: 3px; }
.testimonial blockquote {
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.9;
}
.testimonial .client {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.client-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: #1A120B;
  font-size: 17px;
  flex-shrink: 0;
}
.client strong { display: block; font-family: var(--font-head); font-size: 15px; }
.client span { color: var(--muted); font-size: 12.5px; }

/* ============ Clients marquee ============ */
.clients-strip { overflow: hidden; padding: 20px 0; position: relative; }
.clients-strip::before, .clients-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-strip::before { inset-inline-start: 0; background: linear-gradient(to left, transparent, var(--bg)); }
.clients-strip::after { inset-inline-end: 0; background: linear-gradient(to right, transparent, var(--bg)); }

.clients-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
[dir="rtl"] .clients-track { animation-direction: reverse; }
.client-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0.75;
  transition: color 0.3s, opacity 0.3s;
}
.client-name:hover { color: var(--rose-gold); opacity: 1; }

/* ============ CTA banner ============ */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(219, 177, 143, 0.15), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(139, 86, 60, 0.2), transparent 60%),
    var(--card);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 14px;
}
.cta-banner p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============ Social ============ */
.social-row { display: flex; justify-content: center; gap: 14px; }
.social-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}
.social-btn svg { width: 21px; height: 21px; }
.social-btn:hover {
  background: var(--grad);
  color: #1A120B;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(181, 129, 95, 0.4);
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% -20%, rgba(219, 177, 143, 0.14), transparent 60%);
  z-index: -1;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 12px;
}
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13.5px;
}
.crumbs a:hover { color: var(--rose-gold); }
.crumbs .sep { opacity: 0.5; }

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid.reverse .about-img { order: 2; }
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  position: relative;
}
.about-img img { width: 100%; height: 440px; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(219, 177, 143, 0.1), transparent 50%);
}

.about-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.45;
  margin-bottom: 16px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; }
.about-list { margin: 22px 0; display: grid; gap: 12px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}
.about-list .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad);
  color: #1A120B;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.about-list .check svg { width: 13px; height: 13px; }

/* stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.stat-card .num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 6px;
}
.stat-card .label { color: var(--muted); font-size: 14px; }

/* values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.value-card .v-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
  margin-bottom: 16px;
}
.value-card .v-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 13.5px; }

/* ============ Shop page ============ */
.shop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.shop-head h2 { font-family: var(--font-head); font-weight: 800; font-size: 26px; }
.shop-head .count { color: var(--muted); font-size: 14px; }

/* partners (Chinese manufacturing agents) */
.partner-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.partner-text h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.partner-text p { color: var(--muted); margin-bottom: 14px; }
.partner-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.partner-chip svg { width: 16px; height: 16px; color: var(--rose-gold); flex-shrink: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  transition: border-color 0.3s, transform 0.3s;
}
.gallery-grid figure:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-grid figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 12.5px;
  border-top: 1px solid var(--border);
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-cards { display: grid; gap: 18px; align-content: start; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.contact-card .c-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #1A120B;
  flex-shrink: 0;
}
.contact-card .c-icon svg { width: 24px; height: 24px; }
.contact-card strong { display: block; font-family: var(--font-head); font-size: 15.5px; margin-bottom: 2px; }
.contact-card span, .contact-card a { color: var(--muted); font-size: 14px; direction: ltr; text-align: right; display: inline-block; }
.contact-card a:hover { color: var(--rose-gold); }

/* form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.form-group label .req { color: var(--copper); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14.5px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181, 129, 95, 0.15);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control option { background: var(--card); }

/* ============ Account (login) ============ */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.auth-logo {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #1A120B;
  box-shadow: 0 12px 30px rgba(181, 129, 95, 0.35);
}
.auth-logo svg { width: 36px; height: 36px; }
.auth-card h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  margin-bottom: 6px;
}
.auth-card .auth-sub { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.auth-card .form-group { margin-bottom: 18px; }
.auth-hint {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--grad-soft);
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
  display: none;
}
.auth-hint.show { display: block; animation: shake 0.45s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(7px); }
  40% { transform: translateX(-7px); }
  60% { transform: translateX(5px); }
  80% { transform: translateX(-5px); }
}
.auth-foot { text-align: center; margin-top: 20px; color: var(--muted); font-size: 13.5px; }
.auth-foot a { color: var(--rose-gold); font-weight: 600; }

/* ============ Cart drawer ============ */
.cart-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--card);
  border-inline-start: 1px solid var(--border);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
[dir="rtl"] .cart-drawer { transform: translateX(-100%); }
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-family: var(--font-head); font-size: 19px; font-weight: 800; }
.cart-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.cart-close:hover { color: var(--rose-gold); border-color: var(--copper); }
.cart-close svg { width: 17px; height: 17px; }

.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: grid; align-content: start; gap: 16px; overscroll-behavior: contain; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
}
.cart-item .ci-visual {
  width: 62px; height: 62px;
  border-radius: 10px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}
.cart-item .ci-visual svg { width: 30px; height: 30px; }
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-info h4 { font-size: 13.5px; font-weight: 700; line-height: 1.6; margin-bottom: 4px; }
.cart-item .ci-price { color: var(--rose-gold); font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.cart-item .ci-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--border);
  color: var(--rose-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--grad-soft); border-color: var(--copper); }
.ci-qty { font-size: 14px; font-weight: 700; min-width: 22px; text-align: center; }
.ci-remove {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  color: var(--muted);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.ci-remove:hover { opacity: 1; color: #E2725B; }
.ci-remove svg { width: 15px; height: 15px; }

.cart-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
}
.cart-empty svg { width: 60px; height: 60px; opacity: 0.4; margin: 0 auto 16px; display: block; }

.cart-foot {
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.cart-total { display: flex; justify-content: space-between; align-items: center; }
.cart-total span { color: var(--muted); font-size: 14px; }
.cart-total strong { font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--rose-gold); }

/* ============ Modal ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.show { opacity: 1; pointer-events: auto; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 40px 34px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow);
}
.modal.show .modal-box { transform: translateY(0) scale(1); }
.modal-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
}
.modal-icon svg { width: 32px; height: 32px; }
.modal-box h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; margin-bottom: 10px; }
.modal-box p { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; line-height: 1.8; }
.modal-actions { display: grid; gap: 10px; }

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translate(-50%, 90px);
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1400;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s;
  white-space: nowrap;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .t-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose-gold);
  box-shadow: 0 0 10px var(--rose-gold);
}

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 13.5px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social .social-btn { width: 42px; height: 42px; }
.footer-social .social-btn svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 34px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul a {
  color: var(--muted);
  font-size: 13.5px;
  transition: color 0.25s, padding 0.25s;
}
.footer-col ul a:hover { color: var(--rose-gold); padding-inline-start: 6px; }

.footer-contact li { display: flex; gap: 10px; color: var(--muted); font-size: 13.5px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact li svg { width: 17px; height: 17px; color: var(--copper); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--rose-gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom .grad-text { font-weight: 700; }

/* ============ Scroll top ============ */
.scroll-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  inset-inline-end: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #1A120B;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(181, 129, 95, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.3s ease;
  z-index: 900;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }
.scroll-top svg { width: 19px; height: 19px; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-photo img { height: 400px; }
  .hero-card { inset-inline-start: 10px; }
  .promo, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .promo-img img, .about-img img { height: 340px; }
  .promo-visual { display: grid; gap: 16px; }
  .promo-img-small { position: static; width: 100%; animation: none; }
  .promo-img-small img { height: 260px; }
  .partner-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .form-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px; }
  .form-control { font-size: 16px; }
  .form-control::placeholder { font-size: 15px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-info h3 { min-height: 0; }
  .hero-photo img { height: 340px; }
  .hero-card { bottom: -18px; padding: 12px 16px; }
  .hero-card .hc-icon { width: 40px; height: 40px; }
  .hero-meta { gap: 14px; }
  .hero-meta .item strong { font-size: 21px; }
  .cta-banner { padding: 44px 22px; }
  .auth-card { padding: 30px 22px; }
  .contact-form { padding: 24px 20px; }
  .testimonial { padding: 26px 20px; }
  .modal-box { padding: 30px 22px; }
  .section-head h2 { font-size: 26px; }
  .qty-btn { width: 32px; height: 32px; }
}
