@font-face {
  font-family: 'ManropeLocal';
  src: url('/fonts/manrope/manrope-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeLocal';
  src: url('/fonts/manrope/manrope-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeLocal';
  src: url('/fonts/manrope/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeLocal';
  src: url('/fonts/manrope/manrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeLocal';
  src: url('/fonts/manrope/manrope-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SoraLocal';
  src: url('/fonts/sora/sora-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SoraLocal';
  src: url('/fonts/sora/sora-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SoraLocal';
  src: url('/fonts/sora/sora-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SoraLocal';
  src: url('/fonts/sora/sora-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --surface-muted: #ece3d6;
  --text: #1f1a17;
  --text-soft: #665c53;
  --text-faint: #8f857b;
  --line: #dbcdbb;
  --line-strong: #c7b39b;
  --accent: #c95b1e;
  --accent-strong: #9d4310;
  --accent-soft: #f5dfd0;
  --dark: #161310;
  --dark-soft: #2b221c;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(22, 19, 16, 0.08);
  --shadow-soft: 0 10px 30px rgba(22, 19, 16, 0.06);
  --font-body: 'ManropeLocal', 'Manrope', system-ui, sans-serif;
  --font-heading: 'SoraLocal', 'Sora', 'ManropeLocal', 'Manrope', system-ui, sans-serif;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #f8f3eb 0%, #f3ede4 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section {
  padding: 88px 0;
}


.section-dark {
  background:
    radial-gradient(circle at top left, rgba(201, 91, 30, 0.22), transparent 32%),
    linear-gradient(180deg, #1a1512 0%, #110e0c 100%);
  color: #fff7f0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
}

p {
  color: var(--text-soft);
}



/*HEADER */

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 60px; /* ← match container padding */
  font-size: 13px;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
  


.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}

/* ─── TOPBAR ───────────────────────────────────── */
.topbar {
  background: #3a2a97;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a:hover {
  color: #ffd400;
  letter-spacing: 0.02em;
}

/* ─── NAV ──────────────────────────────────────── */
.nav {
  background: #7864F0;
  backdrop-filter: none;
  border-bottom: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

/* ─── LOGO ─────────────────────────────────────── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-logo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* fallback if image doesn't load — white text */
.nav-logo-mark {
  display: none;
}

/* ─── NAV LINKS ────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.dropdown {
  position: relative; /* ← this is the fix */
}

.nav-link,
.dropdown > a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-link::after,
.dropdown > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd400;
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.dropdown:hover > a::after {
  width: 100%;
}

.nav-link:hover,
.dropdown:hover > a {
  color: #fff;
}



.nav-link-muted {
  color: #ffd400;
}

.nav-link-muted:hover {
  color: #ffe84d;
}

/* ─── DROPDOWN ─────────────────────────────────── */
.dropdown-menu {
  position: absolute;
  padding-top: 14px; 
  top: 100%;
  left: 0;
  display: grid;
  gap: 6px;
  min-width: 280px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #4a38c2;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200; /* ← above everything */
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px; /* covers the gap */
}


.dropdown-menu a {
  color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, padding-left 0.18s ease;
  padding-left: 12px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #4a38c2;
  padding-left: 18px; /* ← slides right on hover */
}


.site-header {
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* ─── CART ─────────────────────────────────────── */
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cart:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* ─── HAMBURGER ────────────────────────────────── */
.hamburger {
  display: none;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

/* ─── MOBILE MENU ──────────────────────────────── */
@media (max-width: 820px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    
  }
}


.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.page-home .header-waves { 
  width: 100%;
  line-height: 0;
  overflow: hidden;
   background: #5f4bd8;

}



.header-waves svg {
  width: 100%;
  height: 220px;
  display: block;
}

.header-waves path {
  fill: #7864F0; /* ← dark purple to match your footer */
}
/* ── HOME PAGE ────────────────────────────────── */

/* HERO */
.hero-section {
  background: #5f4bd8;
  padding: 60px 0 80px;
  color: #fff;
  overflow: hidden;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-yellow {
  display: inline-block;
  padding: 14px 28px;
  background: #ffd400;
  color: black;
  font-weight: bold;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-yellow:hover { background: #ffe84d; transform: translateY(-1px); }

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.25));
  animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.home-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.home-eyebrow-light {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 10px;
}

.home-gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.home-gallery-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.home-gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.home-gallery-btn:hover {
  background: rgba(255,255,255,0.25);
}

.home-gallery-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* SHOP */
.home-shop {
  padding: 80px 0 100px;
  background: #fff;
}

.home-shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 20px;
  flex-wrap: wrap;
}

.home-shop-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.home-shop-header p {
  font-size: 15px;
  color: #6b6490;
}

.home-shop-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #5f4bd8;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.home-shop-btn:hover { background: #3a2a97; transform: translateY(-1px); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-shell { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

@media (max-width: 640px) {
  .home-shop-header { flex-direction: column; align-items: flex-start; }
}



/* ── HOME PAGE ────────────────────────────────── */



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e17e42 100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
}

.btn-outline {
  border-color: rgba(201, 91, 30, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 11px 16px;
  font-size: 13px;
}

.hero-copy,
.hero-visual,
.service-hero,
.info-panel,
.detail-card,
.price-card > div {
  border-radius: var(--radius-lg);
}

.hero-copy {
  max-width: 500px;
}



/* Portfolio with 6 images aut aplimesan baneris gaismaskaste */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.portfolio-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}


/* Portfolio with 6 images aut aplimesan baneris gaismaskaste */



















.stat-card {
  padding: 18px;
  border: 1px solid rgba(201, 91, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
  font-family: var(--font-heading);
}

.stat-card span {
  color: var(--text-soft);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.section-heading {
  max-width: auto px;
  margin: 0 auto 40px;
  text-align: left;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  color: #3A2A97;
}

.section-heading p {
  font-size: 17px;
}














/* shop slider on main */ 

/* ─── SECTION ─────────────────────────────────────────── */
.section-muted {
  background: #ffffff;
}

/* ─── HEADING ─────────────────────────────────────────── */
.section-heading h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #1a1464;
  line-height: 1.15;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #3A2A97;
}

/* ─── SLIDER WRAPPER ───────────────────────────────────── */
.products-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  overflow: visible; /* arrows can show */
}


.products-slider-track {
  overflow: hidden; /* only the track clips */
}

.slider-btn.left  { left: -44px; }
.slider-btn.right { right: -44px; }

/* ─── TRACK ────────────────────────────────────────────── */
.products-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.product-card {
  flex-shrink: 0;
  min-width: 0;
  text-align: center;
  /* width is set by JS */
}
.product-card:hover {
  transform: none;
}

/* IMAGE */
.product-img {
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 28px;
}

.product-img img {
  max-height: 270px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-img-placeholder {
  font-size: 36px;
  font-weight: 800;
  color: #ccc;
  letter-spacing: 3px;
}

/* CATEGORY */
.product-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

/* NAME */
.product-name {
  font-size: 21px;
  font-weight: 700;
  color: #1a1464;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* PRICE */
.product-price {
  font-size: 21px;
  font-weight: 700;
  color: #1a1464;
}

.product-price-vat {
  font-size: 13px;
  font-weight: 500;
  color: #1a1464;
  margin-left: 4px;
}

/* ─── ARROWS ───────────────────────────────────────────── */
.slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: opacity 0.2s;
}

.slider-btn:hover  { opacity: 0.45; }
.slider-btn:disabled { opacity: 0.18; pointer-events: none; }


.slider-btn img {
  width: 22px;
  height: 22px;
  filter: none; /* remove invert if you had it */
}

/* If you use inline SVG instead of img: */
.slider-btn svg {
  width: 22px;
  height: 22px;
  stroke: #1a1464;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── CTA ──────────────────────────────────────────────── */
.shop-cta {
  margin-top: 52px;
}

.shop-cta p {
  font-size: 15px;
  color: #1a1464;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}

.btn-primary {
  background: #1a1464;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #2d22a0;
  transform: translateY(-1px);
}

/* shop slider on main */ 













/* Portfolio */
.portfolio-showcase { 
  background:#3A2A97; 
  color: #3A2A97; 
  padding-bottom: 0; /* ← removes the gap */
} 

/* SLIDER */ .portfolio-slider { position: relative; margin-top: 40px; overflow: hidden; } /* TRACK */ .portfolio-track { display: flex; gap: 11px; transition: transform 0.4s ease; } /* ITEM = FULL WIDTH */ /* IMAGE */ .portfolio-item img { width: 100%; height: 560px; /* 🔥 control height */ object-fit: cover; /* nice look */ display: block; } /* ARROWS */ .portfolio-arrow { position: absolute; top: 50%; transform: translateY(-50%); border: none; width: 45px; height: 45px; cursor: pointer; z-index: 10; background: transparent; } .portfolio-arrow.left { left: 15px; } .portfolio-arrow.right { right: 15px; } .portfolio-arrow img { width: 30px; } .portfolio-item.horizontal { min-width: 70%; } .portfolio-item.vertical { min-width: 40%; } /* Portfolio text block */ .portfolio-showcase-copy { max-width: 600px; margin-bottom: 30px; } /* TITLE */ .portfolio-showcase-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 12px; color: var(--text); } /* DESCRIPTION */ .portfolio-showcase-copy p { font-size: 16px; line-height: 1.6; color: var(--text-soft); max-width: 480px; } /* Portfolio text block */ .portfolio-showcase-copy { max-width: 600px; margin-bottom: 30px; } /* TITLE */ .portfolio-showcase-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 12px; color: #FFDF00; } /* DESCRIPTION */ .portfolio-showcase-copy p { font-size: 16px; line-height: 1.6; color: white; max-width: 480px; } /* Portfolio */


.portfolio-waves {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: 40px;
  background: white;
}

.portfolio-waves svg {
  width: 100%;
  height: 200px;
  display: block;
}

.portfolio-waves path {
  fill: #3A2A97; /* ← dark purple to match your footer */
}



/* Portfolio */





/* KONTAKTI */

/* ── CONTACT HERO ─────────────────────────────── */

.page-kontakti .header-waves { background: #3a2a97; }

.contact-hero-section {
  background: #3a2a97;
  padding: 20px 0 80px;
  color: #fff;
}

.contact-hero-section .breadcrumb {
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.contact-hero-section .breadcrumb a:hover {
  color: #ffd400;
}

.contact-hero-section .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.contact-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.contact-hero-copy > p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 32px;
}

.contact-hero-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  width: fit-content;
}

.contact-hero-pill:hover {
  background: rgba(255,255,255,0.18);
}

.contact-hero-pill svg {
  width: 16px;
  height: 16px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* INFO CARD */
.contact-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 14px;
}

.contact-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.contact-info-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.contact-info-value {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.contact-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 4px 0;
}

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-alert-success {
  background: #d1fae5;
  border: 1px solid rgba(6,95,70,0.15);
  color: #065f46;
}

.contact-alert-error {
  background: #ffe3e3;
  border: 1px solid rgba(226,75,74,0.2);
  color: #912b2b;
}


.contact-form-block {
  background: #f9f8fe;
  border: 1px solid rgba(95, 75, 216, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.contact-form-block .contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.contact-form-block h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.contact-form-block > p {
  color: #6b6490;
  font-size: 14px;
  margin-bottom: 28px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FORM INPUTS ──────────────────────────────── */
.contact-form-block .form-input {
  border-color: rgba(95, 75, 216, 0.15);
  background: #fff;
}

.contact-form-block .form-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95, 75, 216, 0.1);
}

.contact-form-block .btn-primary {
  background: #5f4bd8;
  margin-top: 8px;
}

.contact-form-block .btn-primary:hover {
  background: #3a2a97;
}

.contact-form-block .upload-dropzone {
  border-color: rgba(95, 75, 216, 0.25);
  background: #fff;
}

.contact-info-link:hover {
  color: #ffd400;
}

.contact-info-link svg {
  width: 15px;
  height: 15px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── MAIN SECTION ─────────────────────────────── */
.contact-main-section {
  padding: 80px 0;
  background: #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(95,75,216,0.12);
}

.contact-map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #f4f2fd;
  border-radius: 14px;
}

.contact-map-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1464;
}

.contact-map-address svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-block {
    padding: 28px;
  }
}



/* KONTAKTI */















/* Shop page */

/* ── SHOP HERO ────────────────────────────────── */
.shop-hero {
  background: #3a2a97;
  padding: 0px 0 60px;
  color: #fff;
}

.page-shop .header-waves {
  background: #3a2a97; /* match exactly so no gap */
}

.shop-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.shop-hero .breadcrumb a:hover { color: #ffd400; }
.shop-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.shop-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.shop-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 12px;
}

.shop-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.shop-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 500px;
}

.shop-hero-stat {
  text-align: right;
  flex-shrink: 0;
}

.shop-stat-number {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: #ffd400;
  font-family: var(--font-heading);
  line-height: 1;
}

.shop-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── CATEGORIES ───────────────────────────────── */
.shop-categories-section {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid rgba(95,75,216,0.08);
  position: sticky;
  top: 72px;
  z-index: 50;
}

.shop-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(95,75,216,0.15);
  background: transparent;
  color: #6b6490;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}

.shop-cat-pill:hover {
  border-color: #5f4bd8;
  color: #5f4bd8;
  background: #f4f2fd;
}

.shop-cat-pill.active {
  background: #5f4bd8;
  border-color: #5f4bd8;
  color: #fff;
}

.shop-cat-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  padding: 1px 7px;
  border-radius: 999px;
}

.shop-cat-pill:not(.active) .shop-cat-count {
  background: rgba(95,75,216,0.1);
  color: #5f4bd8;
}

/* ── MAIN ─────────────────────────────────────── */
.shop-main {
  padding: 40px 0 100px;
  background: #fff;
}

/* ── TOOLBAR ──────────────────────────────────── */
.shop-toolbar-new {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shop-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.shop-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #a099cc;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.shop-search-input {
  width: 100%;
  padding: 11px 14px 11px 42px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  font-size: 14px;
  color: #1a1464;
  background: #f9f8fe;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}

.shop-search-input:focus {
  outline: none;
  border-color: #5f4bd8;
  background: #fff;
}

.shop-toolbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.shop-sort-select {
  padding: 11px 14px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  font-size: 13px;
  color: #1a1464;
  background: #f9f8fe;
  cursor: pointer;
  font-family: var(--font-body);
}

.shop-search-btn {
  padding: 11px 24px;
  background: #5f4bd8;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.shop-search-btn:hover { background: #3a2a97; }

.shop-clear-btn {
  padding: 11px 18px;
  border: 1.5px solid rgba(95,75,216,0.2);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #6b6490;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s;
}

.shop-clear-btn:hover {
  border-color: #5f4bd8;
  color: #5f4bd8;
}

/* ── META ─────────────────────────────────────── */
.shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #6b6490;
  margin-bottom: 28px;
}

.shop-meta strong { color: #1a1464; }

.shop-meta-count {
  font-weight: 700;
  color: #5f4bd8;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.shop-page-link {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(95, 75, 216, 0.16);
  background: #fff;
  color: #1a1464;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.shop-page-link:hover {
  border-color: #5f4bd8;
  color: #5f4bd8;
}

.shop-page-link.active {
  background: linear-gradient(135deg, #6d5dfc 0%, #8d7fff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 30px rgba(95, 75, 216, 0.22);
}

.shop-page-link-nav {
  padding: 0 18px;
}

/* ── EMPTY ────────────────────────────────────── */
.shop-empty {
  text-align: center;
  padding: 80px 0;
}

.shop-empty-icon {
  width: 72px;
  height: 72px;
  background: #f4f2fd;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.shop-empty-icon svg {
  width: 28px;
  height: 28px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.shop-empty h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.shop-empty p {
  color: #6b6490;
  margin-bottom: 24px;
}

/* ── PRODUCT GRID ─────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── PRODUCT CARD ─────────────────────────────── */
.shop-product-card {
  background: #fff;
  border: 1.5px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(95,75,216,0.12);
  border-color: rgba(95,75,216,0.2);
}

.shop-product-link {
  display: block;
  text-decoration: none;
}

.shop-product-img {
  height: 260px;
  background: #ffffff;
  border-bottom: 1px solid rgba(95, 75, 216, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.shop-product-img img {
  max-height: 220px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.shop-product-card:hover .shop-product-img img {
  transform: scale(1.06);
}

.shop-product-placeholder {
  font-size: 28px;
  font-weight: 800;
  color: #c5bbf2;
  letter-spacing: 2px;
}

.shop-product-info {
  padding: 18px 20px 16px;
}

.shop-product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a099cc;
  display: block;
  margin-bottom: 6px;
}

.shop-product-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1464;
  line-height: 1.3;
  margin-bottom: 12px;
}

.shop-product-footer {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.shop-product-price {
  font-size: 20px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
}

.shop-product-vat {
  font-size: 11px;
  font-weight: 500;
  color: #a099cc;
}

/* ADD TO CART */
.shop-product-actions {
  padding: 0 20px 20px;
}

.shop-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  background: transparent;
  border: 1.5px solid rgba(95,75,216,0.2);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #5f4bd8;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.shop-add-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-add-btn:hover {
  background: #5f4bd8;
  border-color: #5f4bd8;
  color: #fff;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1000px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-hero-stat { display: none; }
  .shop-toolbar-new { flex-direction: column; align-items: stretch; }
  .shop-toolbar-right { flex-wrap: wrap; }
}


/* Shop page */















/* Cart page */



/* ── CART PAGE ────────────────────────────────── */
.cart-section {
  background: #ffffff;
  padding: 60px 0 100px;
  min-height: 70vh;
}

.cart-section ~ * .header-waves svg,
body:has(.cart-section) .header-waves svg {
  height: 140px;
}

body:has(.cart-section) .header-waves {
  background: #ffffff;
}

.cart-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.cart-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
}

.cart-count-badge {
  background: #5f4bd8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── EMPTY STATE ──────────────────────────────── */
.cart-empty {
  text-align: center;
  padding: 100px 0;
  max-width: 400px;
  margin: 0 auto;
}

.cart-empty-icon {
  width: 80px;
  height: 80px;
  background: #f4f2fd;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cart-empty-icon svg {
  width: 36px;
  height: 36px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 10px;
}

.cart-empty p {
  color: #6b6490;
  margin-bottom: 28px;
}

/* ── LAYOUT ───────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* ── ITEMS ────────────────────────────────────── */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(95, 75, 216, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 80px 120px 80px 40px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(95, 75, 216, 0.07);
  transition: background 0.2s;
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-item:hover {
  background: #faf9ff;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: #f4f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cart-item-placeholder {
  font-size: 18px;
  font-weight: 800;
  color: #c5bbf2;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 6px;
}

.cart-item-details {
  min-width: 0;
}

.cart-item-options {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-item-option {
  font-size: 12px;
  color: #6b6490;
}

.cart-item-file {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #5f4bd8;
  font-weight: 600;
  margin-top: 4px;
}

.cart-item-file svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cart-item-price-mobile { display: none; }

.cart-item-price,
.cart-item-total {
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-align: center;
}

.cart-item-total {
  color: #5f4bd8;
}

/* QTY */
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(95, 75, 216, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #5f4bd8;
  font-weight: 700;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: #f4f2fd;
}

.cart-item-qty .qty-input {
  width: 44px;
  height: 36px;
  border: none;
  border-left: 1.5px solid rgba(95, 75, 216, 0.15);
  border-right: 1.5px solid rgba(95, 75, 216, 0.15);
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1a1464;
  background: transparent;
  padding: 0;
}

/* REMOVE */
.cart-remove-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid rgba(95, 75, 216, 0.15);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #999;
}

.cart-remove-btn:hover {
  background: #fff0f0;
  border-color: #e24b4a;
  color: #e24b4a;
}

.cart-remove-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-continue {
  padding: 16px 24px;
  border-top: 1px solid rgba(95, 75, 216, 0.07);
}

.cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6b6490;
  transition: color 0.2s;
}

.cart-back-link:hover { color: #5f4bd8; }

.cart-back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SUMMARY ──────────────────────────────────── */
.cart-summary-card {
  background: #fff;
  border: 1px solid rgba(95, 75, 216, 0.1);
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.cart-summary-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 24px;
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.cart-summary-row span:first-child { color: #6b6490; }
.cart-summary-row span:last-child { font-weight: 600; color: #1a1464; }

.cart-summary-shipping {
  font-size: 12px;
  color: #a099cc;
  font-weight: 500 !important;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1.5px solid rgba(95, 75, 216, 0.12);
  border-bottom: 1.5px solid rgba(95, 75, 216, 0.12);
  margin-bottom: 24px;
}

.cart-summary-total span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
}

.cart-total-price {
  font-size: 26px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
}

.cart-checkout-btn {
  background: #5f4bd8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cart-checkout-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-checkout-btn:hover {
  background: #3a2a97;
  transform: translateY(-1px);
}

.cart-summary-note {
  font-size: 11px;
  color: #a099cc;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.cart-summary-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(95, 75, 216, 0.07);
}

.cart-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #a099cc;
}

.cart-badge svg {
  width: 13px;
  height: 13px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1000px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .cart-item {
    grid-template-columns: 60px 1fr 40px;
    grid-template-rows: auto auto auto;
    gap: 10px;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .cart-item-name,
  .cart-item-option,
  .cart-item-file,
  .cart-item-price-mobile {
    overflow-wrap: anywhere;
  }

  .cart-item-price { display: none; }
  .cart-item-price-mobile {
    display: block;
    font-size: 13px;
    color: #6b6490;
    font-weight: 600;
    margin-top: 4px;
  }
  .cart-item-qty {
    grid-column: 2;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
  }
  .cart-item-total { grid-column: 2; text-align: left; }
  .cart-item-remove { grid-row: 1; grid-column: 3; }
}


/* Cart page */










/*FOOTER*/

.footer {
  padding: 0 0 0;
  background: #5f4bd8;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-waves {
  width: 100%;
  line-height: 0;
  margin-bottom: 60px; /* space before grid */
  overflow: hidden; /* prevent any side gaps */
}

.footer-waves svg {
  width: 100%;
  height: 200px;
  display: block;
}

.footer::before {
  display: none;
}

.footer::after {
  display: none;
}

.footer-waves path {
  fill: #3a2a97; /* ← dark purple to match your footer */
}

/* ─── GRID ─────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

/* ─── BRAND COLUMN ─────────────────────────────── */
.footer-brand {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.footer-brand .eyebrow {
  color: #ffd400;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer-brand .eyebrow::before {
  display: none;
}

.footer-brand h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── LINK COLUMNS ─────────────────────────────── */
.footer-grid > div > h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 13px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffd400;
}

/* ─── BOTTOM BAR ───────────────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-top: none;
  margin-top: 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}



/*FOOTER*/



/*Single product*/

/* ── PRODUCT PAGE ─────────────────────────────── */
.product-hero-section {
  background: white;
  padding: 10px 0 20px;
}

.page-product .header-waves {
  background: white;
}

.product-hero-section .breadcrumb {
   color: #a099cc;
}

.product-hero-section .breadcrumb a {
  color: #6b6490;
}

.product-hero-section .breadcrumb a:hover { color: #5f4bd8; }
.product-hero-section .breadcrumb-sep { color: #d0ccee; }
.product-hero-section .breadcrumb span:last-child { color: #1a1464; }

/* ── MAIN LAYOUT ──────────────────────────────── */
.product-main {
  padding: 60px 0 80px;
  background: #fff;
}

.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── IMAGE BLOCK ──────────────────────────────── */
.product-image-wrap {
  background: #f4f2fd;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}

.product-image-wrap:hover img {
  transform: scale(1.04);
}

.product-image-placeholder {
  font-size: 48px;
  font-weight: 800;
  color: #c5bbf2;
  letter-spacing: 3px;
}

.product-image-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.product-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6b6490;
  background: #f4f2fd;
  border: 1px solid rgba(95,75,216,0.12);
  padding: 6px 14px;
  border-radius: 999px;
}

.product-badge-pill svg {
  width: 13px;
  height: 13px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── INFO BLOCK ───────────────────────────────── */
.product-cat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a099cc;
  margin-bottom: 10px;
}

.product-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-price-main {
  font-size: 42px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
  line-height: 1;
}

.product-price-tax {
  font-size: 13px;
  color: #a099cc;
  font-weight: 500;
}

.product-price-total {
  font-size: 13px;
  color: #6b6490;
  font-weight: 600;
  background: #f4f2fd;
  padding: 4px 10px;
  border-radius: 8px;
}

.product-stock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #255f31;
  background: #dff5e4;
  padding: 6px 14px;
  border-radius: 999px;
}

.product-in-stock svg {
  width: 13px;
  height: 13px;
  stroke: #255f31;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-stock-count {
  font-size: 13px;
  color: #a099cc;
  font-weight: 500;
}

.product-divider {
  height: 1px;
  background: rgba(95,75,216,0.08);
  margin: 24px 0;
}

/* ── FORM ─────────────────────────────────────── */
.product-form {
  display: grid;
  gap: 0;
}

.product-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── BUY ROW ──────────────────────────────────── */
.product-buy-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.product-qty-wrap {
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
}

.product-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(95,75,216,0.2);
  border-radius: 12px;
  overflow: hidden;
}

.product-qty-control .qty-btn {
  width: 38px;
  height: 46px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #5f4bd8;
  cursor: pointer;
  transition: background 0.15s;
}

.product-qty-control .qty-btn:hover { background: #f4f2fd; }

.product-qty-control .qty-input {
  width: 52px;
  height: 46px;
  border: none;
  border-left: 1.5px solid rgba(95,75,216,0.15);
  border-right: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  background: transparent;
  padding: 0;
}

.product-add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #5f4bd8;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}

.product-add-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-add-btn:hover {
  background: #3a2a97;
  transform: translateY(-1px);
}

/* OUT OF STOCK */
.product-out-of-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #912b2b;
  background: #ffe3e3;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.product-out-of-stock svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* SUPPORT */
.product-support {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 16px;
}

.product-support-icon {
  width: 40px;
  height: 40px;
  background: #5f4bd8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-support-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-support strong {
  display: block;
  font-size: 14px;
  color: #1a1464;
  margin-bottom: 2px;
}

.product-support p {
  font-size: 12px;
  color: #6b6490;
  margin: 0;
}

.product-support-link {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: #5f4bd8;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.product-support-link:hover { color: #3a2a97; }

/* ── DESCRIPTION ──────────────────────────────── */
.product-desc-section {
  padding: 80px 0;
  background: #f9f8fe;
}

.product-desc-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.product-desc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 12px;
}

.product-desc-sidebar h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.product-desc-sidebar p {
  font-size: 14px;
  color: #6b6490;
  line-height: 1.6;
}

.product-desc-content {
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  padding: 36px;
  color: #4a4570;
  line-height: 1.7;
  font-size: 15px;
}

.product-desc-content > * + * { margin-top: 14px; }
.product-desc-content strong { color: #1a1464; }

.product-imprint-preview {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(95,75,216,0.08);
}

.product-imprint-preview h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 14px;
}

.product-imprint-preview img {
  border-radius: 12px;
  border: 1px solid rgba(95,75,216,0.1);
  max-width: 100%;
}

/* ── RELATED ──────────────────────────────────── */
.product-related-section {
  padding: 80px 0 100px;
  background: #fff;
}

.product-related-header {
  margin-bottom: 36px;
}

.product-related-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-top: 8px;
}


.product-form .form-input {
  border: 1.5px solid rgba(95, 75, 216, 0.15);
  border-radius: 12px;
  background: #f9f8fe;
  color: #1a1464;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s;
}

.product-form .form-input:focus {
  outline: none;
  border-color: #5f4bd8;
  background: #fff;
}

.product-form select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f4bd8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.product-form textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

.product-form .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
  display: block;
}

.product-form .form-group {
  margin-bottom: 18px;
}

.product-form .upload-dropzone {
  border: 2px dashed rgba(95, 75, 216, 0.2);
  border-radius: 14px;
  background: #f9f8fe;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.product-form .upload-dropzone:hover {
  border-color: #5f4bd8;
  background: #f4f2fd;
}




/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .product-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-desc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-form-row {
    grid-template-columns: 1fr;
  }
  .product-buy-row {
    flex-direction: column;
    align-items: stretch;
  }
  .product-qty-wrap {
    width: auto;
    align-self: flex-start;
  }
  .product-qty-control {
    width: auto;
  }
  .product-add-btn {
    width: 100%;
  }
}



/*Single product*/



/*404*/


.page-404-layout .header-waves {
  background: white;
}

/* ── 404 PAGE ─────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* ── BACKGROUND BLOBS ─────────────────────────── */
.page-404-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ink-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
}

.ink-blob-2 {
  width: 350px;
  height: 350px;
  background: #3a2a97;
  bottom: -10px;
  left: -10px;
  animation: blob-float 10s ease-in-out infinite reverse;
  opacity: 0.08;
}


.ink-blob-2 {
  width: 350px;
  height: 350px;
  background: #3a2a97;
  bottom: -80px;
  left: -60px;
  animation: blob-float 10s ease-in-out infinite reverse;
}

.ink-blob-3 {
  width: 250px;
  height: 250px;
  background: #3a2a97;
  bottom: 20%;
  right: 20%;
  animation: blob-float 12s ease-in-out infinite;
  opacity: 0.08;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

/* ── LAYOUT ───────────────────────────────────── */
.page-404-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── STAMP ────────────────────────────────────── */
.stamp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.stamp {
  width: 280px;
  height: 280px;
  background: #fff;
  border: 6px solid #3a2a97;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: stamp-drop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             stamp-rock 4s ease-in-out 0.6s infinite;
  transform-origin: bottom center;
  box-shadow:
    inset 0 0 0 4px #fff,
    inset 0 0 0 8px #3a2a97,
    inset 0 0 0 12px #fff;
}

.stamp::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 4px dashed rgba(58, 42, 151, 0.2);
  border-radius: 20px;
  animation: spin-slow 20s linear infinite;
}

@keyframes stamp-drop {
  0% { transform: translateY(-120px) rotate(-8deg) scale(1.2); opacity: 0; }
  60% { transform: translateY(8px) rotate(2deg) scale(0.98); opacity: 1; }
  100% { transform: translateY(0) rotate(-3deg) scale(1); opacity: 1; }
}

@keyframes stamp-rock {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stamp-inner {
  text-align: center;
  transform: rotate(-3deg);
}

.stamp-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  color: #3a2a97;
  line-height: 1;
  letter-spacing: -4px;
  opacity: 0.85;
  text-shadow: 3px 3px 0 rgba(58, 42, 151, 0.15);
}

.stamp-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #3a2a97;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

.stamp-shadow {
  width: 240px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(58, 42, 151, 0.2) 0%, transparent 70%);
  margin-top: -8px;
  animation: shadow-pulse 4s ease-in-out 0.6s infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(0.9); opacity: 0.6; }
  50% { transform: scaleX(1.1); opacity: 0.3; }
}

/* ── COPY ─────────────────────────────────────── */
.page-404-copy {
  animation: fade-up 0.5s ease 0.4s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-404-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-404-copy p {
  font-size: 16px;
  color: #6b6490;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.page-404-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-404-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: #5f4bd8;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}

.btn-404-primary:hover {
  background: #3a2a97;
  transform: translateY(-2px);
}

.btn-404-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1.5px solid rgba(95, 75, 216, 0.2);
  color: #5f4bd8;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-404-outline:hover {
  background: #f4f2fd;
  border-color: #5f4bd8;
}

.page-404-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.page-404-links span {
  color: #a099cc;
  font-weight: 500;
}

.page-404-links a {
  color: #5f4bd8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.page-404-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #5f4bd8;
  transition: width 0.2s;
}

.page-404-links a:hover::after { width: 100%; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 800px) {
  .page-404-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .stamp-wrap { margin: 0 auto; }
  .page-404-copy p { margin: 0 auto 36px; }
  .page-404-actions { justify-content: center; }
  .page-404-links { justify-content: center; }
}



/*404*/



/*checkout page*/

/* ── CHECKOUT HERO ────────────────────────────── */
.checkout-hero {
  background: #5f4bd8;
  padding: 40px 0 50px;
  color: #fff;
}

.page-checkout .header-waves {
  background: #5f4bd8;
}

.checkout-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.checkout-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.checkout-hero .breadcrumb a:hover { color: #ffd400; }
.checkout-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.checkout-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.checkout-hero-copy h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.checkout-hero-copy p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

/* STEPS */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.checkout-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.checkout-step-dot svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-step span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.checkout-step.done .checkout-step-dot {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.checkout-step.done span { color: rgba(255,255,255,0.7); }

.checkout-step.active .checkout-step-dot {
  background: #ffd400;
  border-color: #ffd400;
  color: #1a1464;
}

.checkout-step.active span { color: #fff; font-weight: 700; }

.checkout-step-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
  margin-bottom: 20px;
}

/* ── MAIN LAYOUT ──────────────────────────────── */
.checkout-main {
  padding: 60px 0 100px;
  background: #f9f8fe;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* ── FORM SECTIONS ────────────────────────────── */
.checkout-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #ffe3e3;
  border: 1px solid rgba(226,75,74,0.2);
  border-radius: 14px;
  color: #912b2b;
  font-size: 14px;
  font-weight: 600;
}

.checkout-error svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.checkout-form-section {
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  padding: 32px;
}

.checkout-form-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.checkout-form-section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #5f4bd8;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-form-section-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.02em;
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-fields .form-group {
  margin-bottom: 0;
}

/* INPUTS */
.co-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.co-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #f9f8fe;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.co-input:focus {
  outline: none;
  border-color: #5f4bd8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.co-input::placeholder { color: #c5bbf2; }

.co-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f4bd8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.co-locker-select {
  min-height: 52px;
  font-weight: 600;
}

.co-static-field {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #fcfbff 0%, #f4f1ff 100%);
  color: #1a1464;
  font-size: 14px;
  font-weight: 700;
}

.co-static-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(95,75,216,0.12);
  color: #5f4bd8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.co-field-hint {
  margin-top: 10px;
  color: #7c73ac;
  font-size: 12px;
  line-height: 1.55;
}

.co-textarea {
  min-height: 100px;
  resize: vertical;
}

/* PAYMENT */
.co-payment-option {
  display: block;
  cursor: pointer;
}

.co-payment-option input[type="radio"] {
  display: none;
}

.co-payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 14px;
  background: #f9f8fe;
  transition: all 0.2s;
}

.co-payment-option input:checked + .co-payment-card {
  border-color: #5f4bd8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.co-payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f4f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.co-payment-icon svg {
  width: 18px;
  height: 18px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.co-payment-card > div:nth-child(2) {
  flex: 1;
}

.co-payment-card strong {
  display: block;
  font-size: 14px;
  color: #1a1464;
  margin-bottom: 3px;
}

.co-payment-card span {
  font-size: 12px;
  color: #6b6490;
  line-height: 1.4;
}

.co-payment-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(95,75,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.co-payment-check svg {
  width: 12px;
  height: 12px;
  stroke: transparent;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.co-payment-option input:checked + .co-payment-card .co-payment-check {
  background: #5f4bd8;
  border-color: #5f4bd8;
}

.co-payment-option input:checked + .co-payment-card .co-payment-check svg {
  stroke: #fff;
}

/* SUBMIT */
.co-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #5f4bd8;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}

.co-submit-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.co-submit-btn:hover {
  background: #3a2a97;
  transform: translateY(-1px);
}

.co-submit-note {
  font-size: 12px;
  color: #a099cc;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── SUMMARY ──────────────────────────────────── */
.co-summary {
  position: sticky;
  top: 100px;
}

.co-summary-card {
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
}

.co-summary-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(95,75,216,0.08);
}

.co-item-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.co-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.co-item-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f4f2fd;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  mix-blend-mode: multiply;
}

.co-item-placeholder {
  font-size: 14px;
  font-weight: 800;
  color: #c5bbf2;
}

.co-item-info {
  flex: 1;
  min-width: 0;
}

.co-item-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.co-item-options {
  font-size: 11px;
  color: #a099cc;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.co-item-qty {
  font-size: 11px;
  color: #a099cc;
  margin-top: 2px;
}

.co-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #5f4bd8;
  flex-shrink: 0;
}

/* TOTALS */
.co-totals {
  border-top: 1px solid rgba(95,75,216,0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.co-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.co-total-row span:first-child { color: #6b6490; }
.co-total-row span:last-child { font-weight: 600; color: #1a1464; }

.co-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 2px solid rgba(95,75,216,0.12);
}

.co-total-final span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
}

.co-total-final span:last-child {
  font-size: 24px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
}

/* TRUST */
.co-trust-badges {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid rgba(95,75,216,0.08);
}

.co-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #a099cc;
}


.co-delivery-price {
  display: inline-block;
  background: #ffd400;
  color: #1a1464;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.co-trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* BACK LINK */
.co-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6b6490;
  text-decoration: none;
  transition: color 0.2s;
}

.co-back-link:hover { color: #5f4bd8; }

.co-back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.co-delivery-item-hidden {
  display: none !important;
}

.co-delivery-row-hidden {
  display: none !important;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .co-summary {
    position: static;
    order: -1;
  }
  .checkout-field-row {
    grid-template-columns: 1fr;
  }
  .checkout-steps { display: none; }
}

/*checkout page*/


/*zimogi page*/

/* ── ZIMOGI PAGE ──────────────────────────────── */
.page-zimogi .header-waves { background: #5f4bd8; }

/* HERO */
.zimogi-hero {
  background: #3A2A97;
  padding: 40px 0 60px;
  color: #fff;
}

.zimogi-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.zimogi-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.zimogi-hero .breadcrumb a:hover { color: #ffd400; }
.zimogi-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.zimogi-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.zimogi-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.zimogi-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.zimogi-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.zimogi-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.zimogi-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}

.zimogi-btn-primary:hover {
  background: #ffe84d;
  transform: translateY(-1px);
}

.zimogi-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.zimogi-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.zimogi-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.zimogi-stat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffd400;
  font-family: var(--font-heading);
  line-height: 1;
}

.zimogi-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.zimogi-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* HERO IMAGE */
.zimogi-hero-img-wrap {
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}

.zimogi-hero-img-wrap img {
  max-height: 300px;
  width: auto;
  object-fit: contain;

}

.zimogi-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
}

.zimogi-hero-badge svg {
  width: 13px;
  height: 13px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* WAVES */
.zimogi-waves {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #ffffff;
}

.page-zimogi .header-waves { 
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #3A2A97; /* ← same as hero, fills the gap behind drips */
}


.zimogi-waves svg {
  width: 100%;
  height: 200px;
  display: block;
}

/* FEATURES */
.zimogi-features {
  padding: 40px 0;
  background: #fff;
}

.zimogi-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zimogi-feature {
  padding: 28px 24px;
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.zimogi-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.zimogi-feature-icon {
  width: 48px;
  height: 48px;
  background: #5f4bd8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.zimogi-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zimogi-feature h3 {
  font-size: 16px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.zimogi-feature p {
  font-size: 14px;
  color: #6b6490;
  line-height: 1.6;
}

/* SECTION HEADER */
.zimogi-section-header {
  margin-bottom: 48px;
}

.zimogi-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.zimogi-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.zimogi-section-header p {
  color: #6b6490;
  font-size: 16px;
}

/* PROCESS */
.zimogi-process {
  padding: 80px 0;
  background: #f9f8fe;
}

.zimogi-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.zimogi-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.zimogi-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5f4bd8;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}

.zimogi-step h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.zimogi-step p {
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
}

.zimogi-step-arrow {
  font-size: 24px;
  color: #c5bbf2;
  padding-top: 12px;
  flex-shrink: 0;
}

/* PRODUCTS */
.zimogi-products {
  padding: 80px 0;
  background: #fff;
}

.zimogi-products-cta {
  text-align: center;
  margin-top: 40px;
}

/* FAQ */
.zimogi-faq {
  padding: 80px 0;
  background: #f9f8fe;
}

.zimogi-faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.zimogi-faq-sidebar h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.zimogi-faq-sidebar p {
  font-size: 14px;
  color: #6b6490;
}

.zimogi-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zimogi-faq-item {
  background: #fff;
  border: 1.5px solid rgba(95,75,216,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.zimogi-faq-item.open {
  border-color: #5f4bd8;
}

.zimogi-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-align: left;
  font-family: var(--font-body);
  gap: 12px;
}

.zimogi-faq-q svg {
  width: 18px;
  height: 18px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.zimogi-faq-item.open .zimogi-faq-q svg {
  transform: rotate(180deg);
}

.zimogi-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.zimogi-faq-item.open .zimogi-faq-a {
  max-height: 200px;
}

.zimogi-faq-a p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #6b6490;
  line-height: 1.7;
}

/* CTA */
.zimogi-cta {
  padding: 80px 0;
  background: #3a2a97;
}

.zimogi-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.zimogi-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.zimogi-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 500px;
}

.zimogi-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.zimogi-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.zimogi-cta-pill svg {
  width: 15px;
  height: 15px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zimogi-cta-pill:hover { background: rgba(255,255,255,0.2); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .zimogi-hero-inner { grid-template-columns: 1fr; }
  .zimogi-hero-visual { display: none; }
  .zimogi-features-grid { grid-template-columns: repeat(2, 1fr); }
  .zimogi-steps { flex-direction: column; align-items: center; }
  .zimogi-step-arrow { transform: rotate(90deg); }
  .zimogi-faq-inner { grid-template-columns: 1fr; }
  .zimogi-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .zimogi-features-grid { grid-template-columns: 1fr; }
}



/*zimogi page*/




/* ── THANK YOU PAGE ───────────────────────────── */
.page-thankyou .header-waves { background: #ffffff; }

.thankyou-section {
  padding: 80px 0 100px;
  background: #fff;
}

/* HERO */
.thankyou-hero {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.thankyou-icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}

.thankyou-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(95,75,216,0.15);
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.15; }
}

.thankyou-icon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #5f4bd8, #3a2a97);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: icon-drop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes icon-drop {
  from { transform: scale(0) rotate(-45deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.thankyou-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 12px;
  animation: fade-up 0.4s ease 0.3s both;
}

.thankyou-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  animation: fade-up 0.4s ease 0.4s both;
}

.thankyou-hero p {
  font-size: 16px;
  color: #6b6490;
  line-height: 1.7;
  animation: fade-up 0.4s ease 0.5s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* STEPS */
.thankyou-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 40px;
  background: #f9f8fe;
  border-radius: 24px;
  border: 1px solid rgba(95,75,216,0.08);
}

.thankyou-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.thankyou-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(95,75,216,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.thankyou-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-step h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 6px;
}

.thankyou-step p {
  font-size: 12px;
  color: #6b6490;
  line-height: 1.5;
}

.thankyou-step-arrow {
  font-size: 20px;
  color: #c5bbf2;
  padding-top: 16px;
  flex-shrink: 0;
}

/* ORDER */
.thankyou-order {
  max-width: 600px;
  margin: 0 auto 48px;
  background: #fff;
  border: 1.5px solid rgba(95,75,216,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.thankyou-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: #f9f8fe;
  border-bottom: 1px solid rgba(95,75,216,0.08);
}

.thankyou-order-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a099cc;
  margin-bottom: 6px;
}

.thankyou-order-id {
  font-size: 18px;
  font-weight: 800;
  color: #1a1464;
  font-family: var(--font-heading);
}

.thankyou-order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dff5e4;
  color: #255f31;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
}

.thankyou-order-status svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-order-items {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thankyou-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.thankyou-order-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.thankyou-order-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1464;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thankyou-order-item-qty {
  font-size: 12px;
  color: #a099cc;
  flex-shrink: 0;
}

.thankyou-order-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #5f4bd8;
  flex-shrink: 0;
}

.thankyou-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-top: 1.5px solid rgba(95,75,216,0.08);
  background: #f9f8fe;
}

.thankyou-order-total span {
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
}

.thankyou-order-total strong {
  font-size: 26px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
}

/* ACTIONS */
.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thankyou-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #5f4bd8;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.thankyou-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-btn-primary:hover {
  background: #3a2a97;
  transform: translateY(-1px);
}

.thankyou-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(95,75,216,0.2);
  color: #5f4bd8;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.thankyou-btn-outline svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-btn-outline:hover {
  background: #f4f2fd;
  border-color: #5f4bd8;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .thankyou-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 28px;
  }
  .thankyou-step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}



/* ── THANK YOU PAGE ───────────────────────────── */


/* ── VIDES REKLAMA PAGE ───────────────────────── */
.page-vides-reklama .header-waves { background: #5f4bd8; }

/* HERO */
.vr-hero {
  background: #5f4bd8;
  padding: 40px 0 70px;
  color: #fff;
}

.vr-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.vr-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.vr-hero .breadcrumb a:hover { color: #ffd400; }
.vr-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.vr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.vr-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.vr-hero-copy h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.vr-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.vr-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}

.vr-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vr-btn-primary:hover {
  background: #ffe84d;
  transform: translateY(-1px);
}

.vr-btn-full { width: 100%; justify-content: center; }

.vr-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.vr-btn-outline svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.vr-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.vr-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #ffe3e3;
  border: 1px solid rgba(226,75,74,0.2);
  border-radius: 14px;
  color: #912b2b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.vr-error svg {
  width: 18px;
  height: 18px;
  stroke: #912b2b;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.vr-hero-img {
  position: relative;
}

.vr-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 360px;
}

.vr-hero-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.vr-hero-tag svg {
  width: 13px;
  height: 13px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SECTION HEADER */
.vr-section-header {
  margin-bottom: 48px;
}

.vr-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.vr-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
}

/* EXTRAS */

.vr-hero-lightbox {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* REAL LIGHTBOX */
.vr-lightbox-card {
  position: relative;
  width: 320px;
  height: 190px;
  border-radius: 18px;

  /* dark housing */
  background: #0a0820;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 60px rgba(255,255,255,0.04);

  animation: vr-float 5s ease-in-out infinite;
}

.vr-lightbox-diffuse {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(255,212,0,0.25),
    rgba(255,212,0,0.1) 40%,
    transparent 75%
  );
  filter: blur(6px);
}

.vr-lightbox-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.08),
    transparent 40%
  );
  backdrop-filter: blur(2px);
}

.vr-lightbox-reflection {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;

  background: linear-gradient(
    135deg,
    transparent,
    rgba(255,255,255,0.15)
  );

  border-top-left-radius: 20px;
}

.vr-lightbox-card::before {
  content: '';
  position: absolute;
  inset: -20px;

  background: radial-gradient(circle,
    rgba(255,212,0,0.25),
    transparent 70%
  );

  filter: blur(20px);
  z-index: 0;
}

.vr-lightbox-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffd400;

  text-shadow:
    0 0 4px rgba(255,212,0,0.9),
    0 0 8px rgba(255,212,0,0.8),
    0 0 16px rgba(255,212,0,0.6),
    0 0 32px rgba(255,212,0,0.4);

  animation: vr-flicker 3s infinite;
}

@keyframes vr-flicker {
  0%, 100% { opacity: 1; }
  48% { opacity: 0.95; }
  50% { opacity: 0.85; }
  52% { opacity: 1; }
}




/* TEXT */
.vr-lightbox-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.vr-lightbox-title {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffd400;

  text-shadow:
    0 0 4px rgba(255,212,0,0.9),
    0 0 10px rgba(255,212,0,0.8),
    0 0 20px rgba(255,212,0,0.6),
    0 0 40px rgba(255,212,0,0.4);

  animation: vr-flicker 3s infinite;
}

.vr-lightbox-sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* EDGE GLOW */
.vr-lightbox-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
}
.vr-float {
  position: absolute;   /* 🔥 REQUIRED */
  padding: 6px 12px;
  background: #ffd400;
  color: #1a1464;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: vr-float 3s ease-in-out infinite;
  z-index: 5;
}

.vr-float-1 { top: 10px; left: 20px; }
.vr-float-2 { bottom: 20px; right: 20px; }
.vr-float-3 { top: 50%; right: -10px; }


/* FLOAT */
@keyframes vr-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* LED GLOW */

.vr-extras {
  padding: 80px 0;
  background: #fff;
}

.vr-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vr-extra-card {
  padding: 32px 28px;
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vr-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.vr-extra-icon {
  width: 52px;
  height: 52px;
  background: #5f4bd8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vr-extra-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vr-extra-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 10px;
}

.vr-extra-card p {
  font-size: 14px;
  color: #6b6490;
  line-height: 1.6;
}

/* NEON */
.vr-neon {
  padding: 80px 0;
  background: linear-gradient(135deg, #3a2a97, #1a1464);
}

.vr-neon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vr-neon-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
}

.vr-new-badge {
  display: inline-block;
  background: #ffd400;
  color: #1a1464;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.vr-neon-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.vr-neon-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.vr-neon-copy .vr-btn-primary {
  margin-top: 8px;
}

/* TYPES */
.vr-types {
  padding: 80px 0;
  background: #fff;
}

.vr-type-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(95,75,216,0.08);
}

.vr-type-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vr-type-block-reverse {
  direction: rtl;
}

.vr-type-block-reverse > * {
  direction: ltr;
}

.vr-type-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.vr-type-sub {
  font-size: 13px;
  font-weight: 700;
  color: #a099cc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px !important;
}

.vr-type-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 14px;
}

.vr-type-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.vr-type-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 600;
}

.vr-type-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f4bd8;
  flex-shrink: 0;
}

.vr-type-note {
  font-size: 13px !important;
  color: #a099cc !important;
  font-style: italic;
  padding: 14px 16px;
  background: #f9f8fe;
  border-left: 3px solid #5f4bd8;
  border-radius: 0 8px 8px 0;
}

.vr-type-img img {
  width: 100%;
  height: 350px;
}

/* PROCESS */
.vr-process {
  padding: 80px 0;
  background: #f9f8fe;
}

.vr-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.vr-process-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.vr-process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5f4bd8;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-heading);
}

.vr-process-step h4 {
  font-size: 13px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 6px;
}

.vr-process-step p {
  font-size: 12px;
  color: #6b6490;
  line-height: 1.5;
}

.vr-process-line {
  width: 40px;
  height: 1px;
  background: rgba(95,75,216,0.2);
  flex-shrink: 0;
  margin-top: 24px;
  margin-bottom: 0; 
}

/* CONTACT */
.vr-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.vr-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.vr-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.vr-contact-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 28px;
}

