/*
Theme Name: PrintLume
Theme URI: https://printlume.hu
Author: PrintLume
Author URI: https://printlume.hu
Description: Prémium sötét WordPress téma a PrintLume.hu 3D nyomtatott ajándék webshophoz. WooCommerce kompatibilis, türkiz akcentszínnel, üveges panelekkel és modern one-page élménnyel. Lithophane lámpák, névre szóló dekorok, egyedi 3D figurák és személyre szabott ajándékok bemutatására tervezve.
Version: 1.6.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: printlume
Tags: dark, e-commerce, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, theme-options, translation-ready, woocommerce

PrintLume WordPress Theme - Prémium 3D Ajándék Webshop
*/

/* ============================
   0. CSS CUSTOM PROPERTIES
   ============================ */
:root {
  /* Background */
  --bg: #090a0d;
  --bg-2: #0f1218;

  /* Surfaces */
  --surface: rgba(255,255,255,0.05);
  --surface-strong: rgba(255,255,255,0.08);
  --surface-soft: rgba(255,255,255,0.03);

  /* Text */
  --text: #f5f7fc;
  --text-secondary: #c8d0e4;
  --muted: #a9b2c5;

  /* Lines */
  --line: rgba(255,255,255,0.08);
  --line-light: rgba(255,255,255,0.06);

  /* Türkiz primary palette */
  --primary: #00d4aa;
  --primary-2: #5df0d0;
  --primary-3: #00b892;
  --primary-glow: rgba(0,212,170,0.30);
  --primary-soft: rgba(0,212,170,0.14);
  --primary-faint: rgba(0,212,170,0.08);
  --primary-text: #b0ffe6;
  --primary-text-soft: #d0fff2;
  --primary-dark: #00856a;

  /* Semantic */
  --success: #9ae2be;
  --danger: #ffb4a7;
  --warning: #ffd27f;

  /* Radius */
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-xs: 8px;

  /* Shadows */
  --shadow-xl: 0 30px 90px rgba(0,0,0,0.34);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.28);
  --shadow-md: 0 22px 48px rgba(0,0,0,0.22);
  --shadow-sm: 0 12px 24px rgba(0,0,0,0.16);
  --shadow-primary: 0 18px 36px rgba(0,212,170,0.22);

  /* Layout */
  --maxw: 1280px;
  --nav-h: 84px;

  /* Transition */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}


/* ============================
   1. RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  animation: pageEnter .6s var(--ease-out);
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Atmospheric background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,212,170,0.10), transparent 25%),
    radial-gradient(circle at 82% 14%, rgba(93,240,208,0.06), transparent 22%),
    radial-gradient(circle at 72% 76%, rgba(0,184,146,0.06), transparent 22%),
    linear-gradient(180deg, #090a0d 0%, #0d1117 48%, #090b0f 100%);
}

/* Subtle grid overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

a:hover { color: var(--primary); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(44px, 7vw, 88px); line-height: 0.95; letter-spacing: -0.055em; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.02; letter-spacing: -0.045em; }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

p {
  margin: 0 0 1em;
  line-height: 1.75;
}

ul, ol { padding-left: 1.5em; }

::selection {
  background: rgba(0,212,170,0.30);
  color: #fff;
}

/* Focus-visible for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 8px;
}

.pill:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px var(--primary-faint);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-faint);
}

summary:focus-visible {
  outline-offset: -2px;
}

/* Remove outline for mouse clicks */
:focus:not(:focus-visible) {
  outline: none;
}


/* ============================
   2. LAYOUT UTILITIES
   ============================ */
.container {
  width: min(calc(100% - 32px), var(--maxw));
  margin: 0 auto;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.alignwide { max-width: calc(var(--maxw) + 120px); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }


/* ============================
   3. SCROLL PROGRESS BAR
   ============================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1200;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-3), var(--primary), var(--primary-2));
  box-shadow: 0 0 18px var(--primary-glow);
  transition: width 60ms linear;
}


/* ============================
   4. TOPBAR / NAVIGATION
   ============================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9,11,15,0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line-light);
  transition: background .3s ease;
}

.topbar.scrolled {
  background: rgba(9,11,15,0.88);
}

.topbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: width .5s var(--ease);
  pointer-events: none;
}

.topbar.scrolled::after {
  width: min(80%, 600px);
}

.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand:hover { color: var(--text); }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(140deg, rgba(0,212,170,0.92), rgba(0,184,146,0.55));
  position: relative;
  box-shadow: 0 14px 28px var(--primary-glow);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.30);
}

.brand-mark::after {
  inset: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.16);
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo-link img {
  max-height: 44px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-family: "DM Sans", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 2px;
  font-weight: 500;
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.desktop-menu li {
  list-style: none;
}

.desktop-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  color: #dbe2f3;
  opacity: 0.86;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}

.desktop-menu a:hover,
.desktop-menu .current-menu-item > a,
.desktop-menu .current_page_item > a {
  opacity: 1;
  color: var(--primary-text);
  background: var(--primary-faint);
}

/* Sub-menus */
.desktop-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(15,18,24,0.95);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
  z-index: 100;
  list-style: none;
}

