/*
Theme Name: Alia Solo Store
Author: khaled elsisi
Description: Modern Arabic WooCommerce theme (landing + store + cart + auth + dark/light).
Version: 1.4.9
Requires at least: 6.9
Tested up to: 6.9.4
Requires PHP: 8.3
Text Domain: alia-solo-store
*/

:root {
  --brand: #1f6f55;
  --brand-2: #d6a74a;
  --deep: #0f2b1f;
  --chili: #c8102e;
  --accent: #22c55e;
  --accent-2: #16a34a;

  --brand-rgb: 31 111 85;
  --gold-rgb: 214 167 74;
  --accent-rgb: 34 197 94;
  --accent2-rgb: 22 163 74;
  --accent-glow: rgb(var(--accent-rgb) / 0.28);
  --mint: #d8fff0;
  --mint: #dff3e6;
  --sand: #f3e9d6;
  --gold-glow: rgb(var(--gold-rgb) / 0.22);
  --glass: rgba(255, 255, 255, 0.62);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.80);
  --bg: #f3f6f2;
  --surface: #ffffff;
  --surface-2: #f0f3f7;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --shadow-sm: 0 6px 18px rgba(2, 6, 23, 0.08);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 76px;
}

html:not(.theme-light-forced) body.theme-dark {
  --bg: #0b1220;
  --surface: #0f172a;
  --surface-2: #111c33;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.10);
  --glass: rgba(15, 23, 42, 0.58);
  --glass-strong: rgba(15, 23, 42, 0.72);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.35);
}
html:not(.theme-light-forced) body.theme-dark::before {
  background:
    radial-gradient(1200px 520px at 18% 18%, rgb(var(--brand-rgb) / 0.22), transparent 60%),
    radial-gradient(1200px 520px at 82% 18%, rgb(var(--gold-rgb) / 0.16), transparent 62%),
    radial-gradient(1200px 520px at 60% 90%, rgba(148, 163, 184, 0.10), transparent 62%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.70), rgba(11, 18, 32, 0.70));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-top: var(--header-h);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 520px at 18% 18%, color-mix(in srgb, var(--mint) 85%, transparent 15%), transparent 60%),
    radial-gradient(1200px 520px at 82% 18%, color-mix(in srgb, var(--sand) 72%, transparent 28%), transparent 62%),
    radial-gradient(1200px 520px at 60% 90%, rgb(var(--brand-rgb) / 0.10), transparent 62%),
    linear-gradient(135deg, color-mix(in srgb, var(--mint) 40%, transparent 60%), color-mix(in srgb, var(--sand) 30%, transparent 70%));
}
body.rtl { direction: rtl; text-align: right; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 44px var(--accent-glow), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgb(var(--brand-rgb) / 0.14);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08), 0 0 0 1px rgba(255,255,255,0.35) inset;
}
.btn-ghost:hover { transform: translateY(-1px); }

