/* ============================================================
   Ponas Balionas — main.css
   Bendri stiliai: design tokens, header, nav, footer, mobile menu, buttons.
   Page-specific stiliai — atskiruose failuose (home.css, about.css, ir t.t.).
   ============================================================ */

/* === Design tokens — Variantas B (violetinis + auksas) === */
:root {
  --primary:        #4C1D95;
  --primary-dark:   #2E1065;
  --primary-light:  #7E22CE;
  --accent:         #D4AF37;
  --bg:             #FFFFFF;
  --bg-alt:         #FAF7FC;
  --text:           #1A0B2E;
  --text-soft:      #6B6680;
  --border:         #EFE9F7;
  --footer-grad:    linear-gradient(180deg, #2E1065, #1A0B2E);
  --success:        #059669;
  --warning:        #B45309;
  --warning-bg:     #FEF3C7;
  --warning-border: #FDE68A;
}

/* === Reset + base === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* === Top bar === */
.top-bar { background: var(--primary-dark); color: white; font-size: 13px; padding: 10px 0; text-align: center; font-weight: 500; }
.top-bar strong { color: var(--accent); font-weight: 700; }

/* === Header === */
.header { border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); background: rgba(255, 255, 255, 0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1280px; margin: 0 auto; gap: 32px; }
.logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.logo-frame { width: 76px; height: 76px; background: var(--bg-alt); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--border); transition: all 0.2s; position: relative; overflow: hidden; }
.logo:hover .logo-frame { background: var(--primary); border-color: var(--primary); }
.logo-frame img { width: 60px; height: 60px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; text-transform: uppercase; }
.logo-text .sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-soft); margin-top: 6px; font-weight: 600; }
.search-box { flex: 1; max-width: 480px; position: relative; }
.search-box form { position: relative; display: block; }
.search-box input { width: 100%; padding: 13px 16px 13px 46px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 14px; background: var(--bg-alt); outline: none; transition: all 0.2s; font-weight: 500; color: var(--text); }
.search-box input:focus { border-color: var(--primary); background: white; }
.search-box svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-soft); pointer-events: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { background: transparent; border: none; padding: 10px; border-radius: 50%; cursor: pointer; position: relative; color: var(--text); transition: background 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn:hover { background: var(--bg-alt); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-btn { display: flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 11px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.cart-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: white; }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count { background: var(--accent); color: var(--primary-dark); border-radius: 100px; padding: 2px 8px; font-size: 12px; font-weight: 800; }

/* === Nav === */
.nav { background: var(--bg); border-bottom: 1px solid var(--border); position: relative; z-index: 90; }
.nav-inner { display: flex; gap: 4px; max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; }
.nav-item { padding: 16px 18px; font-size: 14px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; color: var(--text); transition: color 0.2s; text-decoration: none; }
.nav-item:hover { color: var(--primary); }
.nav-item.has-mega::after { content: ''; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; margin-left: 2px; }
.nav-item.featured { color: var(--accent); font-weight: 700; }

/* Mega/dropdown wrap'eris — submenu absolute popup'ui */
.nav-mega-wrap { position: static; display: inline-flex; }

/* === Simple sub-menu (be has-mega — paprasti dropdown'ai) === */
.nav-mega-wrap > .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: white;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 8px 0;
	margin: 0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
	z-index: 100;
	list-style: none;
}
.nav-mega-wrap:hover > .sub-menu,
.nav-mega-wrap:focus-within > .sub-menu { display: block; }
.nav-mega-wrap > .sub-menu li { padding: 0; margin: 0; }
.nav-mega-wrap > .sub-menu a {
	display: block;
	padding: 10px 18px;
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}
.nav-mega-wrap > .sub-menu a:hover { background: rgba(76, 29, 149, 0.05); color: var(--primary); }

/* === Mega menu (4-col layout pagal v3 prototipą) === */
.mega-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid var(--border);
	border-top: none;
	border-radius: 0 0 16px 16px;
	padding: 32px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
	z-index: 100;
}
.nav-mega-wrap:hover .mega-menu,
.nav-mega-wrap:focus-within .mega-menu { display: block; }