.desktop-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.desktop-menu .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.desktop-menu > li {
  position: relative;
}

/* Nav CTA area */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Cart icon in nav */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease;
}

.nav-cart:hover {
  border-color: rgba(0,212,170,0.30);
  background: var(--primary-faint);
  color: var(--primary);
}

.nav-cart svg {
  width: 20px;
  height: 20px;
}

.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #090a0d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}


/* ============================
   5. PILL BUTTONS
   ============================ */
.pill {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease, background .3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.pill:hover {
  transform: translateY(-2px);
  color: inherit;
}

.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.30) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  z-index: -1;
}

.pill:hover::after {
  transform: translateX(120%);
}

.pill.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #060d0a;
  box-shadow: var(--shadow-primary);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease, background-position .5s ease;
}

.pill.primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 22px 44px rgba(0,212,170,0.30);
  color: #060d0a;
}

.pill.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.pill.secondary:hover {
  border-color: rgba(0,212,170,0.30);
  background: var(--primary-faint);
  color: var(--primary-text);
}

.pill.outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text-secondary);
}

.pill.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}


/* ============================
   6. MOBILE NAVIGATION
   ============================ */
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: border-color .25s ease;
}

.mobile-toggle:hover {
  border-color: rgba(0,212,170,0.30);
}

.mobile-menu {
  display: none;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease), padding .4s var(--ease);
  padding: 0;
  overflow: hidden;
}

@media (max-width: 760px) {
  .mobile-menu {
    display: grid;
  }
}

.mobile-menu > .mobile-panel {
  overflow: hidden;
}

.mobile-menu.active {
  grid-template-rows: 1fr;
  padding: 0 0 18px;
}

.mobile-panel {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.mobile-panel a,
.mobile-panel li {
  list-style: none;
}

.mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line-light);
  color: #e8ecf8;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease;
}

.mobile-panel a:hover {
  background: var(--primary-faint);
  border-color: rgba(0,212,170,0.20);
  color: var(--primary-text);
}

/* WP menu reset */
.mobile-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-panel .sub-menu {
  padding-left: 12px;
  margin-top: 4px;
}


/* ============================
   7. HERO SECTION
   ============================ */
.hero {
  position: relative;
  padding: 42px 0 54px;
  overflow: hidden;
  z-index: 2;
}

.hero-grid {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary-text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  box-shadow: 0 0 0 8px var(--primary-faint);
  flex-shrink: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-text-soft) 32%, var(--primary-2) 56%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShimmer 4s ease-in-out infinite;
}

@keyframes gradientShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  max-width: 650px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  flex-shrink: 0;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #cdd5e6;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.hero-scroll::before {
  content: "";
  width: 24px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.hero-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
  animation: scrollDot 2s ease-in-out infinite;
  margin-left: 9px;
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: border-color .3s ease, transform .3s var(--ease);
}

.metric:hover {
  border-color: rgba(0,212,170,0.20);
  transform: translateY(-2px);
}

.metric strong {
  display: block;
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--primary-text);
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  animation: float 9s ease-in-out infinite;
}

.orb.one {
  width: 340px;
  height: 340px;
  right: 50px;
  top: 40px;
  background: radial-gradient(circle at 35% 35%, rgba(176,255,230,0.70), rgba(0,212,170,0.10) 68%, transparent 72%);
}

.orb.two {
  width: 240px;
  height: 240px;
  left: 30px;
  bottom: 92px;
  background: radial-gradient(circle at 50% 50%, rgba(0,212,170,0.26), rgba(0,184,146,0.02) 72%, transparent 78%);
  animation-duration: 12s;
}

.scene-shell {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 0.92 / 1;
  border-radius: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: perspective(1400px) rotateY(-10deg) rotateX(5deg);
  transition: transform .25s ease;
}

.scene-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(93,240,208,0.40), rgba(255,255,255,0.14), rgba(0,212,170,0.40));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

.scene-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.16), transparent 26%, transparent 64%, rgba(255,255,255,0.10));
  pointer-events: none;
  z-index: 1;
}

.scene-inner {
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 76% 14%, rgba(0,212,170,0.12), transparent 20%),
    linear-gradient(180deg, rgba(15,17,24,0.95), rgba(10,12,17,0.92));
  overflow: hidden;
}

.floating-card,
.floating-card-two,
.floating-card-three {
  position: absolute;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 42px rgba(0,0,0,0.24);
  overflow: hidden;
}