.vr-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vr-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-decoration: none;
  transition: color 0.2s;
}

.vr-contact-link svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.vr-contact-link:hover { color: #5f4bd8; }

/* FORM */
.vr-form {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vr-form .form-group { margin-bottom: 18px; }

.vr-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.vr-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #fff;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vr-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.vr-input::placeholder { color: #c5bbf2; }

.vr-textarea {
  min-height: 120px;
  resize: vertical;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .vr-hero-inner,
  .vr-neon-inner,
  .vr-type-block,
  .vr-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vr-type-block-reverse { direction: ltr; }
  .vr-hero-img { display: none; }
  .vr-extras-grid { grid-template-columns: 1fr; }
  .vr-process-steps { flex-direction: column; align-items: center; gap: 16px; }
  .vr-process-line { width: 1px; height: 30px; }
}

@media (max-width: 640px) {
  .vr-form-row { grid-template-columns: 1fr; }
  .vr-form { padding: 24px; }
}

/* ── VIDES REKLAMA PAGE ───────────────────────── */



/* ── VIZITKARTES PAGE ─────────────────────────── */
.page-vizitkartes .header-waves { background: #5f4bd8; }

/* HERO */
.vk-hero {
  background: #5f4bd8;
  padding: 40px 0 70px;
  color: #fff;
}

.vk-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.vk-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.vk-hero .breadcrumb a:hover { color: #ffd400; }
.vk-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.vk-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.vk-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.vk-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.vk-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.vk-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.vk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}

.vk-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vk-btn-primary:hover { background: #ffe84d; transform: translateY(-1px); }
.vk-btn-full { width: 100%; justify-content: center; }

.vk-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.vk-btn-outline svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.vk-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.vk-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vk-hero-tags span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 999px;
}

/* CARD STACK */
.vk-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vk-card-stack {
  position: relative;
  width: 340px;
  height: 220px;
}

.vk-card-back {
  position: absolute;
  width: 280px;
  height: 168px;
  background: #3a2a97;
  border-radius: 12px;
  top: 20px;
  left: 40px;
  transform: rotate(6deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.vk-card-back-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.vk-card-front {
  position: absolute;
  width: 280px;
  height: 168px;
  background: #fff;
  border-radius: 12px;
  top: 30px;
  left: 20px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.3s ease;
}

.vk-card-front:hover { transform: rotate(0deg) scale(1.02); }

.vk-card-front-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vk-card-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #5f4bd8;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vk-card-front-inner strong {
  display: block;
  font-size: 14px;
  color: #1a1464;
  font-weight: 800;
}

.vk-card-front-inner span {
  font-size: 11px;
  color: #a099cc;
}

/* SECTION HEADER */
.vk-section-header { margin-bottom: 48px; }
.vk-section-header.center { text-align: center; }

.vk-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.vk-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
}

/* TYPES */
.vk-types {
  padding: 80px 0;
  background: #fff;
}

.vk-type-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(95,75,216,0.08);
}

.vk-type-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vk-type-reverse { direction: rtl; }
.vk-type-reverse > * { direction: ltr; }

.vk-type-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(95,75,216,0.1);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
}

.vk-type-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.vk-type-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 14px;
}

