﻿@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN TOKENS
   Dark luxury + warm gold accent
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --bg:          #08080a;
  --bg2:         #111113;
  --bg3:         #19191d;
  --bg4:         #222228;
  --surface:     #16161a;
  --text:        #f0efe9;
  --text2:       #9d9d9f;
  --text3:       #5c5c5e;
  --accent:      #c9952c;
  --accent2:     #dba940;
  --accent3:     #e8bf5a;
  --accent-soft: rgba(201,149,44,0.10);
  --accent-glow: rgba(201,149,44,0.25);
  --success:     #3ecf71;
  --warning:     #f0a030;
  --danger:      #ef4444;
  --border:      rgba(255,255,255,0.06);
  --border2:     rgba(255,255,255,0.10);
  --glass:       rgba(8,8,10,0.80);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(201,149,44,0.12);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   8px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NOISE TEXTURE OVERLAY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  background: var(--glass);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px; letter-spacing: -0.5px;
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo .logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--bg);
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text2); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: color 0.25s;
  position: relative; letter-spacing: 0.2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.3s cubic-bezier(.16,1,.3,1);
  transform-origin: center;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

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

.nav-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 980px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--text2); font-size: 12px; font-weight: 600;
  white-space: nowrap;
}
.nav-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(62,207,113,0.35);
  animation: livePulse 1.8s infinite;
}
.nav-live-text { display: inline-flex; align-items: center; gap: 1px; }
.live-users-count {
  min-width: 22px; display: inline-block; text-align: right;
  color: var(--text);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), opacity 0.35s ease;
}
.live-users-count.is-updating { opacity: 0.35; transform: translateY(-4px); }

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(62,207,113,0.35); }
  70% { box-shadow: 0 0 0 10px rgba(62,207,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(62,207,113,0); }
}

/* Mobile menu */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); transition: all 0.3s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; font-weight: 600;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  border-radius: 980px; font-size: 14px;
  letter-spacing: 0.2px; position: relative;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg); padding: 12px 26px;
  box-shadow: 0 2px 12px rgba(201,149,44,0.2);
}
.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(201,149,44,0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg3); color: var(--text); padding: 12px 26px;
  border: 1px solid var(--border2);
}
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent-glow); }

.btn-ghost {
  background: transparent; color: var(--text2); padding: 10px 16px;
}
.btn-ghost:hover { color: var(--text); background: var(--bg3); }

.btn-outline {
  background: transparent; color: var(--accent); padding: 12px 26px;
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 20px rgba(201,149,44,0.15);
}

.btn-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg3); color: var(--text); position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.25s;
}
.btn-icon:hover { background: var(--bg4); border-color: var(--border2); transform: scale(1.05); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* Badge */
.badge-count {
  position: absolute; top: 0; right: 0;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--accent); color: var(--bg); font-size: 11px;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  padding: 0 5px; border: 2px solid var(--bg);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 32px 100px; position: relative; overflow: hidden;
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; opacity: 0.5;
}
.hero-orb-1 {
  width: 500px; height: 500px; top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(201,149,44,0.15) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: 10%; right: -5%;
  background: radial-gradient(circle, rgba(201,149,44,0.08) 0%, transparent 70%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; max-width: 820px; transform: translate3d(calc(var(--hero-parallax-x, 0px) * -0.18), calc(var(--hero-parallax-y, 0px) * -0.18), 0); transition: transform 0.9s cubic-bezier(.16,1,.3,1); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent);
  padding: 7px 18px; border-radius: 980px; font-size: 13px;
  font-weight: 600; margin-bottom: 28px; letter-spacing: 0.5px;
  border: 1px solid rgba(201,149,44,0.15);
  opacity: 0; animation: heroFadeUp 0.7s 0.1s cubic-bezier(.16,1,.3,1) forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 80px); font-weight: 800;
  letter-spacing: -2.5px; line-height: 1.02; margin-bottom: 22px;
  opacity: 0; animation: heroFadeUp 0.7s 0.25s cubic-bezier(.16,1,.3,1) forwards;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent3), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px); color: var(--text2);
  line-height: 1.55; max-width: 540px; margin: 0 auto 40px;
  opacity: 0; animation: heroFadeUp 0.7s 0.4s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: heroFadeUp 0.7s 0.55s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-stats {
  display: flex; gap: 56px; justify-content: center; margin-top: 72px;
  padding-top: 48px; border-top: 1px solid var(--border);
  opacity: 0; animation: heroFadeUp 0.7s 0.7s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 36px; font-weight: 700; letter-spacing: -1px;
  color: var(--accent2);
}
.hero-stat span { font-size: 13px; color: var(--text3); font-weight: 500; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 32px;
}
.section-full {
  padding: 100px 32px;
}
.section-header { text-align: center; margin-bottom: 56px; transform: translateY(18px); opacity: 0; transition: transform 0.9s cubic-bezier(.16,1,.3,1), opacity 0.9s cubic-bezier(.16,1,.3,1); }
body.page-ready .section-header { transform: translateY(0); opacity: 1; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  letter-spacing: -1.2px; margin-bottom: 14px;
}
.section-header p {
  font-size: 17px; color: var(--text2); max-width: 480px; margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATEGORY TABS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cat-tabs {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.cat-tab {
  padding: 9px 22px; border-radius: 980px; border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; cursor: pointer;
  background: transparent; color: var(--text2);
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.cat-tab:hover { border-color: var(--border2); color: var(--text); background: var(--bg3); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg); border-color: transparent;
  box-shadow: 0 2px 16px rgba(201,149,44,0.25);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg2); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,149,44,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(201,149,44,0.15);
}
.service-card:hover::before { opacity: 1; }

.card-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg); padding: 4px 12px; border-radius: 980px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  text-transform: uppercase;
}