.floating-card {
  width: 58%; height: 44%; left: 8%; top: 10%;
  transform: rotate(-7deg);
  animation: cardFloat 7s ease-in-out infinite;
}

.floating-card-two {
  width: 42%; height: 30%; right: 8%; top: 12%;
  animation: cardFloat 8s ease-in-out infinite reverse;
}

.floating-card-three {
  width: 68%; height: 41%; right: 7%; bottom: 8%;
  transform: rotate(8deg);
  animation: cardFloat 9s ease-in-out infinite;
}

.product-scene,
.name-scene,
.figure-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

/* Litho moon */
.litho-moon {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255,255,255,0.98), rgba(208,255,242,0.90) 28%, rgba(93,240,208,0.50) 52%, rgba(0,212,170,0.10) 74%, transparent 78%),
    radial-gradient(circle at 66% 62%, rgba(255,255,255,0.32), transparent 14%),
    radial-gradient(circle at 44% 50%, rgba(255,255,255,0.24), transparent 11%);
  box-shadow: 0 0 88px rgba(93,240,208,0.36);
}

.litho-moon::before,
.litho-moon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.20);
}

.litho-moon::before { width: 30px; height: 30px; top: 40px; left: 42px; }
.litho-moon::after { width: 20px; height: 20px; right: 40px; bottom: 36px; }
.litho-moon { position: relative; }

.pedestal {
  width: 186px;
  height: 16px;
  border-radius: 999px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(0,212,170,0.28), rgba(93,240,208,0.72), rgba(0,212,170,0.28));
  box-shadow: 0 0 48px rgba(0,212,170,0.20);
}

.nameplate {
  width: 82%;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 28px rgba(0,0,0,0.18);
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: 0.16em;
  color: var(--primary-text-soft);
  text-transform: uppercase;
}

.mini-figures {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
}

.mini-figures span {
  width: 50px;
  height: 122px;
  border-radius: 999px 999px 26px 26px;
  background: linear-gradient(180deg, rgba(208,255,242,0.92), rgba(0,212,170,0.42));
  box-shadow: 0 14px 26px rgba(0,212,170,0.12);
}

.mini-figures span:nth-child(2) { height: 150px; }

.glass-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  z-index: 2;
}

.glass-info strong { display: block; font-size: 16px; margin-bottom: 6px; }
.glass-info span,
.glass-info small { color: var(--muted); font-size: 13px; line-height: 1.5; }


/* ============================
   8. RIBBON / MARQUEE
   ============================ */
.ribbon {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

.ribbon-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: #edf2ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ribbon-chip strong {
  color: var(--primary-text);
  font-weight: 800;
  margin-right: 8px;
}


/* ============================
   9. SECTIONS (GENERIC)
   ============================ */
.section {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), rgba(0,212,170,0.18), rgba(255,255,255,0.10), transparent);
  opacity: 0.75;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.section-desc {
  color: var(--muted);
  max-width: 640px;
  font-size: 17px;
  line-height: 1.82;
  margin-top: 16px;
}

.section-desc,
.category-card h3,
.category-card p,
.story-item h4,
.story-item p,
.feature-box h4,
.feature-box p,
.step h3,
.step p,
.pricing-card h3,
.pricing-card p,
.testimonial p,
.cta-box p,
.contact-panel p,
.faq-content,
.post-card h3,
.post-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* ============================
   10. GLASS CARD BASE
   ============================ */
.glass-card {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,170,0.24);
  box-shadow: var(--shadow-md);
}

/* Mouse-follow glow effect on cards */
.glass-card::before,
.category-card::before,
.story-card::before,
.story-card-dark::before,
.step::before,
.product-large::before,
.stack-card::before,
.pricing-card::before,
.testimonial::before,
.cta-box::before,
.contact-panel::before,
.faq-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0,212,170,0.12), transparent 42%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover::before,
.category-card:hover::before,
.story-card:hover::before,
.story-card-dark:hover::before,
.step:hover::before,
.product-large:hover::before,
.stack-card:hover::before,
.pricing-card:hover::before,
.testimonial:hover::before,
.cta-box:hover::before,
.contact-panel:hover::before,
.faq-wrap:hover::before {
  opacity: 1;
}


/* ============================
   11. CATEGORY CARDS
   ============================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}

.category-card {
  position: relative;
  min-height: 290px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,170,0.28);
  box-shadow: var(--shadow-md);
}

.icon-shell {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.category-card h3 { font-size: 22px; margin-bottom: 0; }
.category-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ghost-shape {
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  border-radius: 30px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), rgba(0,212,170,0.06) 45%, transparent 72%);
  transform: rotate(20deg);
}


/* ============================
   12. STORY / FEATURE SECTION
   ============================ */
.story-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 20px;
  margin-top: 28px;
}