.vk-type-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
  background: #f9f8fe;
  border-radius: 14px;
  border: 1px solid rgba(95,75,216,0.08);
}

.vk-spec {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.vk-spec strong { color: #1a1464; font-weight: 700; }
.vk-spec span { color: #6b6490; }

.vk-type-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 320px;
}

/* WHY */
.vk-why {
  padding: 80px 0;
  background: #f9f8fe;
}

.vk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-content: center
}

.vk-why-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vk-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.vk-why-icon {
  width: 52px;
  height: 52px;
  background: #5f4bd8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.vk-why-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vk-why-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.vk-why-card p {
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
}

/* GALLERY */
.vk-gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #5f4bd8, #3a2a97);
}

.vk-gallery .vk-section-header h2 { color: #fff; }
.vk-gallery .vk-eyebrow-dark { color: #ffd400; }

.vk-gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.vk-gallery-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.vk-gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.vk-gallery-slide {
  min-width: 100%;
}

.vk-gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.vk-gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  color: #fff;
}

.vk-gallery-btn:hover { background: rgba(255,255,255,0.25); }

.vk-gallery-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CONTACT */
.vk-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.vk-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.vk-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.vk-contact-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 24px;
}

.vk-contact-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.vk-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
}

.vk-tip svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.vk-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vk-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-decoration: none;
  transition: color 0.2s;
}