.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  position: relative; z-index: 1;
}

.card-cat {
  font-size: 11px; color: var(--accent); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.card-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.3px; position: relative; z-index: 1;
}
.card-desc {
  font-size: 14px; color: var(--text2); line-height: 1.55;
  margin-bottom: 18px; position: relative; z-index: 1;
}

.card-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px;
  position: relative; z-index: 1;
}
.card-feature {
  padding: 5px 12px; background: var(--bg3); border-radius: 6px;
  font-size: 12px; color: var(--text2); font-weight: 500;
  border: 1px solid var(--border);
}

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.card-price {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; letter-spacing: -0.5px;
  color: var(--accent2);
}
.card-price span { font-size: 14px; color: var(--text3); font-weight: 400; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.hidden { display: none; }

.modal {
  background: var(--bg2); border-radius: 22px;
  width: 100%; max-width: 440px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border2);
  animation: modalIn 0.4s cubic-bezier(.16,1,.3,1);
}
.modal-header {
  padding: 26px 28px 0; display: flex;
  align-items: center; justify-content: space-between;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: -0.3px;
}
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: var(--text2);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--bg4); color: var(--text); }
.modal-body { padding: 24px 28px 32px; }
.service-details-overlay {
  position: fixed; inset: 0; z-index: 2100;
  background: rgba(0,0,0,0.66);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.service-details-overlay.hidden { display: none; }
.service-details-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.service-details-modal {
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)), var(--bg2);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(201,149,44,0.08);
  padding: 28px;
  position: relative;
  transform: translateY(26px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.16,1,.3,1), opacity 0.24s ease;
}
.service-details-overlay.visible .service-details-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.service-details-close {
  position: absolute;
  top: 18px;
  right: 18px;
}
.service-details-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  padding-right: 42px;
}
.service-details-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-details-icon svg {
  width: 46px;
  height: 46px;
}
.service-details-cat {
  color: var(--accent3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-details-top h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
.service-details-top p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
}
.service-details-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.service-details-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent3);
  letter-spacing: -0.05em;
}
.service-details-price span {
  font-size: 16px;
  color: var(--text3);
  font-weight: 500;
}
.service-details-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.service-details-copy {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.service-details-copy p {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  color: var(--text2);
  line-height: 1.7;
}
.service-details-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DRAWER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
.drawer-overlay.hidden { display: none; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 100vw;
  background: var(--bg2); z-index: 2001;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 50px rgba(0,0,0,0.3);
  display: flex; flex-direction: column;
  animation: slideRight 0.4s cubic-bezier(.16,1,.3,1);
}
.drawer.hidden { display: none; }

@keyframes slideRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.drawer-header {
  padding: 22px 26px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-header h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
}
.drawer-body { flex: 1; overflow-y: auto; padding: 22px 26px; }
.drawer-footer { padding: 22px 26px; border-top: 1px solid var(--border); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORMS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text2); margin-bottom: 7px; letter-spacing: 0.3px;
}
.form-input {
  width: 100%; padding: 13px 18px; border-radius: var(--radius-xs);
  border: 1.5px solid var(--border2); background: var(--bg3);
  font-size: 15px; color: var(--text); outline: none;
  transition: all 0.25s;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: var(--bg4);
}
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-row { display: flex; gap: 14px; }
.form-row .form-group { flex: 1; }
.auth-newsletter {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text2);
  font-size: 13px;
  line-height: 1.5;
}
.auth-newsletter input {
  margin-top: 2px;
  accent-color: var(--accent);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CART
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cart-item {
  display: flex; gap: 14px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}
.cart-item-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 15px; font-weight: 600; }
.cart-item-cat { font-size: 12px; color: var(--text3); margin-top: 2px; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--accent2); white-space: nowrap;
}
.cart-item-remove {
  background: none; border: none; color: var(--danger);
  font-size: 12px; cursor: pointer; font-weight: 600; margin-top: 6px;
  padding: 0; opacity: 0.7; transition: opacity 0.2s;
}
.cart-item-remove:hover { opacity: 1; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--text3); }
.cart-empty-icon { font-size: 52px; margin-bottom: 14px; opacity: 0.4; }