.story-card,
.story-card-dark,
.product-large,
.stack-card,
.pricing-card,
.testimonial,
.cta-box,
.contact-panel,
.faq-wrap {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.story-card-dark {
  background: linear-gradient(180deg, rgba(0,212,170,0.08), rgba(255,255,255,0.03));
}

.story-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.story-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .3s ease;
}

.story-item:hover {
  border-color: rgba(0,212,170,0.18);
}

.num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(93,240,208,0.18), rgba(0,212,170,0.08));
  border: 1px solid rgba(93,240,208,0.14);
  color: var(--primary-text);
  font-weight: 800;
  font-size: 18px;
}

.story-item h4 { margin: 0; font-size: 18px; }
.story-item p,
.step p,
.feature-box p,
.product-large p,
.stack-card p,
.pricing-card p,
.testimonial p,
.cta-box p,
.contact-panel p,
.faq-content {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-box {
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .3s ease, transform .3s var(--ease);
}

.feature-box:hover {
  border-color: rgba(0,212,170,0.18);
  transform: translateY(-2px);
}

.feature-box h3 { font-size: 18px; }


/* ============================
   13. PROCESS TRACK
   ============================ */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,170,0.22);
}

.step-index {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,212,170,0.20), rgba(93,240,208,0.10));
  border: 1px solid rgba(93,240,208,0.14);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--primary-text);
}

.step::after,
.pricing-card::after,
.cta-box::after,
.contact-panel::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -24px;
  bottom: -30px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,212,170,0.10), transparent 72%);
}


/* ============================
   14. SHOWCASE / PRODUCTS
   ============================ */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  margin-top: 30px;
}

.product-large { min-height: 540px; }
.product-stack { display: grid; gap: 18px; }

.render-frame {
  margin-top: 20px;
  min-height: 300px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7,9,13,0.95), rgba(13,15,20,0.88));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.render-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(0,212,170,0.10), transparent 28%),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
}

.render-line {
  position: absolute;
  width: 120%;
  left: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: scan 5.8s linear infinite;
}

.render-line:nth-child(2) { animation-delay: 2s; }
.render-line:nth-child(3) { animation-delay: 4s; }

.lamp-hero {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.96), rgba(208,255,242,0.90) 26%, rgba(93,240,208,0.50) 46%, rgba(0,212,170,0.12) 64%, transparent 68%),
    radial-gradient(circle at 68% 62%, rgba(255,255,255,0.28), transparent 16%);
  box-shadow: 0 0 110px rgba(93,240,208,0.30);
}

.lamp-base {
  width: 190px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,212,170,0.24), rgba(93,240,208,0.68), rgba(0,212,170,0.24));
  margin: 18px auto 0;
}

.mini-name {
  width: 84%;
  height: 92px;
  border-radius: 22px;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--primary-text-soft);
}

.tri-figures {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 18px;
  margin-top: 16px;
}

.tri-figures span {
  width: 56px;
  height: 124px;
  border-radius: 999px 999px 30px 30px;
  background: linear-gradient(180deg, rgba(208,255,242,0.92), rgba(0,212,170,0.42));
  box-shadow: 0 18px 30px rgba(0,212,170,0.12);
}

.tri-figures span:nth-child(2) { height: 160px; }


/* ============================
   15. PRICING CARDS
   ============================ */
.pricing-grid,
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.pricing-card {
  min-height: 400px;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.pop {
  transform: translateY(-10px);
  border-color: rgba(0,212,170,0.28);
  box-shadow: 0 24px 46px rgba(0,212,170,0.10);
}

.pricing-card.pop:hover {
  transform: translateY(-14px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(93,240,208,0.14);
  color: var(--primary-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 700;
}

.price {
  font-family: "Outfit", "Space Grotesk", sans-serif;
  font-size: 48px;
  line-height: 1;
  margin: 14px 0 8px;
  letter-spacing: -0.04em;
}

.price small {
  font-size: 16px;
  color: var(--muted);
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 600;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ecf0f8;
  font-size: 15px;
}

.pricing-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  flex-shrink: 0;
}

/* Featured product card variant */
.pricing-card--product {
  display: flex;
  flex-direction: column;
}

.pricing-card--product .pricing-card__action {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
}

/* Akció badge – top left corner */
.badge--corner {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0 0 16px 0;
  padding: 10px 16px;
  z-index: 3;
}

/* Sale price: del smaller, ins no underline */
.pricing-card--product .price del {
  font-size: 18px;
  color: var(--muted);
  opacity: .5;
  font-weight: 500;
}
.pricing-card--product .price ins {
  text-decoration: none;
  color: var(--primary);
}


/* ============================
   16. TESTIMONIALS
   ============================ */
.testimonial {
  transition: transform .35s var(--ease), border-color .35s ease;
  padding-top: 48px;
}

.testimonial::after {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  color: var(--primary-faint);
  pointer-events: none;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,170,0.20);
}

.testimonial:hover::after {
  color: var(--primary-soft);
}

.stars {
  letter-spacing: 0.14em;
  color: var(--warning);
  margin-bottom: 14px;
}

.who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-weight: 700;
  color: #eef3ff;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,212,170,0.18), rgba(93,240,208,0.10));
  border: 1px solid var(--line);
  flex-shrink: 0;
}


