/* ==========================================================================
   Boxifyme — Custom Packaging Website
   Theme: "Slate & Terracotta" — muted, professional, low-glare palette
   ========================================================================== */

:root {
  --violet-950: #16212e;
  --violet-900: #1c2b3a;
  --violet-800: #28394a;
  --violet-700: #3d5064;
  --violet-600: #56697c;
  --violet-500: #74869a;
  --pink-500: #b1602f;
  --pink-400: #c98653;
  --amber-500: #a5762f;
  --amber-400: #c19a5c;
  --teal-400: #5f8570;

  --grad-brand: linear-gradient(120deg, var(--violet-700) 0%, var(--violet-600) 55%, var(--pink-500) 100%);
  --grad-brand-2: linear-gradient(135deg, #1c2b3a 0%, #2c3e50 55%, #3d5064 100%);
  --grad-cta: linear-gradient(95deg, #a5762f 0%, #8f6329 100%);
  --grad-teal: linear-gradient(120deg, #5f8570 0%, #4d7286 100%);

  --bg: #f8f7f4;
  --bg-alt: #f1efe8;
  --surface: #ffffff;
  --ink: #1e2530;
  --ink-soft: #5b6472;
  --line: #e5e2da;

  --shadow-sm: 0 2px 10px rgba(22, 33, 46, 0.07);
  --shadow-md: 0 10px 30px rgba(22, 33, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(22, 33, 46, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --container: 1240px;
  --ff-head: "Poppins", "Segoe UI", sans-serif;
  --ff-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--ff-body); color: var(--ink); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--violet-950); line-height: 1.2; margin: 0 0 .6em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--grad-brand-2); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.78); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-500); background: rgba(177, 96, 47, 0.09); padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 18px; }