.vk-phone-link svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.vk-phone-link:hover { color: #5f4bd8; }

/* FORM */
.vk-form {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 24px;
  padding: 36px;
}

.vk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vk-form .form-group { margin-bottom: 18px; }

.vk-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.vk-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #fff;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vk-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.vk-input::placeholder { color: #c5bbf2; }
.vk-textarea { min-height: 120px; resize: vertical; }


.vk-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #dff5e4;
  border: 1px solid rgba(65,130,76,0.2);
  border-radius: 14px;
  margin-bottom: 20px;
  color: #255f31;
}

.vk-success svg {
  width: 20px;
  height: 20px;
  stroke: #255f31;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.vk-success strong { display: block; font-size: 14px; font-weight: 700; }
.vk-success span { font-size: 13px; opacity: 0.8; }

.vk-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffe3e3;
  border: 1px solid rgba(226,75,74,0.2);
  border-radius: 14px;
  margin-bottom: 20px;
  color: #912b2b;
  font-size: 14px;
  font-weight: 600;
}

.vk-error svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .vk-hero-inner,
  .vk-type-block,
  .vk-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .vk-hero-visual { display: none; }
  .vk-type-reverse { direction: ltr; }
  .vk-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .vk-why-grid { grid-template-columns: 1fr; }
  .vk-form-row { grid-template-columns: 1fr; }
  .vk-form { padding: 24px; }

  .vr-type-img img {
    height: 280px;
  }
}