/* ============================
   17. CTA / CONTACT SECTION
   ============================ */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
  margin-top: 30px;
}

.cta-box {
  min-height: 440px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,212,170,0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.cta-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.cta-list div {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: #eef3ff;
  transition: border-color .3s ease;
}

.cta-list div:hover {
  border-color: rgba(0,212,170,0.18);
}

.cta-list strong {
  display: block;
  margin-bottom: 6px;
}


/* ============================
   18. FORMS
   ============================ */
.mock-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mock-form .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.mock-input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea {
  min-height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
}

textarea {
  min-height: 136px;
  padding: 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0,212,170,0.40);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.10);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
}


/* ============================
   19. FAQ
   ============================ */
.faq-wrap {
  margin-top: 48px;
}

.faq-items {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

details {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

details:hover,
details[open] {
  border-color: rgba(0,212,170,0.18);
}

details[open] {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  position: relative;
  font-weight: 700;
  color: #eef3ff;
  transition: color .25s ease;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .35s var(--ease);
}

details[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.faq-content {
  padding: 0 20px 20px;
  animation: faqReveal .4s var(--ease-out);
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================
   20. FOOTER
   ============================ */
/* ============================
   FOOTER v2.0
   ============================ */
.site-footer {
  padding:0 0 40px;
  color:#acb3c5;
  position:relative;
  z-index:2;
  margin-top:clamp(48px,6vw,80px);
}

/* Top row: brand + columns */
.pl-footer-top {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,2fr);
  gap:clamp(32px,4vw,56px);
  padding:clamp(32px,4vw,48px);
  border-radius:28px 28px 0 0;
  background:var(--surface);
  border:1px solid var(--line);
  border-bottom:none;
}

/* Brand */
.pl-footer-brand {
  display:flex;flex-direction:column;gap:14px;
}
.pl-footer-logo img { max-height:36px;width:auto; }
.pl-footer-name {
  font-family:"Outfit",sans-serif;font-size:22px;font-weight:800;
  color:var(--text);letter-spacing:-.02em;
}
.pl-footer-desc {
  color:var(--text-secondary);font-size:14px;line-height:1.7;margin:0;max-width:320px;
}

/* Social icons */
.pl-footer-social {
  display:flex;gap:8px;margin-top:4px;
}
.pl-footer-social a {
  width:40px;height:40px;display:grid;place-items:center;
  border-radius:12px;background:var(--bg-2);border:1px solid var(--line);
  color:var(--muted);font-size:16px;
  transition:all .25s ease;
}
.pl-footer-social a:hover {
  border-color:rgba(0,212,170,.30);background:var(--primary-faint);
  color:var(--primary);transform:translateY(-2px);
}

/* Footer columns */
.pl-footer-columns {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:28px;
}
.pl-footer-col .widget { margin:0; }
.pl-footer-col .widget + .widget { margin-top:20px; }
.pl-footer-col .widget-title,
.pl-footer-col h4 {
  font-family:"Outfit",sans-serif;font-size:14px;font-weight:800;
  color:var(--text);margin:0 0 14px;text-transform:uppercase;letter-spacing:.06em;
}
.pl-footer-col ul {
  list-style:none;margin:0;padding:0;display:grid;gap:10px;
}
.pl-footer-col li {
  margin:0;font-size:14px;color:var(--text-secondary);
  display:flex;align-items:center;gap:8px;
}
.pl-footer-col li i {
  color:var(--primary);font-size:13px;width:16px;text-align:center;flex-shrink:0;
}
.pl-footer-col a {
  color:var(--text-secondary);transition:color .25s ease;
}
.pl-footer-col a:hover { color:var(--primary); }

/* Badges row */
.pl-footer-badges {
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;
  padding:20px clamp(24px,3vw,48px);
  background:var(--bg-2);
  border-left:1px solid var(--line);border-right:1px solid var(--line);
}
.pl-footer-badges span {
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 16px;border-radius:999px;
  background:rgba(255,255,255,.03);border:1px solid var(--line);
  color:var(--text-secondary);font-size:13px;font-weight:600;
}
.pl-footer-badges span i { color:var(--primary);font-size:14px; }

/* Bottom bar */
.pl-footer-bottom {
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding:20px clamp(24px,3vw,48px);
  border-radius:0 0 28px 28px;
  background:var(--surface);
  border:1px solid var(--line);border-top:1px solid var(--line);
  font-size:13px;color:#7a8299;
}

/* Legal menu */
.pl-footer-legal {
  display:flex;flex-wrap:wrap;gap:16px;list-style:none;padding:0;margin:0;
}
.pl-footer-legal li { list-style:none; }
.pl-footer-legal a {
  color:#7a8299;font-size:13px;transition:color .25s ease;
}
.pl-footer-legal a:hover { color:var(--primary); }

/* Payment icons */
.pl-footer-payment {
  display:flex;gap:10px;font-size:22px;color:var(--muted);
}
.pl-footer-payment i { transition:color .25s ease; }
.pl-footer-payment i:hover { color:var(--primary); }

/* Responsive */
@media (max-width:782px) {
  .pl-footer-top {
    grid-template-columns:1fr;
    padding:28px 20px;border-radius:20px 20px 0 0;
  }
  .pl-footer-columns { grid-template-columns:1fr 1fr;gap:20px; }
  .pl-footer-bottom { flex-direction:column;align-items:flex-start;gap:12px;padding:18px 20px;border-radius:0 0 20px 20px; }
}
@media (max-width:480px) {
  .pl-footer-columns { grid-template-columns:1fr; }
}

/* Legacy compat */
.footer-social {
  display:flex;gap:8px;
}
.footer-social a {
  width:38px;height:38px;display:grid;place-items:center;
  border-radius:12px;background:var(--bg-2);border:1px solid var(--line);
  color:var(--muted);font-size:15px;transition:all .25s ease;
}
.footer-social a:hover {
  border-color:rgba(0,212,170,.30);background:var(--primary-faint);color:var(--primary);
}

.home-widget-zone .home-widget-zone__grid {
  display: grid;
  gap: 16px;
}

.home-widget-zone .home-widget {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.home-widget-zone .home-widget .widget-title {
  margin: 0 0 10px;
}

.home-widget-zone .home-widget p:last-child {
  margin-bottom: 0;
}

/* ============================
   21. REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children inside reveal grids */
.reveal.visible > .category-card,
.reveal.visible > .step,
.reveal.visible > .pricing-card,
.reveal.visible > .testimonial,
.reveal.visible > .feature-box,
.reveal.visible > .story-item {
  animation: staggerIn .6s var(--ease-out) both;
}

.reveal.visible > :nth-child(1) { animation-delay: 0s; }
.reveal.visible > :nth-child(2) { animation-delay: .08s; }
.reveal.visible > :nth-child(3) { animation-delay: .16s; }
.reveal.visible > :nth-child(4) { animation-delay: .24s; }

@keyframes staggerIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================
   22. KEYFRAME ANIMATIONS
   ============================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes scan {
  0% { top: 18%; opacity: 0; }
  15% { opacity: 1; }
  50% { opacity: .85; }
  100% { top: 90%; opacity: 0; }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(-8px); opacity: .85; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Button ripple effect */
.pl-ripple {
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: plRipple .6s ease-out;
  pointer-events: none;
}

@keyframes plRipple {
  to { transform: scale(20); opacity: 0; }
}


/* ============================
   23. WORDPRESS CONTENT
   ============================ */
.entry-content {
  max-width: 780px;
  margin: 0 auto;
}

.entry-content > *:not(.alignwide):not(.alignfull) {
  max-width: 780px;
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--primary-2);
}

.entry-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--surface);
  border-radius: 0 18px 18px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.entry-content code {
  background: var(--surface-strong);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
}

.entry-content pre {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  overflow-x: auto;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.entry-content th {
  background: var(--surface);
  font-weight: 700;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* WordPress Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}


/* ============================
   24. PAGE TEMPLATES
   ============================ */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.page-header .section-desc {
  margin: 16px auto 0;
  text-align: center;
}

.page-content {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}

/* Single Post */
.single-post-header {
  padding: 120px 0 40px;
  position: relative;
  z-index: 2;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.post-meta a {
  color: var(--primary);
}

.post-thumbnail {
  margin: 24px 0 40px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
}

.printlume-related-posts {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.printlume-related-posts h3 {
  margin: 8px 0 0;
}

.printlume-related-posts .post-grid {
  margin-top: 20px;
}

/* Archive */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.post-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,170,0.24);
}

.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.05);
}

.post-card-body {
  padding: 22px;
}

.post-card-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.post-card-body h3 a:hover {
  color: var(--primary);
}

.post-card-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  transition: all .25s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--primary-soft);
  border-color: rgba(0,212,170,0.30);
  color: var(--primary-text);
}