.mega-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	max-width: 1280px;
	margin: 0 auto;
}
.mega-col { min-width: 0; }
.mega-col h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--primary);
	font-weight: 800;
	margin-bottom: 14px;
}
.mega-col h4 a { color: inherit; text-decoration: none; }
.mega-col h4 a:hover { color: var(--accent); }
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin-bottom: 9px; }
.mega-col a {
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.15s;
}
.mega-col a:hover { color: var(--primary); }

/* Mobile: išjungiame desktop dropdown'us — naudojam md-nav */
@media (max-width: 1024px) {
	.nav-mega-wrap > .sub-menu,
	.mega-menu { display: none !important; }
	.mega-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
	.mega-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; border-radius: 100px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); color: white; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn svg { width: 18px; height: 18px; }

/* === Breadcrumbs === */
.breadcrumbs { padding: 24px 0; font-size: 13px; color: var(--text-soft); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-soft); transition: color 0.15s; font-weight: 500; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--text); font-weight: 600; }

/* === Page hero (statiniai puslapiai) === */
.page-hero { padding: 70px 0 50px; background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.10) 0%, transparent 55%), radial-gradient(ellipse at bottom left, rgba(76, 29, 149, 0.06) 0%, transparent 55%), linear-gradient(180deg, #FAF7FC 0%, #FFFFFF 100%); position: relative; overflow: hidden; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; text-align: center; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--border); color: var(--primary); padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.03em; line-height: 1.05; }
.page-hero h1 .gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.page-hero p.lead { font-size: 18px; color: var(--text-soft); line-height: 1.6; max-width: 640px; margin: 0 auto; }

/* Kategorijos / parduotuvės puslapio variant'as — kairėje, su quick-stats */
.page-hero.page-hero-left { padding: 50px 0 40px; }
.page-hero.page-hero-left .page-hero-inner { text-align: left; max-width: 1280px; padding: 0 24px; }
.page-hero.page-hero-left .eyebrow { margin-bottom: 16px; }
.page-hero.page-hero-left h1 { font-size: clamp(32px, 4.2vw, 48px); margin-bottom: 12px; }
.page-hero.page-hero-left p.lead { margin: 0 0 22px; max-width: 720px; font-size: 16px; }
.page-hero.page-hero-left .subcat-chips { justify-content: flex-start; margin-top: 22px; }

/* Quick stats — produktų skaičius, kainų ribos, pristatymas */
.quick-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	list-style: none;
	padding: 0;
	margin: 0 0 8px;
}
.quick-stat {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	background: white;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 13px;
	color: var(--text-soft);
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.quick-stat svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.quick-stat strong { color: var(--text); font-weight: 700; }
.quick-stat-urgent { background: linear-gradient(135deg, rgba(76,29,149,0.04), rgba(212,175,55,0.10)); border-color: var(--accent); }
.quick-stat-urgent svg { color: var(--accent); }
.quick-stat-urgent strong { color: var(--primary); }

@media (max-width: 640px) {
	.quick-stats { gap: 8px 12px; }
	.quick-stat { padding: 8px 14px; font-size: 12px; }
}

/* === Footer === */
footer { background: var(--footer-grad); color: white; padding: 70px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-logo img { width: 140px; height: auto; filter: brightness(0) invert(1); }
.footer-about p { font-size: 14px; opacity: 0.85; max-width: 320px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; color: var(--accent); font-weight: 800; }
.footer-col ul { list-style: none; }
.footer-col li, .footer-col .menu-item { margin-bottom: 11px; }
.footer-col a { font-size: 14px; opacity: 0.85; transition: opacity 0.15s; font-weight: 500; color: white; text-decoration: none; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; font-size: 13px; opacity: 0.7; flex-wrap: wrap; gap: 12px; }
.footer-legal a { color: inherit; text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--accent); text-decoration: underline; }
.footer-legal .sep { margin: 0 6px; opacity: 0.5; }

/* === Mobile menu (hamburger drawer) === */
.mobile-toggle { display: none; }
.mobile-drawer { display: none; }
.mobile-drawer-backdrop { display: none; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .search-box { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions .cart-btn span { display: none; }

  .mobile-toggle { display: flex; align-items: center; justify-content: center; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 50%; width: 44px; height: 44px; color: var(--text); cursor: pointer; padding: 0; transition: all 0.2s; }
  .mobile-toggle:hover { background: var(--primary); color: white; border-color: var(--primary); }
  .mobile-toggle svg { width: 22px; height: 22px; }

  .mobile-drawer-backdrop { display: block; position: fixed; inset: 0; background: rgba(15, 14, 46, 0.5); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity 0.25s; z-index: 999; }
  .mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

  .mobile-drawer { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 92vw); background: var(--bg); z-index: 1000; transform: translateX(105%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -20px 0 60px rgba(0,0,0,0.25); overflow-y: auto; }
  .mobile-drawer.open { transform: translateX(0); }

  .md-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
  .md-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
  .md-close { background: white; border: 1px solid var(--border); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--text); cursor: pointer; padding: 0; }
  .md-close:hover { background: var(--primary); color: white; border-color: var(--primary); }
  .md-close svg { width: 18px; height: 18px; }

  .md-nav { padding: 14px 16px 24px; flex: 1; }
  .md-nav ul { list-style: none; padding: 0; margin: 0; }
  .md-nav .menu-item, .md-nav li { margin: 0; }
  .md-nav a { display: block; padding: 13px 12px; font-size: 15px; font-weight: 600; color: var(--text); border-radius: 10px; transition: background 0.15s; text-decoration: none; }
  .md-nav a:hover, .md-nav a:active { background: var(--bg-alt); color: var(--primary); }
  .md-nav .menu-item-has-children > a { font-weight: 700; }
  .md-nav .sub-menu { padding-left: 12px; border-left: 2px solid var(--border); margin: 4px 0 8px; }
  .md-nav .sub-menu a { font-size: 14px; padding: 10px 12px; }

  .md-foot { padding: 18px 24px 26px; border-top: 1px solid var(--border); background: var(--bg-alt); }
  .md-foot .btn { width: 100%; justify-content: center; }
  .md-meta { margin-top: 14px; font-size: 12px; color: var(--text-soft); line-height: 1.5; text-align: center; }

  body.mobile-locked { overflow: hidden; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo-text .sub { display: none; }
  .logo-frame { width: 60px; height: 60px; }
  .logo-frame img { width: 48px; height: 48px; }
}

/* === HOME — hero === */
.hero { padding: 70px 0 90px; background: radial-gradient(ellipse at top right, rgba(212,175,55,0.12) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(76,29,149,0.08) 0%, transparent 50%), linear-gradient(180deg, #FAF7FC 0%, #FFFFFF 100%); position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--border); color: var(--primary); padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.hero-eyebrow .pulse { width: 8px; height: 8px; background: #10b981; border-radius: 50%; position: relative; flex-shrink: 0; }
.hero-eyebrow .pulse::after { content: ''; position: absolute; inset: -4px; background: #10b981; border-radius: 50%; opacity: 0.3; animation: pulse 1.5s ease-out infinite; }
.hero-eyebrow.eyebrow-off { color: var(--text-soft); }
.hero-eyebrow.eyebrow-off .pulse { background: #94a3b8; }
.hero-eyebrow.eyebrow-off .pulse::after { display: none; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2); opacity: 0; } }
.hero h1 { font-size: clamp(44px, 6vw, 84px); font-weight: 800; margin-bottom: 24px; letter-spacing: -0.04em; line-height: 0.95; }
.hero h1 .gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.hero-desc { font-size: 18px; color: var(--text-soft); margin-bottom: 36px; max-width: 500px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-soft); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.hero-visual { position: relative; aspect-ratio: 1 / 1.05; display: flex; align-items: center; justify-content: center; }
.hero-card { position: absolute; background: white; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); padding: 16px; width: 200px; z-index: 3; text-decoration: none; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 36px 72px rgba(0,0,0,0.20); }
.hero-card .hero-card-img { aspect-ratio: 1; background: var(--bg-alt); border-radius: 12px; overflow: hidden; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.hero-card .hero-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.hero-card .info { padding-top: 0; }
.hero-card .price { font-size: 18px; font-weight: 700; color: var(--primary); font-family: 'Bricolage Grotesque', sans-serif; }
.hero-card .price del { color: var(--text-soft); font-size: 13px; font-weight: 500; margin-right: 4px; }
.hero-card .price ins { text-decoration: none; }
.hero-card .name { font-size: 12px; color: var(--text-soft); margin-top: 2px; line-height: 1.35; }
.hero-card.card-1 { top: 5%; left: 0; animation: float-1 6s ease-in-out infinite; }
.hero-card.card-2 { top: 30%; right: 0; animation: float-2 7s ease-in-out infinite; }
.hero-card.card-3 { bottom: 5%; left: 22%; width: 180px; animation: float-3 5.5s ease-in-out infinite; }
@keyframes float-1 { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-15px) rotate(-3deg); } }
@keyframes float-2 { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-20px) rotate(3deg); } }
@keyframes float-3 { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(-1deg); } }
.hero-blob { position: absolute; inset: 10% 5%; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 50%; opacity: 0.15; filter: blur(40px); z-index: 1; }