.cart-total {
  display: flex; justify-content: space-between;
  font-size: 18px; margin-bottom: 18px;
}
.cart-total span:first-child { color: var(--text2); }
.cart-total span:last-child {
  font-family: var(--font-display);
  font-weight: 700; color: var(--accent2);
}

/* Checkout steps */
.checkout-steps { display: flex; gap: 5px; margin-bottom: 28px; }
.checkout-step {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--bg4); transition: background 0.4s;
}
.checkout-step.active { background: var(--accent); }
.checkout-step.done { background: var(--success); }

/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.payment-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border2); cursor: pointer;
  transition: all 0.25s; background: var(--bg3);
}
.payment-method:hover { border-color: var(--accent-glow); }
.payment-method.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 20px rgba(201,149,44,0.08);
}
.payment-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border2); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.2s;
}
.payment-method.selected .payment-radio { border-color: var(--accent); }
.payment-radio-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); transform: scale(0);
  transition: transform 0.25s cubic-bezier(.16,1,.3,1);
}
.payment-method.selected .payment-radio-dot { transform: scale(1); }
.payment-info { flex: 1; }
.payment-name { font-size: 14px; font-weight: 600; }
.payment-desc { font-size: 12px; color: var(--text3); }

/* Success */
.success-anim { text-align: center; padding: 48px 20px; }
.success-check {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(62,207,113,0.1); margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; border: 2px solid rgba(62,207,113,0.2);
  animation: popIn 0.5s cubic-bezier(.16,1,.3,1);
}
@keyframes popIn {
  0% { transform: scale(0); } 50% { transform: scale(1.15); } 100% { transform: scale(1); }
}
.success-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; margin-bottom: 10px;
}
.success-msg { font-size: 15px; color: var(--text2); line-height: 1.55; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ACCOUNT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.account-container { max-width: 620px; margin: 0 auto; padding-top: 120px; }

.account-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: var(--bg); font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(201,149,44,0.25);
}

.account-tabs {
  display: flex; gap: 4px; margin-bottom: 30px;
  background: var(--bg3); padding: 4px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.account-tab {
  flex: 1; padding: 11px; text-align: center; border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 500; cursor: pointer; border: none;
  background: transparent; color: var(--text2); transition: all 0.25s;
}
.account-tab:hover { color: var(--text); }
.account-tab.active {
  background: var(--bg2); color: var(--text);
  box-shadow: var(--shadow-sm);
}

.order-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border-radius: var(--radius-sm);
  background: var(--bg3); border: 1px solid var(--border);
  margin-bottom: 10px; transition: border-color 0.2s;
}
.order-item:hover { border-color: var(--border2); }
.order-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.order-info { flex: 1; }
.order-name { font-size: 14px; font-weight: 600; }
.order-meta { font-size: 12px; color: var(--text3); margin-top: 2px; }
.order-status {
  padding: 4px 12px; border-radius: 980px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.3px;
}
.order-status.completed { background: rgba(62,207,113,0.1); color: var(--success); }
.order-status.pending { background: rgba(240,160,48,0.1); color: var(--warning); }
.order-status.cancelled { background: rgba(239,68,68,0.1); color: #ff8a8a; }
.order-price {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--accent2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUPPORT / CHAT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.support-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg); border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,149,44,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.support-bubble:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,149,44,0.4);
}