@media (max-width: 400px) {
  .vk-type-img img {
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #fff;
  }
}


/* ── VIZITKARTES PAGE ─────────────────────────── */



/* ── BANERI PAGE ──────────────────────────────── */
.page-baneri .header-waves { background: #5f4bd8; }

/* HERO */
.bn-hero {
  background: #5f4bd8;
  padding: 40px 0 70px;
  color: #fff;
}

.bn-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.bn-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.bn-hero .breadcrumb a:hover { color: #ffd400; }
.bn-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.bn-hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.bn-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.bn-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.bn-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.bn-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}

.bn-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bn-btn-primary:hover { background: #ffe84d; transform: translateY(-1px); }
.bn-btn-full { width: 100%; justify-content: center; }

.bn-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.bn-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.bn-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bn-hero-tags span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 999px;
}

.bn-hero-img { position: relative; }

.bn-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 380px;
}

.bn-hero-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.bn-hero-tag svg {
  width: 13px;
  height: 13px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* WAVES */
.bn-waves-white {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: white;
}

.bn-waves-white svg {
  width: 100%;
  height: 200px;
  display: block;
}



/* PVC SECTION */
.bn-pvc {
  padding: 80px 0;
  background: #fff;
}

.bn-pvc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.bn-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.bn-pvc-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.bn-pvc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bn-pvc-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
  line-height: 1.5;
}

.bn-pvc-feature svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.bn-pvc-note {
  font-size: 13px;
  color: #a099cc;
  font-style: italic;
  padding: 12px 16px;
  background: #f9f8fe;
  border-left: 3px solid #5f4bd8;
  border-radius: 0 8px 8px 0;
  margin-top: 4px;
}

/* TABLES */
.bn-pvc-table-wrap {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.bn-table {
  width: 100%;
  border-collapse: collapse;
}

.bn-table thead tr {
  background: #5f4bd8;
}

.bn-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.bn-table tbody tr {
  border-bottom: 1px solid rgba(95,75,216,0.08);
  transition: background 0.15s;
}

.bn-table tbody tr:last-child { border-bottom: none; }
.bn-table tbody tr:hover { background: rgba(95,75,216,0.04); }

.bn-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: #1a1464;
}

.bn-table tbody td strong {
  color: #5f4bd8;
  font-weight: 800;
}

.bn-table-note {
  font-size: 12px;
  color: #a099cc;
  padding: 12px 20px;
  border-top: 1px solid rgba(95,75,216,0.08);
}

/* ROLLUP SECTION */
.bn-rollup {
  position: relative;
}

.bn-waves-yellow-top {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #fff;
}

.bn-waves-yellow-top svg {
  width: 100%;
  height: 80px;
  display: block;
}

.bn-rollup-body {
  background: #ffd400;
  padding: 60px 0;
}

.bn-waves-yellow-bottom {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #f9f8fe;
}

.bn-waves-yellow-bottom svg {
  width: 100%;
  height: 180px;
  display: block;
}

.bn-eyebrow-yellow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a2a97;
  margin-bottom: 10px;
  background: rgba(58,42,151,0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

.bn-rollup-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.bn-rollup-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.bn-rollup-copy p {
  font-size: 15px;
  color: #1a1464;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.8;
}

.bn-rollup-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bn-rollup-features h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 4px;
}

.bn-rollup-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 600;
}

.bn-rollup-feature svg {
  width: 16px;
  height: 16px;
  stroke: #3a2a97;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.bn-rollup-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
  box-shadow: 0 24px 60px rgba(58,42,151,0.25);
}

/* ROLLUP TABLE */
.bn-rollup-table-section h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.bn-table-dark {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(58,42,151,0.15);
}

.bn-table-dark thead tr { background: #3a2a97; }

.bn-table-notes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 14px;
  color: #1a1464;
  opacity: 0.6;
  font-weight: 600;
}

.bn-table-notes span::before {
  content: '• ';
}

/* WHY */
.bn-why {
  padding: 80px 0;
  background: #f9f8fe;
}

.bn-section-header { margin-bottom: 48px; }
.bn-section-header.center { text-align: center; }

.bn-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-top: 8px;
}

.bn-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.bn-why-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bn-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.bn-why-icon {
  width: 52px;
  height: 52px;
  background: #5f4bd8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.bn-why-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bn-why-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.bn-why-card p {
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
}

/* CONTACT */
.bn-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.bn-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.bn-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.bn-contact-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bn-contact-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bn-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
}

.bn-tip svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.bn-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bn-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-decoration: none;
  transition: color 0.2s;
}