/* === HOME — delivery strip === */
.delivery-strip { background: linear-gradient(90deg, var(--primary-dark), var(--primary)); color: white; padding: 32px 0; position: relative; overflow: hidden; }
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; padding: 0 24px; align-items: center; }
.delivery-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.delivery-item .icon { width: 48px; height: 48px; background: rgba(212, 175, 55, 0.2); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.delivery-item .icon svg { width: 22px; height: 22px; }
.delivery-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.delivery-item span { font-size: 12px; opacity: 0.8; }

@media (max-width: 1024px) {
  .delivery-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .delivery-item { flex-direction: column; align-items: center; text-align: center; gap: 10px; justify-content: flex-start; }
  .delivery-item .icon { width: 52px; height: 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .delivery-grid { gap: 24px 12px; }
}

/* === HOME — section heads + categories + product grid === */
section.categories { padding: 90px 0; }
section.products-section { padding: 90px 0; background: var(--bg-alt); }
section.feature { padding: 90px 0; }
section.social-proof { padding: 90px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.section-head .eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); font-weight: 700; margin-bottom: 12px; display: block; }
.section-head h2 { font-size: clamp(34px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.03em; }
.section-head h2 .gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-head .lead { color: var(--text-soft); font-size: 16px; max-width: 480px; margin-top: 14px; line-height: 1.6; }
.see-all { font-weight: 700; font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap 0.2s; }
.see-all:hover { gap: 10px; color: var(--primary-dark); }
.see-all svg { width: 16px; height: 16px; flex-shrink: 0; }

.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid var(--border); display: block; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px rgba(0,0,0,0.15); }
.cat-image { position: absolute; inset: 0; background: var(--bg-alt); }
.cat-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.cat-card:hover .cat-image img { transform: scale(1.08); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, var(--primary-dark) 100%); opacity: 0.85; }
.cat-content { position: absolute; bottom: 18px; left: 18px; right: 18px; color: white; }
.cat-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.cat-count { font-size: 12px; opacity: 0.85; font-weight: 500; }

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

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
}