.chat-messages {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 12px; min-height: 200px;
}
.chat-msg {
  max-width: 82%; padding: 13px 18px; border-radius: 18px;
  font-size: 14px; line-height: 1.5; animation: fadeIn 0.3s ease;
}
.chat-msg.bot {
  background: var(--bg3); border: 1px solid var(--border);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg); align-self: flex-end; border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-input-row {
  display: flex; gap: 10px; padding: 18px 26px;
  border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1; padding: 12px 18px; border-radius: 980px;
  border: 1.5px solid var(--border2); background: var(--bg3);
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--accent); }
.chat-input::placeholder { color: var(--text3); }
.chat-send {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; transition: all 0.25s;
}
.chat-send:hover { box-shadow: 0 4px 16px rgba(201,149,44,0.3); transform: scale(1.05); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--bg2); padding: 30px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: border-color 0.3s;
}
.testimonial:hover { border-color: var(--border2); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--accent2); font-size: 14px; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--text2); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--accent);
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text3); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURES ROW (homepage)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.features-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 24px;
}
.feature-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; text-align: center;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.feature-box:hover {
  border-color: rgba(201,149,44,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 32px; margin-bottom: 14px;
  display: inline-block;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.feature-desc { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 32px 36px; max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.55; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text3); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text2);
  margin-bottom: 10px; cursor: pointer; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  font-size: 13px; color: var(--text3); text-align: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOAST
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--surface); color: var(--text); padding: 14px 26px;
  border-radius: 14px; font-size: 14px; font-weight: 500; z-index: 3000;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border2);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.4s cubic-bezier(.16,1,.3,1), toastOut 0.3s 2.2s ease forwards;
}
.toast .toast-icon { color: var(--accent); font-size: 16px; }
.toast.hidden { display: none; }

@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(-50%) translateY(20px); } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPINNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--bg4);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DIVIDER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.divider-glow {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  .navbar-inner { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-live { padding: 7px 10px; font-size: 11px; }
  .nav-hamburger { display: flex; }
  .hero { padding: 110px 20px 60px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .section, .section-full { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .drawer { width: 100vw; }
  .service-details-modal { padding: 22px; border-radius: 22px; }
  .service-details-head { flex-direction: column; padding-right: 34px; }
  .service-details-meta { align-items: flex-start; }
  .service-details-features { justify-content: flex-start; }
  .service-details-actions .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-panels { grid-template-columns: 1fr; }
  .admin-shell { padding-top: 104px; }
  .form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 520px) {
  .nav-live { padding: 7px 9px; }
  .nav-live-label { display: none; }
  .live-users-count { min-width: 18px; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-panel,
  .admin-stat-card,
  .admin-state-card { padding: 20px; }
  .admin-table { min-width: 720px; }
  .admin-mini-chart { gap: 8px; }
}



body.welcome-open { overflow: hidden; }

.welcome-overlay {
  position: fixed; inset: 0; z-index: 3500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8,8,10,0.72);
  backdrop-filter: blur(16px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.welcome-overlay.hidden { display: none; }
.welcome-overlay.visible { opacity: 1; pointer-events: auto; }
.welcome-card {
  width: min(420px, 100%); text-align: center;
  background: linear-gradient(180deg, rgba(17,17,19,0.96), rgba(8,8,10,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 34px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 40px rgba(201,149,44,0.12);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}
.welcome-overlay.visible .welcome-card { transform: translateY(0) scale(1); }
.welcome-logo {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: var(--bg); font-family: var(--font-display); font-size: 24px; font-weight: 800;
  box-shadow: 0 18px 40px rgba(201,149,44,0.22);
}
.welcome-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 36px);
  font-weight: 700; letter-spacing: -0.8px; margin-bottom: 8px;
}
.welcome-title span { color: var(--accent3); }
.welcome-subtitle { color: var(--text2); font-size: 15px; }

.nav-cart-btn.cart-bump {
  animation: cartBump 0.48s cubic-bezier(.16,1,.3,1);
}

.cart-badge-count.cart-badge-pop {
  animation: cartBadgePop 0.6s cubic-bezier(.16,1,.3,1);
}

.btn-added-flash {
  animation: addedFlash 0.65s cubic-bezier(.16,1,.3,1);
}

@keyframes cartBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

@keyframes cartBadgePop {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(201,149,44,0);
  }
  35% {
    transform: scale(1.22);
    box-shadow: 0 0 18px rgba(201,149,44,0.32);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(201,149,44,0);
  }
}

@keyframes addedFlash {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(201,149,44,0);
  }
  45% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 16px 28px rgba(201,149,44,0.22);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(201,149,44,0);
  }
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3600;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-card {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(17,17,19,0.96), rgba(8,8,10,0.96));
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cookie-banner-copy p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cookie-banner-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }
}
.cookie-pref-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(201,149,44,0.22);
}
body.page-ready .support-card,
body.page-ready .inline-chat,
body.page-ready .contact-form-box,
body.page-ready .account-container,
body.page-ready .faq-page-item {
  animation: appleRise 0.9s cubic-bezier(.16,1,.3,1) both;
}