.bn-phone-link svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.bn-phone-link:hover { color: #5f4bd8; }

/* FORM */
.bn-form {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 24px;
  padding: 36px;
}

.bn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bn-form .form-group { margin-bottom: 18px; }

.bn-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.bn-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #fff;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bn-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.bn-input::placeholder { color: #c5bbf2; }
.bn-textarea { min-height: 120px; resize: vertical; }

/* HERO ANIMATION */
.bn-hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bn-hero-anim {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.bn-anim-frame {
  position: relative;
  animation: banner-float 4s ease-in-out infinite;
}

@keyframes banner-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.bn-anim-pole {
  position: absolute;
  top: -30px;
  width: 10px;
  height: 50px;
  background: linear-gradient(180deg, #c8a84b, #ffd400, #c8a84b);
  border-radius: 4px;
  z-index: 2;
}

.bn-anim-pole.left { left: 40px; }
.bn-anim-pole.right { right: 40px; }

.bn-anim-banner {
  background: linear-gradient(135deg, #3a2a97, #5f4bd8);
  border-radius: 12px;
  padding: 40px 36px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(58,42,151,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* animated shimmer */
.bn-anim-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.bn-anim-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  animation: line-pulse 2.5s ease-in-out infinite;
}

.bn-anim-line-1 { width: 80%; animation-delay: 0s; }
.bn-anim-line-2 { width: 60%; animation-delay: 0.2s; }
.bn-anim-line-3 { width: 40%; animation-delay: 0.4s; }

@keyframes line-pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.35; }
}

.bn-anim-logo {
  font-size: 48px;
  font-weight: 800;
  color: #ffd400;
  font-family: var(--font-heading);
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(255,212,0,0.4);
  animation: logo-glow 2.5s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { text-shadow: 0 4px 20px rgba(255,212,0,0.3); }
  50% { text-shadow: 0 4px 40px rgba(255,212,0,0.7); }
}

.bn-anim-tagline {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.bn-anim-dots {
  display: flex;
  gap: 8px;
}

.bn-anim-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd400;
  animation: dot-bounce 1.4s ease-in-out infinite;
}

.bn-anim-dots span:nth-child(2) { animation-delay: 0.2s; background: rgba(255,255,255,0.4); }
.bn-anim-dots span:nth-child(3) { animation-delay: 0.4s; background: rgba(255,255,255,0.2); }

@keyframes dot-bounce {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* grommets (metal rings around banner edge) */
.bn-anim-grommets {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.bn-anim-grommets span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a84b, #ffd400);
  border: 2px solid rgba(255,255,255,0.3);
  margin-top: -7px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.bn-anim-shadow {
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(58,42,151,0.3) 0%, transparent 70%);
  margin: 8px auto 0;
  animation: shadow-sway 4s ease-in-out infinite;
}

@keyframes shadow-sway {
  0%, 100% { transform: scaleX(0.9); opacity: 0.5; }
  50% { transform: scaleX(1.1); opacity: 0.3; }
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .bn-hero-inner,
  .bn-pvc-inner,
  .bn-rollup-inner,
  .bn-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .bn-hero-img { display: none; }
  .bn-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bn-why-grid { grid-template-columns: 1fr; }
  .bn-form-row { grid-template-columns: 1fr; }
  .bn-form { padding: 24px; }
}

/* ── VIZITKARTES PAGE ─────────────────────────── */


/* ── AUTO APLIMESANA PAGE ─────────────────────── */
.page-auto .header-waves { background: #5f4bd8; }

/* HERO */
.au-hero {
  background: #5f4bd8;
  padding: 10px 0 70px;
  color: #fff;
  overflow: hidden;
}

.au-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.au-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.au-hero .breadcrumb a:hover { color: #ffd400; }
.au-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.au-hero-inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  align-items: center;
}

.au-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.au-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.au-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.au-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.au-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}

.au-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.au-btn-primary:hover { background: #ffe84d; transform: translateY(-1px); }
.au-btn-full { width: 100%; justify-content: center; }

.au-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.au-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.au-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.au-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffd400;
  font-family: var(--font-heading);
  line-height: 1;
}

.au-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.au-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* CAR VISUAL */
.au-hero-visual {
  position: relative;
}

.au-car-wrap {
  position: relative;
  animation: car-float 5s ease-in-out infinite;
}

@keyframes car-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

.au-car-img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: car-arrive 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes car-arrive {
  from { transform: translateX(80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.au-car-glow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(255,212,0,0.3) 0%, transparent 70%);
  filter: blur(10px);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.9); }
  50% { opacity: 0.6; transform: scaleX(1.1); }
}

.au-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  animation: badge-float 3s ease-in-out infinite;
}

.au-floating-badge svg {
  width: 13px;
  height: 13px;
  stroke: #ffd400;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.au-badge-1 {
  top: 10px;
  left: -10px;
  animation-delay: 0s;
}

.au-badge-2 {
  bottom: 30px;
  right: -10px;
  animation-delay: 1.5s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* SECTION HEADER */
.au-section-header { margin-bottom: 48px; }
.au-section-header.center { text-align: center; }

.au-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.au-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-top: 8px;
}

/* FEATURES */
.au-features {
  padding: 80px 0;
  background: #fff;
}

.au-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.au-feature {
  padding: 32px 28px;
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.au-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.au-feature-icon {
  width: 56px;
  height: 56px;
  background: #5f4bd8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.au-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.au-feature h3 {
  font-size: 16px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 10px;
}

.au-feature p {
  font-size: 14px;
  color: #6b6490;
  line-height: 1.6;
}

/* GALLERY */
.au-gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #5f4bd8, #3a2a97);
}

.au-gallery .au-section-header h2 { color: #fff; }
.au-gallery .au-eyebrow-dark { color: #ffd400; }

.au-gallery-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.au-gallery-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.au-gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.au-gallery-btn:hover { background: rgba(255,255,255,0.25); }

.au-gallery-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* PRICES */
.au-prices {
  padding: 80px 0;
  background: #fff;
}

.au-price-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(95,75,216,0.08);
  border: 1px solid rgba(95,75,216,0.08);
}

.au-price-block:last-of-type { margin-bottom: 0; }

.au-price-block-reverse { direction: rtl; }
.au-price-block-reverse > * { direction: ltr; }

.au-price-img {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: unset;
  padding: 0;
}

.au-price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.au-price-block:hover .au-price-img img {
  transform: scale(1.05) translateY(-4px);
}

.au-price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1a1464;
  color: #ffd400;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
}

.au-price-copy {
  padding: 48px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.au-price-num {
  font-size: 56px;
  font-weight: 800;
  color: rgba(95,75,216,0.08);
  font-family: var(--font-heading);
  line-height: 1;
}

.au-price-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-top: -20px;
}

.au-price-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
}

.au-price-amount {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: #f9f8fe;
  border-radius: 14px;
  border-left: 3px solid #5f4bd8;
}

.au-price-from {
  font-size: 12px;
  color: #a099cc;
  font-weight: 600;
}

.au-price-value {
  font-size: 22px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
}

.au-price-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 24px;
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 16px;
  font-size: 14px;
  color: #6b6490;
  line-height: 1.6;
}

.au-price-note svg {
  width: 18px;
  height: 18px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* PROCESS */
.au-process {
  padding: 80px 0;
  background: #f9f8fe;
}

.au-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.au-process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.au-process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #5f4bd8;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-heading);
  box-shadow: 0 8px 20px rgba(95,75,216,0.3);
}

.au-process-step h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.au-process-step p {
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
}

.au-process-arrow {
  font-size: 24px;
  color: #c5bbf2;
  padding-top: 14px;
  flex-shrink: 0;
}

/* CONTACT */
.au-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.au-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.au-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.au-contact-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 24px;
}

.au-contact-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.au-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
}

.au-tip svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.au-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.au-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-decoration: none;
  transition: color 0.2s;
}

.au-phone-link svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.au-phone-link:hover { color: #5f4bd8; }

/* FORM */
.au-form {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 24px;
  padding: 36px;
}

.au-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.au-form .form-group { margin-bottom: 18px; }

.au-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.au-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #fff;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.au-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.au-input::placeholder { color: #c5bbf2; }
.au-textarea { min-height: 120px; resize: vertical; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .au-hero-inner,
  .au-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .au-hero-visual { display: none; }
  .au-features-grid { grid-template-columns: 1fr; }
  .au-price-block,
  .au-price-block-reverse { grid-template-columns: 1fr; direction: ltr; }
  .au-process-steps { flex-direction: column; align-items: center; gap: 20px; }
  .au-process-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .au-form-row { grid-template-columns: 1fr; }
  .au-form { padding: 24px; }
}

/* ── AUTO APLIMESANA PAGE ─────────────────────── */


/* ── UZLIMES PAGE ─────────────────────────────── */
.page-uzlimes .header-waves { background: #5f4bd8; }

/* HERO */
.uz-hero {
  background: #5f4bd8;
  padding: 40px 0 70px;
  color: #fff;
  overflow: hidden;
}

.uz-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.uz-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.uz-hero .breadcrumb a:hover { color: #ffd400; }
.uz-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.uz-hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.uz-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.uz-hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.uz-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.uz-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.uz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}

.uz-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uz-btn-primary:hover { background: #ffe84d; transform: translateY(-1px); }
.uz-btn-full { width: 100%; justify-content: center; }

.uz-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.uz-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.uz-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.uz-hero-tags span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 999px;
}

/* HERO VISUAL */
.uz-hero-visual {
  position: relative;
  height: 380px;
}

.uz-hero-stickers {
  position: relative;
  width: 100%;
  height: 100%;
}

.uz-hero-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  animation: uz-float 4s ease-in-out infinite;
}

@keyframes uz-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.uz-sticker {
  position: absolute;
  animation: uz-sticker-float 3s ease-in-out infinite;
}

@keyframes uz-sticker-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}

.uz-sticker-1 { top: 10px; left: 0; --rot: -8deg; animation-delay: 0s; }
.uz-sticker-2 { top: 20px; right: 20px; --rot: 12deg; animation-delay: 0.7s; }
.uz-sticker-3 { bottom: 60px; left: 10px; --rot: -5deg; animation-delay: 1.4s; }
.uz-sticker-4 { bottom: 80px; right: 0; --rot: 8deg; animation-delay: 2.1s; }

.uz-sticker-inner {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  min-width: 80px;
}

.uz-sticker-logo {
  font-size: 18px;
  font-weight: 800;
  color: #5f4bd8;
}

.uz-sticker-text {
  font-size: 10px;
  font-weight: 700;
  color: #1a1464;
  letter-spacing: 1px;
}

.uz-sticker-round {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
  justify-content: center;
  background: #ffd400;
}

.uz-sticker-round .uz-sticker-logo { color: #1a1464; font-size: 22px; }

.uz-sticker-label {
  background: #3a2a97;
  min-width: 100px;
}

.uz-label-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.uz-label-lines span {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
}

.uz-label-lines span:nth-child(1) { width: 100%; }
.uz-label-lines span:nth-child(2) { width: 70%; }
.uz-label-lines span:nth-child(3) { width: 50%; }

.uz-sticker-barcode {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}

.uz-sticker-dark {
  background: #1a1464;
  padding: 10px 16px;
}

.uz-sticker-dark span:first-child {
  font-size: 13px;
  font-weight: 800;
  color: #ffd400;
  letter-spacing: 2px;
}

.uz-sticker-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}

/* SECTION HEADER */
.uz-section-header { margin-bottom: 48px; }
.uz-section-header.center { text-align: center; }

.uz-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.uz-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-top: 8px;
}

/* TYPES */
.uz-types {
  padding: 80px 0;
  background: #fff;
}

.uz-type-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(95,75,216,0.08);
}

.uz-type-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.uz-type-reverse { direction: rtl; }
.uz-type-reverse > * { direction: ltr; }

.uz-type-num {
  font-size: 56px;
  font-weight: 800;
  color: rgba(95,75,216,0.08);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.uz-type-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  margin-top: -20px;
}

.uz-type-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 24px;
}

.uz-type-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 340px;
  transition: transform 0.4s ease;
}

.uz-type-img-nobg img {
  background: transparent;
  border-radius: 0;
  height: auto;
  mix-blend-mode: multiply;
}
.uz-type-block:hover .uz-type-img img { transform: scale(1.02); }

.uz-type-img-dark {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.uz-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffd400;
  color: #1a1464;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 999px;
}

/* SPECS GRID */
.uz-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.uz-spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: #f9f8fe;
  border-radius: 10px;
  border: 1px solid rgba(95,75,216,0.06);
}

.uz-spec-label {
  font-size: 11px;
  font-weight: 700;
  color: #a099cc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.uz-spec-value {
  font-size: 13px;
  font-weight: 600;
  color: #1a1464;
}

/* PRICE GRID */
.uz-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.uz-price-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #f9f8fe;
  border-radius: 14px;
  border: 1px solid rgba(95,75,216,0.08);
}

.uz-price-label {
  font-size: 12px;
  font-weight: 700;
  color: #a099cc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.uz-price-val {
  font-size: 20px;
  font-weight: 800;
  color: #5f4bd8;
  font-family: var(--font-heading);
}

.uz-price-sub {
  font-size: 11px;
  color: #a099cc;
}

/* FEATURES LIST */
.uz-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.uz-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
}

.uz-feature svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* PRICE NOTE */
.uz-price-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #f9f8fe;
  border-left: 3px solid #5f4bd8;
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
  margin-bottom: 20px;
}

.uz-price-note svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* SPEC SECTION */
.uz-spec-section {
  padding: 80px 0;
  background: #f9f8fe;
}

.uz-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.uz-spec-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.uz-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.uz-spec-icon {
  width: 52px;
  height: 52px;
  background: #5f4bd8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.uz-spec-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uz-spec-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.uz-spec-card p {
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
}

/* CONTACT */
.uz-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.uz-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.uz-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.uz-contact-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 24px;
}

.uz-contact-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.uz-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
}

.uz-tip svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.uz-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uz-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-decoration: none;
  transition: color 0.2s;
}