html:not(.theme-light-forced) body.theme-dark .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
html:not(.theme-light-forced) body.theme-dark .btn-ghost i { color: #fff; }
html:not(.theme-light-forced) body.theme-dark .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255,255,255,0.12) inset;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgb(var(--accent-rgb) / 0.18);
  background: color-mix(in srgb, var(--accent) 14%, rgba(255, 255, 255, 0.92));
  color: color-mix(in srgb, var(--deep) 78%, var(--muted) 22%);
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06), 0 0 0 1px rgba(255,255,255,0.32) inset;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.70);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
html:not(.theme-light-forced) body.theme-dark .site-header {
  background: rgba(15, 23, 42, 0.70);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { height: 42px; width: auto; object-fit: contain; }
.brand { max-width: 330px; }
.brand .brand-name {
  display: inline;
  font-weight: 900;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: color-mix(in srgb, var(--brand) 85%, var(--text) 15%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a {
  font-weight: 800;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 75%, transparent 25%);
  border-color: var(--border);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgb(var(--brand-rgb) / 0.12);
  color: var(--text);
  cursor: pointer;
  position: relative;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08), 0 0 0 1px rgba(255,255,255,0.30) inset;
}
.icon-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

html:not(.theme-light-forced) body.theme-dark .icon-btn {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
html:not(.theme-light-forced) body.theme-dark .icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgb(var(--gold-rgb) / 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.icon-btn svg { fill: currentColor; }
.icon-btn i, .icon-btn svg { opacity: 1; }
.header-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-icon-sun { display: none; }
html:not(.theme-light-forced) body.theme-dark .theme-icon-moon { display: none; }
html:not(.theme-light-forced) body.theme-dark .theme-icon-sun { display: inline-block; }

.mobile-toggle { display: none; }

.hero {
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 26px;
}
.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}
.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}
.hero-desc {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.hero-card {
  background:
    radial-gradient(1200px 520px at 18% 18%, color-mix(in srgb, var(--mint) 90%, transparent 10%), transparent 62%),
    radial-gradient(1200px 520px at 82% 18%, color-mix(in srgb, var(--sand) 78%, transparent 22%), transparent 64%),
    linear-gradient(135deg, rgba(255,255,255,0.70), rgba(255,255,255,0.46));
  border: 1px solid rgb(var(--brand-rgb) / 0.14);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.10), 0 0 0 1px rgba(255,255,255,0.30) inset;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(700px 240px at 20% 15%, rgb(var(--gold-rgb) / 0.26), transparent 55%),
    radial-gradient(700px 240px at 85% 30%, rgb(var(--brand-rgb) / 0.22), transparent 58%);
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
}
.hero-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 120%;
  height: 120%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: rotate(10deg);
  opacity: 0.8;
  pointer-events: none;
}
.hero-image {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgb(var(--brand-rgb) / 0.12);
  position: relative;
  background:
    radial-gradient(900px 320px at 22% 10%, rgb(var(--gold-rgb) / 0.18), transparent 56%),
    radial-gradient(900px 320px at 78% 18%, rgb(var(--brand-rgb) / 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.38));
}
.hero-image img {
  position: relative;
  z-index: 1;
}

.hero-hot { color: var(--chili); }
.hero-accent { color: var(--accent-2); }
.hero-sep { color: var(--brand-2); padding: 0 8px; }

.hero-float-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-float-chip {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.14));
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
  padding: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
  animation: heroChipFloat 4.8s ease-in-out infinite;
}
html:not(.theme-light-forced) body.theme-dark .hero-float-chip {
  background: rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 255, 255, 0.12);
}
.hero-float-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.16);
  border-color: rgb(var(--accent-rgb) / 0.28);
}
.hero-float-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-float-ring .hero-float-chip:nth-child(-n+6) { left: 14px; }
.hero-float-ring .hero-float-chip:nth-child(n+7) { right: 14px; }

.hero-float-ring .hero-float-chip:nth-child(1) { top: 16px; animation-delay: -0.0s; }
.hero-float-ring .hero-float-chip:nth-child(2) { top: 78px; animation-delay: -0.3s; }
.hero-float-ring .hero-float-chip:nth-child(3) { top: 140px; animation-delay: -0.6s; }
.hero-float-ring .hero-float-chip:nth-child(4) { top: 202px; animation-delay: -0.9s; }
.hero-float-ring .hero-float-chip:nth-child(5) { top: 264px; animation-delay: -1.2s; }
.hero-float-ring .hero-float-chip:nth-child(6) { top: 326px; animation-delay: -1.5s; }

.hero-float-ring .hero-float-chip:nth-child(7) { top: 16px; animation-delay: -0.15s; }
.hero-float-ring .hero-float-chip:nth-child(8) { top: 78px; animation-delay: -0.45s; }
.hero-float-ring .hero-float-chip:nth-child(9) { top: 140px; animation-delay: -0.75s; }
.hero-float-ring .hero-float-chip:nth-child(10) { top: 202px; animation-delay: -1.05s; }
.hero-float-ring .hero-float-chip:nth-child(11) { top: 264px; animation-delay: -1.35s; }
.hero-float-ring .hero-float-chip:nth-child(12) { top: 326px; animation-delay: -1.65s; }

@keyframes heroChipFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(1deg); }
}