/* Comments */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.comment .children {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--line);
  list-style: none;
}

.comment-respond {
  margin-top: 32px;
}

/* 404 Page */
.error-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.error-404 h1 {
  font-size: clamp(80px, 12vw, 180px);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* Floating shapes visual */
.error-404-visual {
  position: relative;
  width: 200px;
  height: 160px;
  margin: 0 auto -40px;
}
.error-404-shape {
  position: absolute;
  background: var(--primary-faint);
  border: 1px solid rgba(0,212,170,0.14);
  animation: pl404Float 4s ease-in-out infinite;
}
.error-404-shape--1 {
  width: 48px; height: 48px; border-radius: 50%;
  top: 10px; left: 20px;
  animation-duration: 3.5s;
}
.error-404-shape--2 {
  width: 28px; height: 28px; border-radius: 10px;
  top: 60px; right: 30px;
  animation-duration: 4.5s; animation-delay: .5s;
  background: var(--primary-soft);
}
.error-404-shape--3 {
  width: 18px; height: 18px; border-radius: 50%;
  bottom: 20px; left: 50px;
  animation-duration: 3s; animation-delay: 1s;
}
.error-404-shape--4 {
  width: 36px; height: 36px; border-radius: 14px;
  top: 20px; right: 10px;
  animation-duration: 5s; animation-delay: .3s;
  transform: rotate(20deg);
}
.error-404-shape--5 {
  width: 14px; height: 14px; border-radius: 50%;
  top: 80px; left: 10px;
  animation-duration: 3.8s; animation-delay: .8s;
  background: var(--primary-soft);
}

@keyframes pl404Float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

/* Popular products on 404 */
.error-404-products {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
}
.error-404-products h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.error-404-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.error-404-product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: all .3s var(--ease);
}
.error-404-product-card:hover {
  border-color: rgba(0,212,170,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}
.error-404-product-card__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.error-404-product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.error-404-product-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.error-404-product-card__price {
  font-family: "Outfit", sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--primary);
}
.error-404-product-card__price del {
  font-size: 12px; color: var(--muted); opacity: .5;
}
.error-404-product-card__price ins { text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-scroll::after,
  .orb,
  .floating-card,
  .floating-card-two,
  .floating-card-three {
    animation: none !important;
  }
}