.uz-phone-link svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.uz-phone-link:hover { color: #5f4bd8; }

/* FORM */
.uz-form {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 24px;
  padding: 36px;
}

.uz-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.uz-form .form-group { margin-bottom: 18px; }

.uz-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.uz-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #fff;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.uz-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.uz-input::placeholder { color: #c5bbf2; }
.uz-textarea { min-height: 120px; resize: vertical; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .uz-hero-inner,
  .uz-type-block,
  .uz-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .uz-hero-visual { display: none; }
  .uz-type-reverse { direction: ltr; }
  .uz-spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .uz-spec-grid { grid-template-columns: 1fr; }
  .uz-specs-grid { grid-template-columns: 1fr; }
  .uz-price-grid { grid-template-columns: 1fr; }
  .uz-form-row { grid-template-columns: 1fr; }
  .uz-form { padding: 24px; }
}

/* ── UZLIMES PAGE ─────────────────────────────── */



/* ── DRUKA PAGE ───────────────────────────────── */
.page-druka .header-waves { background: #5f4bd8; }

/* HERO */
.dr-hero {
  background: #5f4bd8;
  padding: 10px 0 70px;
  color: #fff;
  overflow: hidden;
}

.dr-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.dr-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.dr-hero .breadcrumb a:hover { color: #ffd400; }
.dr-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

.dr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.dr-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd400;
  margin-bottom: 16px;
}

.dr-hero-copy h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.dr-hero-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.dr-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.dr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffd400;
  color: #1a1464;
  font-weight: 800;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}

.dr-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dr-btn-primary:hover { background: #ffe84d; transform: translateY(-1px); }
.dr-btn-full { width: 100%; justify-content: center; }

.dr-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.dr-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.dr-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dr-hero-tags span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 999px;
}

/* HERO MOCKUP GRID */
.dr-hero-visual {
  position: relative;
}

.dr-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dr-mockup {
  border-radius: 16px;
  overflow: hidden;
  animation: dr-float 4s ease-in-out infinite;
}

.dr-mockup-1 { animation-delay: 0s; }
.dr-mockup-2 { animation-delay: 0.5s; }
.dr-mockup-3 { animation-delay: 1s; }
.dr-mockup-4 { animation-delay: 1.5s; }

@keyframes dr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.dr-mockup-inner {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.dr-mockup-dark {
  background: #3a2a97;
  border-color: rgba(255,255,255,0.1);
}

.dr-mockup-yellow {
  background: #ffd400;
  border-color: rgba(255,255,255,0.3);
}

.dr-mock-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.dr-mockup-yellow .dr-mock-title { color: #1a1464; }

.dr-mock-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.dr-mockup-yellow .dr-mock-sub { color: rgba(26,20,100,0.5); }

.dr-mock-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50% 50% 0 0;
}

.dr-mock-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.dr-mock-lines span {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
}

.dr-mock-lines span:nth-child(1) { width: 100%; }
.dr-mock-lines span:nth-child(2) { width: 70%; }
.dr-mock-lines span:nth-child(3) { width: 50%; }

.dr-mock-calendar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dr-mock-calendar > span {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.dr-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dr-cal-grid span {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* SECTION HEADER */
.dr-section-header { margin-bottom: 48px; }
.dr-section-header.center { text-align: center; }

.dr-eyebrow-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5f4bd8;
  margin-bottom: 10px;
}

.dr-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-top: 8px;
}

.dr-section-header p {
  font-size: 16px;
  color: #6b6490;
  margin-top: 8px;
}

/* TYPES */
.dr-types {
  padding: 80px 0;
  background: #fff;
}

.dr-types-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dr-type-card {
  padding: 28px 24px;
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.08);
  border-radius: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dr-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.dr-type-icon {
  width: 48px;
  height: 48px;
  background: #5f4bd8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.dr-type-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dr-type-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 8px;
}

.dr-type-card p {
  font-size: 13px;
  color: #6b6490;
  line-height: 1.6;
}

/* SHOWCASE */
.dr-showcase {
  padding: 80px 0;
  background: #f9f8fe;
}

.dr-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

.dr-showcase-large {
  grid-column: span 1;
  grid-row: span 2;
}

.dr-showcase-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(95,75,216,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dr-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(95,75,216,0.1);
}

.dr-showcase-img {
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-showcase-large .dr-showcase-img {
  height: 100%;
  min-height: 440px;
}

.dr-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dr-showcase-card:hover .dr-showcase-img img { transform: scale(1.04); }

.dr-showcase-img-purple {
  background: #5f4bd8;
}

.dr-showcase-img-light {
  background: #f0eeff;
}

.dr-showcase-mockup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.dr-sm-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.dr-sm-brand {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.dr-sm-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.dr-sm-lines span {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
}

.dr-sm-lines span:nth-child(1) { width: 90%; }
.dr-sm-lines span:nth-child(2) { width: 60%; }
.dr-sm-lines span:nth-child(3) { width: 75%; }

.dr-sm-url {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.dr-sm-tag { margin: 8px 0; }

.dr-sm-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.dr-cal-mockup { justify-content: flex-start; padding-top: 20px; }

.dr-mini-cal { margin-top: 8px; }

.dr-mini-cal-header {
  font-size: 13px;
  font-weight: 700;
  color: #5f4bd8;
  margin-bottom: 6px;
}

.dr-mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.dr-mini-cal-grid span {
  font-size: 10px;
  color: #6b6490;
  text-align: center;
  padding: 2px;
}

.dr-showcase-label {
  padding: 10px 18px;
}

.dr-showcase-label strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #1a1464;
  margin-bottom: 3px;
}

.dr-showcase-label span {
  font-size: 12px;
  color: #a099cc;
}

/* DESIGN SECTION */
.dr-design {
  padding: 80px 0;
  background: linear-gradient(135deg, #3a2a97, #1a1464);
}

.dr-design-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dr-design .dr-eyebrow-dark { color: #ffd400; }

.dr-design-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.dr-design-copy p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 14px;
}

.dr-design-prices {
  margin: 24px 0;
}

.dr-design-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  border-left: 4px solid #ffd400;
}

.dr-dp-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dr-dp-val {
  font-size: 28px;
  font-weight: 800;
  color: #ffd400;
  font-family: var(--font-heading);
}

.dr-dp-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.dr-design-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
  font-style: italic;
}

.dr-design-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dr-design-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dr-design-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffd400;
  color: #1a1464;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.dr-design-step strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.dr-design-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* CONTACT */
.dr-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.dr-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dr-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1464;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.dr-contact-copy p {
  font-size: 15px;
  color: #6b6490;
  line-height: 1.7;
  margin-bottom: 24px;
}

.dr-contact-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.dr-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1464;
  font-weight: 500;
}

.dr-tip svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.dr-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dr-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1464;
  text-decoration: none;
  transition: color 0.2s;
}

.dr-phone-link svg {
  width: 16px;
  height: 16px;
  stroke: #5f4bd8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.dr-phone-link:hover { color: #5f4bd8; }

/* FORM */
.dr-form {
  background: #f9f8fe;
  border: 1px solid rgba(95,75,216,0.1);
  border-radius: 24px;
  padding: 36px;
}

.dr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dr-form .form-group { margin-bottom: 18px; }

.dr-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1464;
  margin-bottom: 8px;
}

.dr-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(95,75,216,0.15);
  border-radius: 12px;
  background: #fff;
  color: #1a1464;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dr-input:focus {
  outline: none;
  border-color: #5f4bd8;
  box-shadow: 0 0 0 3px rgba(95,75,216,0.1);
}