@media (max-width: 980px) {
  .hero-float-chip { width: 46px; height: 46px; border-radius: 14px; padding: 7px; }
  .hero-float-ring .hero-float-chip:nth-child(-n+6) { left: 10px; }
  .hero-float-ring .hero-float-chip:nth-child(n+7) { right: 10px; }

  .hero-float-ring .hero-float-chip:nth-child(1) { top: 12px; }
  .hero-float-ring .hero-float-chip:nth-child(2) { top: 66px; }
  .hero-float-ring .hero-float-chip:nth-child(3) { top: 120px; }
  .hero-float-ring .hero-float-chip:nth-child(4) { top: 174px; }
  .hero-float-ring .hero-float-chip:nth-child(5) { top: 228px; }
  .hero-float-ring .hero-float-chip:nth-child(6) { top: 282px; }

  .hero-float-ring .hero-float-chip:nth-child(7) { top: 12px; }
  .hero-float-ring .hero-float-chip:nth-child(8) { top: 66px; }
  .hero-float-ring .hero-float-chip:nth-child(9) { top: 120px; }
  .hero-float-ring .hero-float-chip:nth-child(10) { top: 174px; }
  .hero-float-ring .hero-float-chip:nth-child(11) { top: 228px; }
  .hero-float-ring .hero-float-chip:nth-child(12) { top: 282px; }
}
.hero-float {
  position: absolute;
  z-index: 2;
  width: 104px;
  height: 104px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
body.theme-dark .hero-float {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.22);
}
.hero-float-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero-float-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(2, 6, 23, 0.22));
  transform: translateZ(0);
}
.hero-float-1 { top: 16px; right: 16px; animation: heroFloat1 6.2s ease-in-out infinite; }
.hero-float-2 { bottom: 18px; right: 18px; animation: heroFloat2 7.4s ease-in-out infinite; }
.hero-float-3 { top: 24px; left: 18px; animation: heroFloat3 6.8s ease-in-out infinite; }
@keyframes heroFloat1 { 0%,100%{ transform: translate3d(0,0,0) rotate(-3deg);} 50%{ transform: translate3d(0,-14px,0) rotate(3deg);} }
@keyframes heroFloat2 { 0%,100%{ transform: translate3d(0,0,0) rotate(2deg);} 50%{ transform: translate3d(0,-16px,0) rotate(-4deg);} }
@keyframes heroFloat3 { 0%,100%{ transform: translate3d(0,0,0) rotate(-1deg);} 50%{ transform: translate3d(0,-13px,0) rotate(4deg);} }

.section { padding: 40px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.section-title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.1px;
}
.section-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 14px;
}
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.features-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.feature-tile {
  text-align: center;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
html:not(.theme-light-forced) body.theme-dark .feature-tile {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.feature-tile::before {
  content: "";
  position: absolute;
  inset: -50px;
  background: radial-gradient(520px 220px at 18% 25%, rgb(var(--gold-rgb) / 0.24), transparent 60%),
    radial-gradient(560px 240px at 85% 30%, rgb(var(--brand-rgb) / 0.18), transparent 62%);
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}
.feature-tile::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -70%;
  width: 160%;
  height: 160%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 62%);
  transform: rotate(12deg);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 66px rgba(2, 6, 23, 0.14);
  border-color: rgb(var(--gold-rgb) / 0.45);
}
.feature-tile:hover::after { opacity: 1; }
.feature-ico {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent 86%);
  color: var(--accent-2);
  margin: 0 auto 10px;
  font-size: 22px;
}
.feature-tile h3 {
  margin: 8px 0 6px;
  font-size: 20px;
  font-weight: 900;
}
.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.brand-strip {
  background: color-mix(in srgb, var(--surface-2) 85%, transparent 15%);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}