/* === HOME — feature card su skaičiais === */
.feature-card { background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.25) 0%, transparent 50%), linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: 28px; padding: 60px 70px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; color: white; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.15; border-radius: 50%; }
.feature-content { position: relative; z-index: 2; }
.feature-content .eyebrow { display: inline-block; background: var(--accent); color: var(--primary-dark); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 22px; }
.feature-content h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 18px; line-height: 1; letter-spacing: -0.03em; font-weight: 800; }
.feature-content h2 .accent { color: var(--accent); }
.feature-content p { font-size: 17px; opacity: 0.92; margin-bottom: 32px; max-width: 480px; line-height: 1.6; }
.feature-card .btn-primary { background: var(--accent); color: var(--primary-dark); }
.feature-card .btn-primary:hover { background: white; color: var(--primary-dark); }
.feature-visual { position: relative; height: 360px; display: flex; align-items: center; justify-content: center; }
.number-balloon { position: absolute; width: 220px; height: 280px; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5)); animation: float-num 5s ease-in-out infinite; }
.number-balloon img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.number-balloon.nb-1 { left: 8%; top: 30px; animation-delay: 0s; transform: rotate(-6deg); z-index: 2; --rot: -6deg; }
.number-balloon.nb-2 { right: 8%; top: 0; animation-delay: 0.7s; transform: rotate(4deg); z-index: 1; --rot: 4deg; }
@keyframes float-num { 0%,100% { transform: translateY(0) rotate(var(--rot, -6deg)); } 50% { transform: translateY(-18px) rotate(var(--rot, -6deg)); } }