.eyebrow::before { content: "✦"; color: var(--amber-500); }
.section--dark .eyebrow { background: rgba(255,255,255,0.12); color: var(--amber-400); }
.section--dark .eyebrow::before { color: var(--amber-400); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; border-radius: var(--radius-pill); font-weight: 700; font-size: 15px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; white-space: nowrap; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 10px 24px rgba(165, 118, 47, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(165, 118, 47, 0.4); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.btn-dark { background: var(--violet-950); color: #fff; }
.btn-dark:hover { background: var(--violet-800); transform: translateY(-3px); }
.btn-outline { background: transparent; border: 1.5px solid var(--violet-700); color: var(--violet-700); }
.btn-outline:hover { background: var(--violet-700); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ---------- Top Bar ---------- */
.topbar { background: var(--violet-950); color: rgba(255,255,255,0.85); font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--amber-400); }
.topbar-right .divider { opacity: .35; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: background .2s; }
.topbar-social a:hover { background: var(--pink-500); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 500; background: rgba(248, 247, 244, 0.95); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 16px; max-width: 1480px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; z-index: 2; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--ff-head); font-weight: 800; font-size: 23px; color: var(--violet-950); letter-spacing: -.02em; }
.brand-name span { background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; flex: 1; justify-content: center; min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-list > li { position: static; }
.nav-list > li > a { display: flex; align-items: center; gap: 4px; padding: 11px 12px; font-weight: 600; font-size: 14px; color: var(--ink); border-radius: var(--radius-sm); transition: color .2s, background .2s; white-space: nowrap; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--pink-500); background: var(--bg-alt); }
.nav-list .caret { font-size: 10px; opacity: .6; transition: transform .2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; border: 1px solid var(--line); z-index: 50; }
.nav-list > li.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.dropdown li a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.dropdown li a:hover { background: var(--bg-alt); color: var(--pink-500); }

.has-megamenu { position: static; }
.megamenu { position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s ease; z-index: 50; }
.has-megamenu:hover .megamenu { opacity: 1; visibility: visible; transform: translateY(0); }
.megamenu-inner { max-width: 1480px; margin: 0 auto; padding: 28px 40px 32px; }
.megamenu-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px 18px; }
.megamenu-grid a { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 10px; font-size: 13px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.megamenu-grid a:hover { background: var(--bg-alt); color: var(--pink-500); }
.megamenu-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.megamenu-footer span { font-size: 12.5px; color: var(--ink-soft); }
.megamenu-footer a.view-all { font-size: 13px; font-weight: 700; color: var(--violet-700); }
.megamenu-footer a.view-all:hover { color: var(--pink-500); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; z-index: 2; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); font-size: 17px; position: relative; transition: background .2s; }
.icon-btn:hover { background: #e5e2da; }
.cart-count { position: absolute; top: -6px; right: -8px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 50px; background: var(--pink-500); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; background: var(--bg-alt); align-items: center; justify-content: center; font-size: 20px; }

/* ---------- Account menu ---------- */
.account-menu { position: relative; }
.account-trigger { display: flex; align-items: center; gap: 8px; padding: 6px 8px 6px 6px; border-radius: var(--radius-pill); transition: background .2s; }
.account-trigger:hover { background: var(--bg-alt); }
.account-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.account-avatar.guest { background: var(--bg-alt); color: var(--ink-soft); font-size: 17px; }
.account-name { font-size: 13.5px; font-weight: 700; color: var(--violet-950); white-space: nowrap; }
.account-caret { font-size: 9px; color: var(--ink-soft); }
.account-dropdown { position: absolute; top: calc(100% + 10px); right: 0; min-width: 230px; background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; border: 1px solid var(--line); z-index: 60; }
.account-menu:hover .account-dropdown, .account-menu.open .account-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.account-dropdown-head { padding: 10px 12px 14px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.account-dropdown-head strong { display: block; font-size: 14px; color: var(--violet-950); }
.account-dropdown-head span { font-size: 12px; color: var(--ink-soft); }
.account-dropdown a, .account-dropdown button { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 10px 12px; border-radius: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.account-dropdown a:hover, .account-dropdown button:hover { background: var(--bg-alt); color: var(--pink-500); }
.account-dropdown .logout-btn { color: var(--pink-500); border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; border-radius: 0 0 10px 10px; }

/* ---------- Breadcrumb / Page header ---------- */
.page-hero { background: var(--grad-brand-2); padding: 56px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; width:340px; height:340px; border-radius:50%; background:var(--pink-500); opacity:.25; filter:blur(60px); top:-140px; right:-60px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--amber-400); }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p.lead { color: rgba(255,255,255,0.8); font-size: 16.5px; max-width: 640px; margin: 0; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--grad-brand-2); overflow: hidden; padding: 90px 0 110px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .3; }
.hero::before { width: 460px; height: 460px; background: var(--pink-500); top: -160px; right: -100px; }
.hero::after { width: 380px; height: 380px; background: var(--amber-500); bottom: -180px; left: -80px; opacity: .2; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--amber-400); padding: 8px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 24px; }
.hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 58px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 22px; }
.hero h1 .accent { background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div { color: #fff; }
.hero-stats strong { display: block; font-size: 26px; font-family: var(--ff-head); font-weight: 800; color: var(--amber-400); }
.hero-stats span { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.hero-float-card { position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: var(--violet-950); animation: floaty 5s ease-in-out infinite; }
.hero-float-card .dot { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.hero-float-1 { top: -18px; left: -24px; animation-delay: 0s; }
.hero-float-1 .dot { background: var(--grad-teal); }
.hero-float-2 { bottom: 30px; right: -30px; animation-delay: 1.2s; }
.hero-float-2 .dot { background: var(--grad-cta); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 24px; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; background: var(--bg-alt); }
.trust-item:nth-child(1) .ico { background: #ecdfc9; }
.trust-item:nth-child(2) .ico { background: #e8d6c9; }
.trust-item:nth-child(3) .ico { background: #d9dee3; }
.trust-item:nth-child(4) .ico { background: #d7e2dc; }
.trust-item strong { display: block; font-size: 14.5px; color: var(--violet-950); }
.trust-item span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.tabs-bar { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn { padding: 11px 22px; border-radius: var(--radius-pill); background: var(--surface); border: 1.5px solid var(--line); font-weight: 600; font-size: 14px; color: var(--ink-soft); transition: all .2s; }
.tab-btn:hover { border-color: var(--violet-500); color: var(--violet-700); }
.tab-btn.active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Product / Photo Cards ---------- */
.prod-card, .photo-card {
  background: var(--bg-alt); border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s; position: relative; display: flex; flex-direction: column;
  padding: 16px 16px 24px; text-align: center;
}
.prod-card:hover, .photo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-card .img-wrap, .photo-card .img-wrap { aspect-ratio: 1/1; overflow: hidden; border-radius: 14px; position: relative; background: #fff; }
.prod-card .img-wrap img, .photo-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover .img-wrap img, .photo-card:hover .img-wrap img { transform: scale(1.06); }
.prod-card .stock-badge { position: absolute; top: 12px; right: 12px; background: var(--violet-900); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill); z-index: 2; }
.prod-card .body, .photo-card .body { padding: 18px 6px 0; }
.prod-card h4, .photo-card h4 { font-size: 16px; margin: 16px 0 14px; line-height: 1.35; }
.prod-card .explore, .photo-card .explore { font-size: 13px; font-weight: 700; color: var(--violet-900); display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1.5px solid var(--violet-900); border-radius: var(--radius-pill); padding: 9px 22px; transition: all .2s; }
.prod-card .explore:hover, .photo-card .explore:hover { background: var(--violet-900); color: #fff; }

.style-card { background: var(--surface); border-radius: var(--radius-md); padding: 24px 18px; text-align: center; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s, border-color .3s; }
.style-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.style-card .emoji-badge { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: var(--grad-brand); color: #fff; }
.style-card h4 { font-size: 14.5px; margin-bottom: 4px; }
.style-card p { font-size: 12px; margin: 0 0 10px; }
.style-card a.explore { font-size: 12px; font-weight: 700; color: var(--violet-700); }

.feature-card { background: var(--surface); border-radius: var(--radius-md); padding: 32px 26px; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .num { font-family: var(--ff-head); font-weight: 800; font-size: 13px; color: var(--pink-500); margin-bottom: 14px; letter-spacing: .05em; }
.feature-card .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.feature-card h4 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; margin: 0; }

.finish-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); padding: 28px 24px; backdrop-filter: blur(6px); transition: transform .3s, background .3s; }
.finish-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.finish-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-cta); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; color: #fff; }
.finish-card h4 { font-size: 16px; }
.finish-card p { font-size: 13px; margin: 0; }

.studio-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.studio-tool-list li { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.studio-tool-list .check { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--grad-teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.studio-tool-list strong { display: block; font-size: 15.5px; color: var(--violet-950); margin-bottom: 2px; }
.studio-tool-list span { font-size: 13.5px; color: var(--ink-soft); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.step-card { text-align: center; position: relative; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: var(--surface); border: 2.5px solid var(--amber-500); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 800; font-size: 24px; color: var(--violet-700); margin: 0 auto 20px; box-shadow: var(--shadow-md); }
.step-card h4 { font-size: 18px; }
.step-card p { font-size: 14px; max-width: 280px; margin: 0 auto; }

/* ---------- Quote Form ---------- */
.quote-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 0; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.quote-side { background: var(--grad-brand-2); color: #fff; padding: 52px 42px; position: relative; overflow: hidden; }
.quote-side::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--pink-500); opacity: .25; filter: blur(50px); bottom: -100px; right: -80px; }
.quote-side h3 { color: #fff; font-size: 26px; position: relative; }
.quote-side p { color: rgba(255,255,255,0.8); position: relative; }
.quote-perks li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; position: relative; font-size: 14px; }
.quote-perks .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--amber-500); color: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.quote-form { padding: 52px 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--violet-950); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line); font-family: var(--ff-body); font-size: 14px; background: var(--bg-alt); color: var(--ink); transition: border-color .2s, background .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--violet-500); background: #fff; }
.chip-group { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { padding: 8px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--line); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--violet-500); }
.chip.active { background: var(--violet-700); border-color: var(--violet-700); color: #fff; }
.upload-box { border: 2px dashed var(--line); border-radius: 14px; padding: 22px; text-align: center; font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; background: var(--bg-alt); }
.upload-box strong { color: var(--violet-700); }
.form-status { font-size: 13px; margin-top: 10px; display: none; padding: 10px 14px; border-radius: 10px; }
.form-status.show { display: block; }
.form-status.success { background: rgba(95,133,112,0.15); color: #33513f; }
.form-status.error { background: rgba(177,96,47,0.12); color: var(--pink-500); }
.prefill-note { background: rgba(95,133,112,0.15); color: #33513f; font-size: 13px; font-weight: 600; padding: 12px 18px; border-radius: 12px; margin-bottom: 22px; display: none; align-items: center; gap: 8px; }
.prefill-note.show { display: flex; }
.mailto-fallback { text-align: center; margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); }
.mailto-fallback a { color: var(--violet-700); font-weight: 700; }
.mailto-fallback a:hover { color: var(--pink-500); }

/* ---------- Multi-step quote wizard ---------- */
.wizard-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 50px; max-width: 640px; margin-left: auto; margin-right: auto; }
.wizard-step { flex: 1; text-align: center; position: relative; }
.wizard-step::before { content: ""; position: absolute; top: 20px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.wizard-step:first-child::before { display: none; }
.wizard-step.done::before, .wizard-step.active::before { background: var(--amber-500); }
.wizard-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--ink-soft); margin: 0 auto 10px; position: relative; z-index: 1; transition: all .3s; }
.wizard-step.active .wizard-circle { border-color: var(--amber-500); background: var(--amber-500); color: #fff; }
.wizard-step.done .wizard-circle { border-color: var(--violet-700); background: var(--violet-700); color: #fff; }
.wizard-step span.label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.wizard-step.active span.label { color: var(--violet-950); }
.wizard-panel { display: none; animation: fadeUp .4s ease; }
.wizard-panel.active { display: block; }
.wizard-nav { display: flex; justify-content: space-between; margin-top: 30px; }
.wizard-summary { background: var(--bg-alt); border-radius: 16px; padding: 24px; margin-bottom: 24px; }
.wizard-summary h4 { font-size: 15px; margin-bottom: 14px; }
.wizard-summary-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.wizard-summary-row:last-child { border-bottom: none; }
.wizard-summary-row span:first-child { color: var(--ink-soft); }
.wizard-summary-row span:last-child { font-weight: 700; color: var(--violet-950); }
.success-panel { text-align: center; padding: 30px 0; }
.success-panel .check-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--grad-teal); display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; margin: 0 auto 22px; }

/* ---------- Testimonials ---------- */
.test-track-wrap { position: relative; overflow: hidden; }
.test-track { display: flex; gap: 24px; transition: transform .5s ease; }
.test-card { min-width: calc(33.333% - 16px); background: var(--surface); border-radius: var(--radius-md); padding: 30px; border: 1px solid var(--line); flex-shrink: 0; }
.test-stars { color: var(--amber-500); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.test-card p.quote { font-size: 14.5px; color: var(--ink); margin-bottom: 22px; font-style: italic; }
.test-person { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; background: var(--grad-brand); flex-shrink: 0; }
.test-person strong { display: block; font-size: 14px; color: var(--violet-950); }
.test-person span { font-size: 12px; color: var(--ink-soft); }
.slider-nav { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }
.slider-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface); font-size: 16px; color: var(--violet-700); transition: all .2s; }
.slider-nav button:hover { background: var(--violet-700); color: #fff; border-color: var(--violet-700); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; font-weight: 700; font-size: 15.5px; color: var(--violet-950); }
.faq-q .plus { font-size: 20px; color: var(--pink-500); transition: transform .3s; flex-shrink: 0; margin-left: 14px; }
.faq-item.open .faq-q .plus { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 22px; font-size: 14px; color: var(--ink-soft); }
.faq-cat-title { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--violet-700); margin: 40px 0 16px; }
.faq-cat-title:first-child { margin-top: 0; }

/* ---------- Blog ---------- */
.blog-card { background: var(--surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-cover { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 34px; color: #fff; }
.blog-card .body { padding: 22px 22px 26px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; }
.blog-card h4 { font-size: 16.5px; margin-bottom: 10px; }
.blog-card .read-more { font-size: 13px; font-weight: 700; color: var(--violet-700); }
.blog-post-body { max-width: 760px; margin: 0 auto; }
.blog-post-body h2 { font-size: 24px; margin-top: 40px; }
.blog-post-body p { font-size: 16px; line-height: 1.8; }
.blog-post-body ul { margin: 0 0 20px; padding-left: 22px; list-style: disc; }
.blog-post-body li { margin-bottom: 8px; font-size: 15.5px; color: var(--ink-soft); }
.blog-post-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; aspect-ratio: 21/9; }
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-author { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }

/* ---------- Newsletter/CTA band ---------- */
.cta-band { background: var(--grad-brand); border-radius: var(--radius-lg); padding: 56px 60px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.2), transparent 55%); }
.cta-band h3 { color: #fff; font-size: 28px; margin-bottom: 8px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; position: relative; }
.cta-band-actions { position: relative; }

.logos-strip { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding: 34px 0; opacity: .75; }
.logos-strip span { font-family: var(--ff-head); font-weight: 800; font-size: 20px; color: var(--ink-soft); letter-spacing: -.02em; }

/* ---------- About page ---------- */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-hero-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.stat-card { text-align: center; padding: 30px 20px; background: var(--surface); border-radius: var(--radius-md); border: 1px solid var(--line); }
.stat-card strong { display: block; font-size: 34px; font-family: var(--ff-head); font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card span { font-size: 13px; color: var(--ink-soft); }
.value-card { display: flex; gap: 18px; align-items: flex-start; }
.value-card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.value-card h4 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; margin: 0; }
.team-card { text-align: center; }
.team-avatar { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 16px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; font-weight: 800; font-family: var(--ff-head); }
.team-card h4 { font-size: 15.5px; margin-bottom: 2px; }
.team-card span { font-size: 12.5px; color: var(--pink-500); font-weight: 600; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.contact-info-card .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-card p { font-size: 13.5px; margin: 0; }
.map-box { border-radius: var(--radius-md); overflow: hidden; height: 220px; background: linear-gradient(135deg,#e5e2da,#f1efe8); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 14px; font-weight: 600; border: 1px solid var(--line); position: relative; flex-direction: column; }
.map-box::before { content: "📍"; font-size: 30px; display: block; margin-bottom: 8px; }
.contact-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-md); }

/* ---------- Product detail page ---------- */
.product-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; }
.product-gallery-main { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; aspect-ratio: 1/1; border: 1px solid var(--line); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 12px; }
.product-thumbs .thumb { width: 84px; height: 84px; border-radius: 12px; overflow: hidden; border: 2px solid var(--line); cursor: pointer; transition: border-color .2s; }
.product-thumbs .thumb.active { border-color: var(--violet-600); }
.product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-price { font-size: 28px; font-weight: 800; color: var(--violet-950); font-family: var(--ff-head); margin-bottom: 6px; }
.product-price span { font-size: 14px; color: var(--ink-soft); font-weight: 500; margin-left: 8px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.rating-row .stars { color: var(--amber-500); }
.rating-row span { font-size: 13px; color: var(--ink-soft); }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; width: fit-content; }
.qty-selector button { width: 40px; height: 40px; font-size: 18px; font-weight: 700; color: var(--violet-700); }
.qty-selector button:hover { background: var(--bg-alt); }
.qty-selector input { width: 56px; text-align: center; border: none; font-weight: 700; font-size: 15px; background: transparent; }
.product-tabs-nav { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.product-tabs-nav button { padding: 14px 22px; font-weight: 700; font-size: 14px; color: var(--ink-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.product-tabs-nav button.active { color: var(--violet-700); border-color: var(--violet-700); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 14px 10px; font-size: 14px; }
.spec-table td:first-child { font-weight: 700; color: var(--violet-950); width: 220px; }
.spec-table td:last-child { color: var(--ink-soft); }

/* ---------- Cart page ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); padding: 0 10px 14px; border-bottom: 2px solid var(--line); }
.cart-table td { padding: 20px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 16px; }
.cart-item-info img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; }
.cart-item-info strong { display: block; font-size: 14.5px; color: var(--violet-950); margin-bottom: 3px; }
.cart-item-info span { font-size: 12.5px; color: var(--ink-soft); }
.remove-btn { color: var(--pink-500); font-size: 13px; font-weight: 700; }
.cart-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; position: sticky; top: 100px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.cart-summary-row.total { font-size: 17px; font-weight: 800; color: var(--violet-950); border-bottom: none; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart .ico { font-size: 60px; margin-bottom: 20px; }

/* ---------- Design Studio configurator ---------- */
.configurator { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; background: var(--surface); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.configurator-preview { border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 460px; position: relative; overflow: hidden; padding: 26px; gap: 18px; }
.configurator-stage { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; position: relative; }
.preview-photo-wrap { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; box-shadow: 0 25px 55px rgba(0,0,0,0.22); background: #fff; }
.preview-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .25s ease; }
.preview-tint { position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.38; transition: background .3s ease, opacity .3s ease; pointer-events: none; }
.preview-finish-overlay { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s ease; }
.preview-finish-overlay.foil { opacity: 1; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 48%, rgba(255,255,255,0.75) 52%, transparent 70%); background-size: 250% 250%; animation: shimmer 2.6s ease-in-out infinite; }
.preview-finish-overlay.spotuv { opacity: 1; background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.5), transparent 60%); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -50% 0; } }
.preview-label { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); padding: 10px 22px; border-radius: var(--radius-pill); font-family: var(--ff-head); font-weight: 800; font-size: 14px; color: #fff; text-align: center; max-width: 85%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; box-shadow: 0 8px 20px rgba(0,0,0,0.25); transition: background .3s ease; }
.preview-style-tag { position: absolute; top: 14px; left: 14px; background: rgba(22,33,46,0.82); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill); }

.config-summary { width: 100%; background: var(--bg-alt); border-radius: 14px; padding: 16px 20px; }
.config-summary h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--violet-700); margin-bottom: 10px; font-weight: 800; }
.config-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.config-summary-item { text-align: center; }
.config-summary-item .k { font-size: 10.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; display: block; margin-bottom: 3px; }
.config-summary-item .v { font-size: 13px; font-weight: 700; color: var(--violet-950); }

.config-group { margin-bottom: 22px; }
.config-group label { display: block; font-size: 13px; font-weight: 700; color: var(--violet-950); margin-bottom: 10px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--line); transition: box-shadow .2s; }
.swatch.active { box-shadow: 0 0 0 2.5px var(--violet-700); }
.config-group input[type="text"] { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--line); font-size: 14px; background: var(--bg-alt); }
.config-group select { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--line); font-size: 14px; background: var(--bg-alt); }
.style-pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.style-pill { padding: 8px 15px; border-radius: var(--radius-pill); border: 1.5px solid var(--line); font-size: 12.5px; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.style-pill.active { background: var(--violet-700); border-color: var(--violet-700); color: #fff; }

/* ---------- Accessories ---------- */
.access-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ---------- Auth pages ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-md); }
.auth-card h2 { font-size: 26px; text-align: center; margin-bottom: 8px; }
.auth-card p.sub { text-align: center; margin-bottom: 32px; font-size: 14px; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-divider span { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.social-auth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; border-radius: 12px; border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 12px; transition: all .2s; }
.social-auth-btn:hover { border-color: var(--violet-500); background: var(--bg-alt); }
.auth-footer { text-align: center; margin-top: 26px; font-size: 14px; color: var(--ink-soft); }
.auth-footer a { color: var(--violet-700); font-weight: 700; }
.auth-footer a:hover { color: var(--pink-500); }
.form-check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px; }
.form-check input { width: 17px; height: 17px; accent-color: var(--violet-700); }
.forgot-link { font-size: 13px; font-weight: 700; color: var(--violet-700); float: right; }
.forgot-link:hover { color: var(--pink-500); }
.field-error { color: var(--pink-500); font-size: 12.5px; margin-top: -12px; margin-bottom: 14px; display: none; }
.field-error.show { display: block; }
.form-group input.error { border-color: var(--pink-500); }