.brand-strip-text {
  text-align: center;
}
.brand-strip-text {
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.2px;
}
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.brand-logo {
  height: clamp(86px, 9vw, 160px);
  width: auto;
  object-fit: contain;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgb(var(--gold-rgb) / 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.10), 0 0 0 1px rgba(255,255,255,0.22) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
html:not(.theme-light-forced) body.theme-dark .brand-logo {
  background: rgba(15, 23, 42, 0.35);
  border-color: rgb(var(--gold-rgb) / 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.brand-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.14), 0 0 0 1px rgb(var(--gold-rgb) / 0.18) inset;
  border-color: rgb(var(--gold-rgb) / 0.40);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  text-align: center;
}
.stars {
  display: inline-flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 10px;
}
.quote {
  color: var(--muted);
  font-weight: 700;
}
.who {
  margin-top: 14px;
  font-weight: 900;
}
.where {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.cta-banner {
  background: transparent;
  padding: 18px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-radius: 26px;
  padding: 16px 18px;
  color: #fff;
  background:
    radial-gradient(900px 320px at 18% 18%, rgba(255,255,255,0.22), transparent 62%),
    radial-gradient(900px 320px at 82% 18%, rgba(255,255,255,0.14), transparent 64%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.12), 0 0 0 1px rgba(255,255,255,0.18) inset;
}
.cta-title {
  font-weight: 900;
  font-size: 22px;
}
.cta-sub {
  margin-top: 4px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 14px;
}
.cta-btn {
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.10), 0 0 0 1px rgba(255,255,255,0.28) inset;
}
.cta-btn:hover {
  transform: translateY(-1px);
}

.contact-alert {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgb(var(--brand-rgb) / 0.12);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08), 0 0 0 1px rgba(255,255,255,0.26) inset;
  font-weight: 800;
}
.contact-alert-success {
  border-color: rgb(var(--accent-rgb) / 0.22);
}
.contact-alert-error {
  border-color: rgba(239, 68, 68, 0.22);
}

.contact-form-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.46));
  border: 1px solid rgb(var(--brand-rgb) / 0.12);
  border-radius: 26px;
  padding: 16px;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.10), 0 0 0 1px rgba(255,255,255,0.30) inset;
}
html:not(.theme-light-forced) body.theme-dark .contact-form-wrap {
  background: rgba(15, 23, 42, 0.56);
  border-color: rgb(var(--gold-rgb) / 0.14);
}

.contact-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgb(var(--brand-rgb) / 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.06), 0 0 0 1px rgba(255,255,255,0.22) inset;
  padding: 12px 12px;
  outline: none;
  font-weight: 700;
}
html:not(.theme-light-forced) body.theme-dark .contact-form input,
html:not(.theme-light-forced) body.theme-dark .contact-form textarea {
  background: rgba(15, 23, 42, 0.50);
  border-color: rgb(var(--gold-rgb) / 0.14);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(var(--accent-rgb) / 0.40);
  box-shadow: 0 20px 55px rgba(2, 6, 23, 0.08), 0 0 0 4px rgb(var(--accent-rgb) / 0.10);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-page {
  padding: 34px 0 46px;
  overflow-x: hidden;
}

@media (max-width: 680px) {
  .contact-page { padding: 22px 0 34px; }
  .contact-page .grid.cols-3 { grid-template-columns: 1fr; }
  .contact-page .card { padding: 14px; }
  .contact-page iframe { height: 260px; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand) 12%, transparent 88%);
  color: var(--brand);
  flex: 0 0 auto;
}
.feature h3 { margin: 0 0 4px; font-size: 16px; font-weight: 900; }
.feature p { margin: 0; color: var(--muted); font-weight: 600; font-size: 14px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.footer-title { margin: 0 0 10px; font-weight: 900; }
.footer-links a { color: var(--muted); font-weight: 700; display: inline-flex; padding: 8px 0; }
.footer-links a:hover { color: var(--text); }
.copyright { margin-top: 18px; color: var(--muted); font-weight: 700; font-size: 13px; }

/* WooCommerce */
.woocommerce ul.products li.product {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  position: static;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before {
  display: none;
}

.alia-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 38px;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--glass-strong) 75%, transparent 25%) 0%,
      color-mix(in srgb, var(--glass) 70%, transparent 30%) 55%,
      color-mix(in srgb, var(--glass) 82%, transparent 18%) 100%);
  border: 1px solid rgb(var(--brand-rgb) / 0.14);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.10), 0 0 0 1px rgba(255,255,255,0.28) inset;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
html:not(.theme-light-forced) body.theme-dark .alia-product-card {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgb(var(--gold-rgb) / 0.14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.alia-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 220px at 18% 25%, rgb(var(--gold-rgb) / 0.22), transparent 60%),
    radial-gradient(560px 240px at 85% 30%, rgb(var(--brand-rgb) / 0.18), transparent 62%);
  opacity: 0.70;
  pointer-events: none;
}
.alia-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 110px rgba(2, 6, 23, 0.16), 0 0 0 1px rgba(255,255,255,0.28) inset;
}