/* ============================
   25. SIDEBAR & WIDGETS
   ============================ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.sidebar .widget {
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.sidebar .widget-title {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--primary-text);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}

.sidebar li:last-child { border-bottom: none; }

.sidebar a {
  color: var(--text-secondary);
}

.sidebar a:hover {
  color: var(--primary);
}


/* ============================
   26. RESPONSIVE
   ============================ */
@media (max-width: 1180px) {
  .desktop-menu { display: none; }
  .mobile-toggle { display: inline-flex; }

  .hero-grid,
  .story-grid,
  .showcase-grid,
  .cta-grid { grid-template-columns: 1fr; }

  .hero-visual { min-height: 560px; }

  .category-grid,
  .process-track,
  .pricing-grid,
  .testimonials { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .feature-list { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .content-sidebar-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav { min-height: 76px; }
  .nav-cta .pill.secondary { display: none; }

  .hero { padding-top: 24px; }
  .hero-grid { min-height: auto; gap: 24px; }
  .hero-visual { min-height: 420px; }
  .scene-shell { transform: none; }

  .metrics,
  .category-grid,
  .process-track,
  .pricing-grid,
  .testimonials,
  .showcase-grid,
  .cta-grid,
  .feature-list,
  .mock-form .row { grid-template-columns: 1fr; }

  .section { padding: 58px 0; }
  .section-head,
  .footer-box { display: block; }
  .footer-links,
  .footer-menu { margin-top: 14px; }
  .footer-widgets { margin-top: 14px; }
  .footer-widgets-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .price { font-size: 40px; }
  .metric strong { font-size: 22px; }

  .floating-card { width: 62%; }
  .floating-card-two { width: 46%; }
  .floating-card-three { width: 72%; }

  .post-grid { grid-template-columns: 1fr; }

  .page-header { padding: 80px 0 40px; }
}


/* ============================
   22. CUSTOMIZER / SITEWIDE ENHANCEMENTS
   ============================ */
.printlume-announcement {
  position: relative;
  z-index: 1005;
  background: linear-gradient(90deg, rgba(0,212,170,0.16), rgba(255,255,255,0.06));
  border-bottom: 1px solid var(--line);
}

.printlume-announcement-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--text);
  font-size: 14px;
}

.printlume-announcement-inner p { margin: 0; }
.printlume-announcement-inner .pill { padding: 8px 14px; min-height: auto; }
.printlume-announcement-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand .footer-description {
  color: var(--text-secondary);
  max-width: 560px;
}

.footer-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-meta-chips span,
.printlume-shop-usp span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.3;
}