/* ---------- Checkout / Payment ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: flex-start; }
.checkout-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; margin-bottom: 22px; }
.checkout-card h3 { font-size: 17px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.checkout-card h3 .step-badge { width: 26px; height: 26px; border-radius: 50%; background: var(--violet-900); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.payment-method { border: 1.5px solid var(--line); border-radius: 14px; padding: 16px 10px; text-align: center; cursor: pointer; transition: all .2s; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.payment-method .ico { font-size: 24px; display: block; margin-bottom: 8px; }
.payment-method:hover { border-color: var(--violet-500); }
.payment-method.active { border-color: var(--violet-700); background: var(--bg-alt); color: var(--violet-950); box-shadow: 0 0 0 1.5px var(--violet-700); }
.payment-panel { display: none; }
.payment-panel.active { display: block; animation: fadeUp .3s ease; }
.card-input-wrap { position: relative; }
.card-input-wrap .card-icons { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--ink-soft); letter-spacing: 2px; }
.secure-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; }
.secure-note .lock { color: var(--teal-400); }
.order-summary-mini { position: sticky; top: 100px; }
.order-summary-mini .line-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.order-summary-mini .line-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.order-summary-mini .line-item strong { display: block; font-size: 13.5px; color: var(--violet-950); }
.order-summary-mini .line-item span { font-size: 12px; color: var(--ink-soft); }
.order-summary-mini .line-item .price { margin-left: auto; font-weight: 700; font-size: 13.5px; color: var(--violet-950); }
.promo-row { display: flex; gap: 10px; margin: 18px 0; }
.promo-row input { flex: 1; padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--line); font-size: 13px; background: var(--bg-alt); }
.order-success { text-align: center; padding: 50px 20px; }
.order-success .check-circle { width: 90px; height: 90px; border-radius: 50%; background: var(--grad-teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 26px; }
.order-success .order-num { display: inline-block; background: var(--bg-alt); padding: 8px 20px; border-radius: var(--radius-pill); font-weight: 700; color: var(--violet-950); margin: 16px 0 30px; font-family: var(--ff-head); }

/* ---------- Style detail page ---------- */
.style-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.style-hero-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 1/1; object-fit: cover; }
.style-nav-strip { display: flex; gap: 8px; flex-wrap: wrap; }
.style-nav-strip a { flex-shrink: 0; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1.5px solid var(--line); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.style-nav-strip a:hover, .style-nav-strip a.current { background: var(--violet-700); border-color: var(--violet-700); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--violet-950); color: rgba(255,255,255,0.75); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.65); margin: 18px 0 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; transition: background .2s; }
.footer-social a:hover { background: var(--pink-500); }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 20px; font-family: var(--ff-head); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-links a:hover { color: var(--amber-400); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 13.5px; align-items: flex-start; }
.footer-contact .ico { color: var(--amber-400); flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: #fff; }
.payment-icons { display: flex; gap: 8px; }
.payment-icons span { background: rgba(255,255,255,0.08); padding: 5px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }

.back-to-top { position: fixed; bottom: 28px; right: 28px; z-index: 400; width: 50px; height: 50px; border-radius: 50%; background: var(--grad-cta); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .3s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.toast { position: fixed; top: 100px; right: 28px; z-index: 900; background: var(--violet-950); color: #fff; padding: 16px 22px; border-radius: 14px; box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; transform: translateX(140%); transition: transform .4s ease; }
.toast.show { transform: translateX(0); }
.toast .ico { color: var(--teal-400); font-size: 18px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.mobile-drawer { position: fixed; inset: 0; z-index: 900; background: var(--violet-950); transform: translateX(100%); transition: transform .35s ease; padding: 26px 24px; overflow-y: auto; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-drawer-close { color: #fff; font-size: 24px; width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.mobile-drawer a { display: block; padding: 12px 6px; color: #fff; font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-drawer .drawer-group-title { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--amber-400); margin: 18px 0 4px; font-weight: 800; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1220px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .studio-wrap { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .test-card { min-width: calc(50% - 12px); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .configurator { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .style-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .grid-4, .grid-3, .grid-5, .grid-2, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .topbar-left span:not(:first-child) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .test-card { min-width: 100%; }
  .quote-side, .quote-form { padding: 36px 24px; }
  .wizard-step span.label { display: none; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { padding: 16px 0; }
  .toast { left: 16px; right: 16px; }
  .config-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .payment-method { padding: 12px 6px; font-size: 11px; }
  .auth-card { padding: 32px 24px; }
}
@media (max-width: 860px) {
  .topbar-right .divider, .topbar-right a[href="cart.html"], .topbar-right a[href="faq.html"] { display: none; }
  .topbar-social { display: none; }
  .header-actions .btn-primary { display: none; }
  .header .container { gap: 10px; }
  .brand-name { font-size: 19px; }
  .account-name { display: none; }
}
@media (max-width: 620px) {
  .topbar-left span:not(:first-child) { display: none; }
}
@media (max-width: 460px) {
  .icon-btn { width: 38px; height: 38px; }
}