.alia-product-link {
  display: block;
  color: inherit;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.alia-product-head {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 4px 8px 8px;
}

.alia-product-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.alia-product-sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.alia-product-media {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  border-radius: 28px;
  padding: 12px 12px 10px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(520px 320px at 50% 40%, rgba(255,255,255,0.22), transparent 62%),
    radial-gradient(520px 320px at 22% 18%, rgb(var(--gold-rgb) / 0.20), transparent 62%),
    radial-gradient(520px 320px at 82% 22%, rgb(var(--brand-rgb) / 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.40));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.10);
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
html:not(.theme-light-forced) body.theme-dark .alia-product-media {
  background:
    radial-gradient(520px 320px at 50% 40%, rgba(255,255,255,0.10), transparent 62%),
    radial-gradient(520px 320px at 22% 18%, rgb(var(--gold-rgb) / 0.12), transparent 62%),
    radial-gradient(520px 320px at 82% 22%, rgb(var(--brand-rgb) / 0.12), transparent 62%),
    linear-gradient(180deg, rgba(15,23,42,0.60), rgba(15,23,42,0.34));
  border-color: rgba(255, 255, 255, 0.12);
}

.alia-product-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alia-product-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 34px rgba(2, 6, 23, 0.22));
}

.alia-product-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
  padding: 8px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(var(--gold-rgb) / 0.96), color-mix(in srgb, var(--sand) 92%, transparent 8%));
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.14);
  font-weight: 900;
  line-height: 1;
  font-size: 14px;
}
.alia-product-price-badge del { display: none; }
.alia-product-price-badge .amount { color: var(--deep); }

.alia-product-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.alia-product-actions a.button,
.alia-product-actions button.button,
.alia-product-actions input.button {
  width: calc(100% - 8px);
  max-width: 220px;
  padding: 11px 14px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 44px var(--accent-glow) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  min-height: 46px;
  white-space: normal;
}
.alia-product-actions a.button:hover,
.alia-product-actions button.button:hover,
.alia-product-actions input.button:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 86%, #000 14%), color-mix(in srgb, var(--accent-2) 80%, #000 20%)) !important;
  box-shadow: 0 24px 60px var(--accent-glow) !important;
}

@media (max-width: 980px) {
  .alia-product-card { border-radius: 34px; padding: 12px 12px 10px; }
  .alia-product-media { border-radius: 26px; padding: 10px 10px 8px; }
}

.alia-qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgb(var(--brand-rgb) / 0.12);
  background: color-mix(in srgb, var(--glass-strong) 70%, transparent 30%);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08), 0 0 0 1px rgba(255,255,255,0.28) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
html:not(.theme-light-forced) body.theme-dark .alia-qty-wrap {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgb(var(--gold-rgb) / 0.14);
}

.alia-qty-wrap input.qty {
  width: 56px;
  min-width: 56px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgb(var(--brand-rgb) / 0.10);
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 8px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
}
html:not(.theme-light-forced) body.theme-dark .alia-qty-wrap input.qty {
  background: rgba(15, 23, 42, 0.50);
  border-color: rgb(var(--gold-rgb) / 0.14);
}

.alia-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 44px var(--accent-glow);
  cursor: pointer;
}
.alia-qty-btn:hover { transform: translateY(-1px); }

.woocommerce-cart-form .quantity,
.woocommerce div.product form.cart .quantity {
  display: inline-flex;
}
.woocommerce ul.products li.product .alia-product-image img {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

@media (max-width: 980px) {
  .woocommerce ul.products li.product .alia-product-image img { padding: 0 !important; }
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: grid;
  gap: 10px;
  position: relative;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background:
    radial-gradient(60px 60px at 30% 20%, rgba(255,255,255,0.55), rgba(255,255,255,0.10)),
    rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-image: url('assets/img/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;
  opacity: 0.82;
  pointer-events: none;
}
html:not(.theme-light-forced) body.theme-dark .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(60px 60px at 30% 20%, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
    rgba(15, 23, 42, 0.22);
  opacity: 0.9;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 18px 44px var(--accent-glow);
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 86%, #000 14%), color-mix(in srgb, var(--accent-2) 80%, #000 20%)) !important;
  box-shadow: 0 24px 60px var(--accent-glow);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .brand-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: var(--header-h); left: 16px; right: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow); flex-direction: column; }
  .nav a { width: 100%; justify-content: flex-start; }
  .mobile-toggle { display: inline-flex; }
}