.printlume-shop-usp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.printlume-shop-usp span::before,
.footer-meta-chips span::before {
  content: "•";
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.contact-detail-block {
  white-space: pre-line;
}

.contact-panel .contact-shortcode-wrap {
  margin-top: 20px;
}

/* Contact form submit button */
.contact-shortcode-wrap input[type="submit"],
.contact-shortcode-wrap button[type="submit"],
.contact-shortcode-wrap .wpcf7-submit,
.contact-shortcode-wrap .wpforms-submit,
.contact-shortcode-wrap .forminator-button-submit {
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  width:100%;min-height:56px;padding:16px 32px;
  border-radius:16px;border:none;cursor:pointer;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#060d0a;font-weight:800;font-size:16px;
  font-family:"Outfit",sans-serif;letter-spacing:0;
  box-shadow:0 8px 28px rgba(0,212,170,0.22);
  transition:all .3s var(--ease);
}
.contact-shortcode-wrap input[type="submit"]:hover,
.contact-shortcode-wrap button[type="submit"]:hover,
.contact-shortcode-wrap .wpcf7-submit:hover,
.contact-shortcode-wrap .wpforms-submit:hover {
  transform:translateY(-2px);
  box-shadow:0 14px 40px rgba(0,212,170,0.30);
}

/* Contact form inputs */
.contact-shortcode-wrap input[type="text"],
.contact-shortcode-wrap input[type="email"],
.contact-shortcode-wrap input[type="tel"],
.contact-shortcode-wrap input[type="url"],
.contact-shortcode-wrap textarea,
.contact-shortcode-wrap select {
  width:100%;padding:14px 18px;border-radius:14px;
  border:1px solid var(--line);background:var(--bg-2);
  color:var(--text);font-family:inherit;font-size:15px;
  transition:border-color .25s ease,box-shadow .25s ease;
}
.contact-shortcode-wrap input:focus,
.contact-shortcode-wrap textarea:focus,
.contact-shortcode-wrap select:focus {
  border-color:rgba(0,212,170,.50);
  box-shadow:0 0 0 3px rgba(0,212,170,.10);
  outline:none;
}
.contact-shortcode-wrap label {
  display:block;margin-bottom:6px;font-weight:600;font-size:13px;color:var(--text-secondary);
}

@media (max-width: 767px) {
  .printlume-announcement-inner {
    min-height: auto;
    padding: 12px 40px 12px 0;
    flex-wrap: wrap;
  }

  .printlume-announcement-close {
    right: 6px;
  }
}


/* ============================
   16. FLOATING CTA
   ============================ */
.printlume-floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1010;
  display: grid;
  gap: 8px;
  max-width: min(360px, calc(100vw - 24px));
  padding: 16px 18px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15,18,24,0.96), rgba(9,10,13,0.96)),
    linear-gradient(135deg, rgba(0,212,170,0.18), rgba(255,255,255,0));
  border: 1px solid rgba(0,212,170,0.20);
  box-shadow: 0 24px 64px rgba(0,0,0,0.34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.printlume-floating-cta.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  animation: plFloatingPulse 3s ease-in-out 1.5s infinite;
}

@keyframes plFloatingPulse {
  0%, 100% { box-shadow: 0 24px 64px rgba(0,0,0,0.34), 0 0 0 0 rgba(0,212,170,0); }
  50% { box-shadow: 0 24px 64px rgba(0,0,0,0.34), 0 0 0 6px rgba(0,212,170,0.08); }
}
.printlume-floating-cta.is-closing {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  pointer-events: none;
}
.printlume-floating-cta__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.printlume-floating-cta__eyebrow {
  padding-right: 26px;
  color: var(--primary-text-soft, #d0fff2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.printlume-floating-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #031511;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0,212,170,0.22);
}
.printlume-floating-cta__button:hover {
  transform: translateY(-1px);
}
.printlume-floating-cta__button svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .printlume-floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
    padding: 14px 14px 14px;
    border-radius: 18px;
  }

  .printlume-floating-cta__button {
    justify-content: center;
    width: 100%;
  }
}


/* ============================
   17. SEARCH FORM
   ============================ */
.pl-search {
  width: 100%;
  max-width: 540px;
}
.pl-search__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 5px 5px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.pl-search__wrap:focus-within {
  border-color: rgba(0,212,170,.45);
  box-shadow: 0 0 0 4px rgba(0,212,170,.08);
}
.pl-search__icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  opacity: .55;
  transition: opacity .25s ease;
}
.pl-search__wrap:focus-within .pl-search__icon {
  opacity: 1;
  color: var(--primary);
}
.pl-search__input {
  flex: 1;
  min-width: 0;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.pl-search__input::placeholder {
  color: var(--text-secondary);
  opacity: .6;
}
.pl-search__btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
  gap: 6px;
}
.pl-search__btn svg {
  transition: transform .25s var(--ease);
}
.pl-search__btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .pl-search__btn span,
  .pl-search__btn:not(:hover) {
    /* keep button compact on mobile */
  }
  .pl-search__btn {
    padding: 0 14px;
    min-height: 38px;
  }
  .pl-search__input {
    font-size: 14px;
  }
}