@media (max-width: 1024px) {
  .feature-card { grid-template-columns: 1fr; padding: 50px 40px; }
  .feature-visual { height: 300px; }
  .number-balloon { width: 170px; height: 220px; }
}

/* === HOME — testimonials === */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-card { padding: 32px; background: var(--bg-alt); border-radius: 18px; position: relative; border: 1px solid var(--border); }
.proof-stars { color: var(--accent); margin-bottom: 16px; font-size: 18px; letter-spacing: 0.05em; }
.proof-text { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; margin-bottom: 22px; line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 16px; font-family: 'Bricolage Grotesque', sans-serif; }
.proof-author strong { display: block; font-size: 14px; font-weight: 700; }
.proof-author span { font-size: 12px; color: var(--text-soft); }

@media (max-width: 1024px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* === Product card (homepage, related, category grid) === */
.product-card { background: var(--bg); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; cursor: pointer; display: block; text-decoration: none; color: inherit; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(0,0,0,0.12); border-color: var(--primary-light); }
.product-image { aspect-ratio: 1; background: white; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--primary-dark); padding: 5px 11px; border-radius: 100px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; z-index: 2; }
.product-badge.new { background: var(--primary); color: white; }
.wishlist-btn { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: var(--text-soft); transition: all 0.2s; z-index: 2; }
.wishlist-btn:hover { color: #ef4444; transform: scale(1.1); }
.wishlist-btn svg { width: 18px; height: 18px; }
.product-info { padding: 20px; }
.product-cat { font-size: 11px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 6px; }
.product-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.01em; }
.product-meta { font-size: 12px; color: var(--text-soft); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; font-weight: 500; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.add-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.add-btn:hover { background: var(--primary-dark); transform: scale(1.1) rotate(90deg); }
.add-btn svg { width: 18px; height: 18px; }

/* === Page-specific stiliai paliekami atskiruose CSS failuose (about.css, delivery.css, ir t.t.) === */

/* === Default image hover state for any wishlist-target === */
.lazyload-fade { opacity: 0; transition: opacity 0.3s; }
.lazyload-fade.loaded { opacity: 1; }

/* ============================================
 * 404 puslapis (pb-404)
 * v4.7.24 — brand-stilizuotas Page Not Found
 * ============================================ */
.pb-404 { background: linear-gradient(180deg, #FAF7FC 0%, #FFFFFF 100%); }

.pb-404-hero { padding: 60px 0 40px; position: relative; overflow: hidden; }
.pb-404-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.10) 0%, transparent 55%), radial-gradient(ellipse at bottom left, rgba(76, 29, 149, 0.06) 0%, transparent 55%); pointer-events: none; }
.pb-404-hero .container { position: relative; z-index: 1; }