body.page-ready .support-card:nth-child(1),
body.page-ready .faq-page-item:nth-child(1) { animation-delay: 0.04s; }
body.page-ready .support-card:nth-child(2),
body.page-ready .faq-page-item:nth-child(2) { animation-delay: 0.1s; }
body.page-ready .support-card:nth-child(3),
body.page-ready .faq-page-item:nth-child(3) { animation-delay: 0.16s; }
body.page-ready .support-card:nth-child(4),
body.page-ready .faq-page-item:nth-child(4) { animation-delay: 0.22s; }
body.page-ready .faq-page-item:nth-child(5) { animation-delay: 0.28s; }
body.page-ready .faq-page-item:nth-child(6) { animation-delay: 0.34s; }
body.page-ready .faq-page-item:nth-child(7) { animation-delay: 0.4s; }

.inline-chat,
.contact-form-box,
.account-container,
.faq-page-item,
.support-card {
  will-change: transform, opacity;
}

.support-card,
.inline-chat,
.contact-form-box,
.account-container,
.faq-page-item,
.service-card,
.testimonial {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(.16,1,.3,1), box-shadow 0.55s cubic-bezier(.16,1,.3,1), border-color 0.55s cubic-bezier(.16,1,.3,1), background 0.55s cubic-bezier(.16,1,.3,1);
}

.support-card:hover,
.inline-chat:hover,
.contact-form-box:hover,
.faq-page-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@keyframes appleRise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.card-icon svg,
.cart-item-icon svg,
.order-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.icon-fallback {
  font-size: 22px;
  line-height: 1;
}


.nav-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cart-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}


.cookie-settings-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.cookie-settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.cookie-settings-copy {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.cookie-settings-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}

.cookie-settings-pill.accepted {
  background: rgba(201,149,44,0.12);
  border-color: rgba(201,149,44,0.28);
  color: var(--accent3);
}

.cookie-settings-pill.rejected {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
  color: #ff8a8a;
}

.cookie-settings-status {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.cookie-settings-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-pref-btn {
  min-width: 138px;
}

.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 120px;
}

.admin-state-card,
.admin-panel,
.admin-stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.admin-state-card {
  text-align: center;
  padding: 48px 28px;
}

.admin-state-icon {
  font-size: 52px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.admin-state-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
}

.admin-state-card p {
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.admin-state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.admin-stat-card {
  padding: 24px;
}

.admin-stat-label {
  display: block;
  color: var(--text3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.admin-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent2);
  margin-bottom: 8px;
}

.admin-stat-card small {
  color: var(--text2);
  font-size: 13px;
}

.admin-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel {
  padding: 24px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-panel-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
}

.admin-panel-note {
  color: var(--text3);
  font-size: 13px;
}

.admin-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.admin-bar-meta strong {
  color: var(--accent2);
  font-family: var(--font-display);
}

.admin-bar-track {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: var(--bg3);
  overflow: hidden;
  border: 1px solid var(--border);
}

.admin-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.admin-mini-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 220px;
}

.admin-chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 220px;
}

.admin-chart-value {
  color: var(--text2);
  font-size: 12px;
}

.admin-chart-bar {
  height: 150px;
  width: 100%;
  max-width: 54px;
  border-radius: 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 6px;
}

.admin-chart-bar span {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  min-height: 12px;
}

.admin-chart-label {
  color: var(--text3);
  font-size: 12px;
  text-transform: capitalize;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 12px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table thead th {
  color: var(--text3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: none;
  padding-top: 0;
}

.admin-client-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-client-cell strong {
  font-size: 14px;
}

.admin-client-cell span {
  color: var(--text3);
  font-size: 12px;
}

.admin-empty-copy {
  color: var(--text3);
  font-size: 14px;
  padding: 16px 0;
}

.admin-actions-cell {
  min-width: 220px;
}

.admin-order-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-status-select {
  min-width: 120px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 13px;
}

.admin-action-btn {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.admin-action-btn:hover {
  border-color: var(--border2);
}

.admin-action-btn.delete {
  color: #ff8a8a;
}