.dr-input::placeholder { color: #c5bbf2; }
.dr-textarea { min-height: 120px; resize: vertical; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .dr-hero-inner,
  .dr-design-inner,
  .dr-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .dr-hero-visual { display: none; }
  .dr-types-list { grid-template-columns: repeat(2, 1fr); }
  .dr-showcase-grid { grid-template-columns: 1fr 1fr; }
  .dr-showcase-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 640px) {
  .dr-types-list { grid-template-columns: 1fr; }
  .dr-showcase-grid { grid-template-columns: 1fr; }
  .dr-showcase-large { grid-column: span 1; }
  .dr-form-row { grid-template-columns: 1fr; }
  .dr-form { padding: 24px; }
}



/* ── DRUKA PAGE ───────────────────────────────── */

/* ── Privatuma politika PAGE ───────────────────────────────── */
/* HERO */


.pp-hero {
  padding: 20px 0;
  background: #5f4bd8;
  color: #fff;
  text-align: center;
}



.pp-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pp-hero p {
  color: var(--gray-500);
}

/* CONTENT */
.pp-content {
  padding: 40px 0 80px;
}

.pp-section {
  margin-bottom: 40px;
  max-width: 800px;
}

.pp-section h2 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.pp-section p {
  color: var(--gray-600);
  line-height: 1.6;
}

.pp-section ul {
  margin-top: 10px;
  padding-left: 18px;
}

.pp-section li {
  margin-bottom: 6px;
  color: var(--gray-600);
}

/* HIGHLIGHT BOX */
.pp-section.highlight {
  background: rgba(95,75,216,0.08);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 10px;
}

/* CONTACT */
.pp-section.contact {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* ── Privatuma politika PAGE ───────────────────────────────── */






















.detail-grid,
.pricing-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.detail-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.detail-card,
.price-card,
.info-panel,
.gallery-card,
.note-card {
  border: 1px solid rgba(201, 91, 30, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.detail-card,
.price-card,
.gallery-card {
  padding: 26px;
}

.detail-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
}

.detail-card,
.gallery-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.detail-card:hover,
.gallery-card:hover {
  border-color: rgba(201, 91, 30, 0.25);
  box-shadow: var(--shadow);
}

.detail-card h3,
.price-card h3,
.info-panel h2 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}















.slider-window {
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  gap: 0;
}





.page-hero {
  padding: 42px 0 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--line-strong);
}

.service-hero,
.service-columns {
  display: grid;
  gap: 24px;
}

.service-hero {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.service-copy,
.service-media {
  min-height: 380px;
}

.service-copy {
  padding: 42px;
  border: 1px solid rgba(201, 91, 30, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.service-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.service-media {
  overflow: hidden;
  border: 1px solid rgba(201, 91, 30, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.highlight-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(201, 91, 30, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.highlight-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-family: var(--font-heading);
}

.highlight-card span {
  color: var(--text-soft);
  font-size: 14px;
}

.service-columns,






.form-label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.character-count {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
}

.upload-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 22px;
  border: 2px dashed rgba(201, 91, 30, 0.28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(249, 242, 235, 0.96), rgba(255, 255, 255, 0.92));
  text-align: center;
  cursor: pointer;
}

.upload-dropzone-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-dropzone-copy {
  display: grid;
  gap: 6px;
}

.upload-dropzone-copy strong {
  color: var(--text);
  font-size: 16px;
}

.upload-dropzone-copy small {
  color: var(--text-soft);
  font-size: 13px;
}

.info-list {
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
}

.note-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
}

.note-card h3 {
  margin-bottom: 8px;
}



.product-note,
.product-description {
  margin-bottom: 18px;
}

.product-config-form {
  display: grid;
  gap: 14px;
}

.delivery-address-group[hidden] {
  display: none;
}

.product-buy-row {
  display: flex;
  align-items: end;
  gap: 14px;
}

.product-buy-row .form-group {
  margin-bottom: 0;
}

.product-buy-row .btn {
  min-width: 220px;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(65, 130, 76, 0.12);
  color: #255f31;
  font-size: 14px;
  font-weight: 800;
}

.product-support-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
}

.product-description-card {
  padding: 30px;
  border: 1px solid rgba(201, 91, 30, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  color: var(--text-soft);
}

.product-description-card > * + * {
  margin-top: 16px;
}

.product-description-card strong,
.product-description-card b {
  color: var(--text);
}

.product-description-card img {
  margin-top: 12px;
  border-radius: 20px;
  border: 1px solid rgba(201, 91, 30, 0.12);
  background: white;
  padding: 12px;
}



.qty-input,
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.qty-input {
  width: 88px;
}


.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.form-label .required {
  color: var(--accent);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-error {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 40, 40, 0.18);
  border-radius: 16px;
  background: rgba(255, 238, 238, 0.95);
  color: #8e2323;
}


.thankyou-shell {
  max-width: 820px;
}

.thankyou-card {
  padding: 42px;
  text-align: center;
}

.thankyou-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.05em;
}

.thankyou-card > p {
  max-width: 54ch;
  margin: 0 auto;
}

.thankyou-order-card {
  padding: 26px;
  margin: 30px 0;
  text-align: left;
}

.thankyou-order-id {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
}

.thankyou-order-items {
  display: grid;
  gap: 12px;
}

.thankyou-order-total {
  padding-top: 16px;
  margin-top: 18px;
  border-top: 1px solid rgba(201, 91, 30, 0.12);
  font-weight: 800;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.not-found-shell {
  max-width: 860px;
}

.not-found-card {
  padding: 48px;
  border: 1px solid rgba(201, 91, 30, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(201, 91, 30, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-card h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.not-found-card p {
  max-width: 46ch;
  margin: 0 auto;
  font-size: 17px;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.badge-pending {
  background: #fff1b8;
  color: #7a5a00;
}

.badge-confirmed {
  background: #dfeeff;
  color: #1f4a85;
}

.badge-shipped {
  background: #ece4ff;
  color: #5632a3;
}

.badge-done {
  background: #dff5e4;
  color: #255f31;
}

.badge-cancelled {
  background: #ffe3e3;
  color: #912b2b;
}




@media (max-width: 1080px) {
  .hero-shell,
  .service-hero {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .pricing-grid,
  .gallery-grid,
  .highlight-grid,
  .footer-grid,
  .service-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(201, 91, 30, 0.12);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .dropdown {
    width: 100%;
  }


.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



  .detail-grid,
  .pricing-grid,
  .gallery-grid,
  .highlight-grid,
  .footer-grid,
  .service-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .service-copy,
  .info-panel {
    padding: 28px;
  }


  .form-label-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-buy-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .container {
    padding: 0 32px;
  }

  .topbar {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(56, 39, 171, 0.18);
  }

  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 14px;
    min-height: 0;
    padding: 18px 0 20px;
  }

  .nav-logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding: 4px 0;
    line-height: 1.08;
  }

  .nav-logo span {
    display: block;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(95, 75, 216, 0.16);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 44px rgba(26, 20, 100, 0.16);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-link,
  .dropdown > a {
    color: #1a1464;
  }

  .nav-link:hover,
  .dropdown:hover > a {
    color: #3a2a97;
  }

  .nav-link::after,
  .dropdown > a::after {
    background: #5f4bd8;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: #f7f5ff;
    border-color: rgba(95, 75, 216, 0.12);
  }

  .dropdown-menu a {
    color: #4a4570;
    padding: 10px 12px;
  }

  .nav-cart {
    grid-column: 3;
    grid-row: 1;
    margin-left: 0;
    justify-self: end;
    align-self: center;
    min-height: 46px;
    padding: 10px 15px;
    box-shadow: 0 12px 24px rgba(56, 39, 171, 0.18);
  }

  .header-waves svg,
  .footer-waves svg {
    height: 140px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy p {
    max-width: none;
  }

  .hero-trust {
    gap: 12px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .portfolio-card img {
    height: 320px;
  }

  .portfolio-item img {
    height: 420px;
  }

  .portfolio-item.horizontal {
    min-width: 78%;
  }

  .portfolio-item.vertical {
    min-width: 56%;
  }

  .products-slider-wrapper {
    max-width: none;
    margin-top: 28px;
    padding: 0 28px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    top: 34%;
  }

  .slider-btn.left {
    left: 0;
  }

  .slider-btn.right {
    right: 0;
  }

  .shop-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .shop-cat-pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .shop-toolbar-new {
    gap: 12px;
  }

  .shop-toolbar-right {
    flex-wrap: wrap;
  }

  .product-main {
    padding: 36px 0 64px;
  }

  .product-image-wrap {
    min-height: 360px;
    padding: 28px;
  }

  .product-image-wrap img {
    max-height: 300px;
  }

  .product-support {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .product-support-link {
    margin-left: 0;
  }

  .product-desc-section,
  .product-related-section {
    padding: 64px 0;
  }

  .cart-header {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .cart-summary-badges {
    flex-wrap: wrap;
  }

  .checkout-hero-inner {
    align-items: flex-start;
  }

  .checkout-steps {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .checkout-form-section,
  .co-summary-card,
  .contact-form-block {
    padding: 28px;
  }

  .contact-hero-inner {
    gap: 36px;
  }

  .contact-map-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-copy,
  .service-media {
    min-height: 0;
  }

  .service-copy {
    padding: 32px;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thankyou-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 10px;
    row-gap: 12px;
    padding: 16px 0 18px;
  }

  .hamburger {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-cart {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hamburger {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .nav-links {
    padding: 16px 16px 18px;
    border-radius: 24px;
  }

  .header-waves svg,
  .footer-waves svg {
    height: 110px;
  }

  .hero-section {
    padding: 40px 0 48px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust-item {
    width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    height: 250px;
  }

  .portfolio-showcase {
    padding-top: 56px;
  }

  .home-gallery-slider {
    display: block;
    gap: 10px;
  }

  .home-gallery-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: transform 0.18s ease;
    transform: translateY(-50%);
  }

  .home-gallery-btn.left {
    left: 14px;
  }

  .home-gallery-btn.right {
    right: 14px;
  }

  .home-gallery-btn:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.06);
  }

  .home-gallery-btn svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 2px 8px rgba(17, 10, 66, 0.45));
  }

  .au-gallery-slider,
  .vk-gallery-slider {
    position: relative;
    display: block;
  }

  .au-gallery-track-wrap,
  .vk-gallery-track-wrap {
    width: 100%;
    border-radius: 24px;
  }

  .au-gallery-btn,
  .vk-gallery-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%);
  }

  .au-gallery-btn.left,
  .vk-gallery-btn.left {
    left: 10px;
  }

  .au-gallery-btn.right,
  .vk-gallery-btn.right {
    right: 10px;
  }

  .au-gallery-btn svg,
  .vk-gallery-btn svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    filter: drop-shadow(0 2px 8px rgba(17, 10, 66, 0.45));
  }

  .au-gallery-btn:hover,
  .vk-gallery-btn:hover {
    background: transparent;
  }

  .page-auto .portfolio-track,
  .page-vizitkartes .portfolio-track {
    gap: 0;
  }

  .page-auto .portfolio-item.horizontal,
  .page-auto .portfolio-item.vertical,
  .page-vizitkartes .portfolio-item.horizontal,
  .page-vizitkartes .portfolio-item.vertical {
    min-width: 100%;
    overflow: hidden;
    border-radius: 24px;
  }

  .page-auto .portfolio-item img,
  .page-vizitkartes .portfolio-item img {
    height: 360px;
    border-radius: 0;
  }

  .portfolio-item.horizontal,
  .portfolio-item.vertical {
    min-width: 100%;
  }

  .portfolio-item img {
    height: 280px;
  }

  .products-slider-wrapper {
    padding: 0 18px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    top: 30%;
  }

  .product-img {
    height: 220px;
    margin-bottom: 18px;
  }

  .product-img img {
    max-height: 210px;
  }

  .product-name {
    font-size: 18px;
  }

  .home-shop-header {
    gap: 12px;
  }

  .shop-hero {
    padding: 36px 0 42px;
  }

  .shop-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .shop-hero p {
    max-width: none;
  }

  .shop-categories-section {
    padding: 20px 0;
  }

  .shop-categories {
    margin: 0 -20px;
    padding: 0 20px 8px;
  }

  .shop-toolbar-new,
  .shop-toolbar-right {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-search-wrap,
  .shop-sort-select,
  .shop-search-btn,
  .shop-clear-btn {
    width: 100%;
  }

  .shop-product-img {
    height: 220px;
    padding: 18px;
  }

  .cart-section,
  .checkout-main,
  .contact-main-section,
  .thankyou-section {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .cart-item {
    padding: 16px;
  }

  .cart-summary-card {
    padding: 24px;
  }

  .checkout-field-row {
    grid-template-columns: 1fr;
  }

  .checkout-form-section,
  .co-summary-card {
    padding: 22px;
    border-radius: 18px;
  }

  .checkout-step-line {
    width: 28px;
  }

  .co-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
  }

  .co-item-price {
    grid-column: 2;
    text-align: left;
    justify-self: start;
  }

  .co-total-row,
  .co-total-final {
    gap: 12px;
  }

  .contact-hero-section {
    padding: 16px 0 48px;
  }

  .contact-hero-pill {
    width: 100%;
  }

  .contact-map-footer,
  .contact-map-address {
    align-items: flex-start;
  }

  .contact-form-block {
    padding: 22px;
  }

  .service-copy {
    padding: 24px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-section {
    padding: 8px 0 16px;
  }

  .product-image-wrap {
    min-height: 280px;
    padding: 20px;
  }

  .product-image-wrap img {
    max-height: 230px;
  }

  .product-title {
    margin-bottom: 18px;
  }

  .product-price-block,
  .product-stock-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-desc-content {
    padding: 24px;
  }

  .product-support {
    padding: 16px;
  }

  .product-support-link {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-waves {
    margin-bottom: 36px;
  }

  .thankyou-hero,
  .thankyou-order {
    padding: 28px 22px;
  }

  .thankyou-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .products-slider-wrapper {
    padding: 0 14px;
  }

  .shop-categories {
    margin: 0 -16px;
    padding: 0 16px 8px;
  }

  .product-add-btn,
  .co-submit-btn,
  .cart-checkout-btn {
    width: 100%;
  }
}

/* ── COOKIE CONSENT ───────────────────────────────── */

.cookie-consent,
.cookie-manage-btn,
.cookie-modal {
  z-index: 1600;
}

.cookie-consent {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: min(430px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid rgba(95, 75, 216, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 255, 0.96));
  box-shadow: 0 24px 64px rgba(26, 20, 100, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.cookie-consent[hidden],
.cookie-manage-btn[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-consent__glow {
  position: absolute;
  top: -64px;
  right: -48px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 75, 216, 0.18), transparent 72%);
  pointer-events: none;
}

.cookie-consent__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #5f4bd8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cookie-consent__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: currentColor;
}

.cookie-consent h3,
.cookie-modal h3 {
  position: relative;
  color: #1a1464;
  font-size: 31px;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.cookie-consent p,
.cookie-modal__lead,
.cookie-setting__copy p {
  position: relative;
  color: #5d557d;
  font-size: 15px;
  line-height: 1.75;
}

.cookie-consent a {
  color: #3a2a97;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent__actions,
.cookie-modal__actions {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.cookie-consent__actions .cookie-btn {
  width: 100%;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--primary {
  background: linear-gradient(135deg, #5f4bd8 0%, #3a2a97 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(58, 42, 151, 0.24);
}

.cookie-btn--outline {
  border-color: rgba(95, 75, 216, 0.22);
  background: #fff;
  color: #3a2a97;
}

.cookie-btn--ghost {
  background: rgba(255, 212, 0, 0.14);
  color: #1a1464;
  border-color: rgba(255, 212, 0, 0.22);
}

.cookie-manage-btn {
  position: fixed;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(95, 75, 216, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1a1464;
  box-shadow: 0 14px 38px rgba(26, 20, 100, 0.14);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.cookie-modal {
  position: fixed;
  inset: 0;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 16, 0.45);
  backdrop-filter: blur(6px);
}

.cookie-modal__panel {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(760px, calc(100vw - 32px));
  max-height: min(84vh, 820px);
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(95, 75, 216, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(245, 239, 255, 0.97));
  box-shadow: 0 34px 80px rgba(17, 14, 43, 0.28);
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.cookie-modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(95, 75, 216, 0.08);
  color: #5f4bd8;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.cookie-settings {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.cookie-setting {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(95, 75, 216, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.cookie-setting.is-locked {
  background: rgba(95, 75, 216, 0.06);
}

.cookie-setting__copy strong {
  display: block;
  margin-bottom: 6px;
  color: #1a1464;
  font-size: 18px;
}

.cookie-setting__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 129, 75, 0.14);
  color: #1f7a40;
  font-size: 12px;
  font-weight: 800;
}

.cookie-switch {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  width: 58px;
  height: 34px;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-switch__slider {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(95, 75, 216, 0.18);
  transition: background 0.2s ease;
}

.cookie-switch__slider::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(22, 19, 16, 0.18);
  transition: transform 0.22s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: linear-gradient(135deg, #5f4bd8 0%, #3a2a97 100%);
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  transform: translateX(24px);
}

.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .cookie-consent,
  .cookie-manage-btn {
    left: 16px;
    bottom: 16px;
  }

  .cookie-consent {
    width: calc(100vw - 32px);
    padding: 20px;
    border-radius: 24px;
  }

  .cookie-modal__panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .cookie-setting,
  .cookie-modal__header,
  .cookie-modal__actions,
  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