.pb-404-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

.pb-404-text { max-width: 580px; }

.pb-404-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--border); color: var(--primary); padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 22px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.pb-404-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; }
.pb-404-pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--accent); opacity: 0.4; animation: pb404pulse 1.8s ease-out infinite; }
@keyframes pb404pulse { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(2.5); opacity: 0; } }

.pb-404-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(40px, 5.5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 18px; color: var(--text); }
.pb-404-lead { font-size: 17px; line-height: 1.6; color: var(--text-soft); margin: 0 0 28px; }

.pb-404-search { display: flex; align-items: center; gap: 8px; background: white; border: 1.5px solid var(--border); border-radius: 100px; padding: 6px 6px 6px 48px; position: relative; box-shadow: 0 8px 24px rgba(76, 29, 149, 0.06); transition: all 0.2s; margin-bottom: 28px; }
.pb-404-search:focus-within { border-color: var(--primary); box-shadow: 0 8px 28px rgba(76, 29, 149, 0.14); }
.pb-404-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-soft); pointer-events: none; }
.pb-404-search input { flex: 1; border: none; outline: none; font-size: 15px; padding: 12px 8px; background: transparent; color: var(--text); font-family: inherit; }
.pb-404-search input::placeholder { color: var(--text-soft); }
.pb-404-search .btn { padding: 12px 22px; font-size: 14px; border-radius: 100px; flex-shrink: 0; }

.pb-404-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.pb-404-actions .btn { display: inline-flex; align-items: center; gap: 8px; }

.pb-404-visual { display: flex; justify-content: center; align-items: center; }
.pb-404-svg { width: 100%; max-width: 360px; height: auto; }
.pb-404-balloon-main { animation: pb404float 6s ease-in-out infinite; transform-origin: 190px 145px; }
.pb-404-balloon-small { animation: pb404float 4.5s ease-in-out infinite reverse; transform-origin: 70px 80px; }
@keyframes pb404float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1.5deg); } }

/* Pagalbos blokas */
.pb-404-help { padding: 0 0 80px; }
.pb-404-help-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 28px 36px; border-radius: 24px; box-shadow: 0 20px 50px rgba(76, 29, 149, 0.20); }
.pb-404-help-text { display: flex; flex-direction: column; gap: 4px; }
.pb-404-help-text strong { font-size: 18px; font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; }
.pb-404-help-text span { font-size: 14px; opacity: 0.85; }
.pb-404-help-box .btn-primary { background: var(--accent); color: var(--primary-dark); display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pb-404-help-box .btn-primary:hover { background: white; color: var(--primary-dark); }

/* Mobile */
@media (max-width: 900px) {
	.pb-404-grid { grid-template-columns: 1fr; gap: 24px; }
	.pb-404-visual { order: -1; }
	.pb-404-svg { max-width: 240px; }
	.pb-404-help-box { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
	.pb-404-search { flex-direction: column; padding: 12px; border-radius: 20px; }
	.pb-404-search-icon { display: none; }
	.pb-404-search input { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg-alt); }
	.pb-404-search .btn { width: 100%; }
	.pb-404-help-box { padding: 24px 20px; border-radius: 18px; }
}

/* 404 produktų sekcija — naudoja .products-section stilius iš front-page */
.pb-404-products { padding: 50px 0 30px; background: var(--bg); }
.pb-404-products .section-head { margin-bottom: 24px; }
@media (max-width: 900px) {
	.pb-404-products { padding: 30px 0 10px; }
}
