/* CSS kintamieji — paletė ir matmenys */
:root {
  --color-accent: #FF6B35;
  --color-accent-dark: #E5552A;
  --color-text: #1A1A1A;
  --color-text-muted: #6B7280;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F8F9FA;
  --color-border: #E5E7EB;
  --color-placeholder: #9CA3AF;
  --color-footer-bg: #1A1A1A;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-cta: 0 8px 24px rgba(255, 107, 53, 0.25);
  --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Utility */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text);
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.nav-links a:hover { color: var(--color-text); }

/* ============ Mygtukai ============ */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s ease-out, background 0.15s ease-out;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--color-accent); color: white; }
.btn-accent:hover { background: var(--color-accent-dark); }
.btn-outline {
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 12px; font-size: 13px; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background-image: url('https://images.unsplash.com/photo-1663797184283-1f1148a36816?w=2000&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  max-width: 720px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(15px, 2vw, 18px);
  max-width: 560px;
  opacity: 0.95;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-lg { padding: 14px 26px; font-size: 16px; }

@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
}

/* ============ Bendri sekcijų stiliai ============ */
.section-soft { background: var(--color-bg-soft); }
.section-title {
  font-size: clamp(28px, 4vw, 36px);
  text-align: center;
  margin-bottom: 32px;
}

/* ============ Trust juosta ============ */
.trust-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.trust-icon { font-size: 20px; }
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-item { font-size: 13px; flex-direction: column; }
}

/* ============ Kaip tai veikia ============ */
.how-it-works { padding: 64px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--color-bg);
  padding: 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-accent);
  color: white;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--color-text-muted); font-size: 15px; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 48px 0; }
}

/* ============ Asortimentas ============ */
.products { padding: 64px 0; }
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.products-count { color: var(--color-text-muted); font-size: 14px; }

.filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-card);
}
.filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  margin-right: 8px;
  min-width: 60px;
}
.pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease-out;
}
.pill:hover { border-color: var(--color-text); }
.pill.is-active { background: var(--color-text); color: white; border-color: var(--color-text); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.product-image {
  aspect-ratio: 4 / 3;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-placeholder);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}
.product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-name { font-size: 16px; font-weight: 800; }
.product-meta { font-size: 13px; color: var(--color-text-muted); }
.product-price { margin-top: 4px; font-size: 14px; }
.product-price-weekend { color: var(--color-accent); font-weight: 800; }
.product-cta {
  margin-top: auto;
  padding-top: 12px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}
.empty-state { text-align: center; color: var(--color-text-muted); padding: 40px 0; }

/* ============ Atsiliepimai / Galerija ============ */
.testimonials { padding: 64px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.testimonial-text { font-size: 15px; line-height: 1.55; }
.testimonial-author { margin-top: 12px; font-size: 13px; color: var(--color-text-muted); font-weight: 600; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-placeholder {
  aspect-ratio: 1;
  background: white;
  border: 1px dashed var(--color-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-placeholder);
  font-size: 11px;
  text-align: center;
  padding: 8px;
}

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ DUK ============ */
.faq { padding: 64px 0; }
.faq-inner { max-width: 720px; }
.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  font-size: 22px;
  color: var(--color-accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 16px; color: var(--color-text-muted); font-size: 15px; }

/* ============ CTA juosta ============ */
.cta-band {
  background: var(--color-accent);
  color: white;
  padding: 56px 0;
  text-align: center;
}
.cta-title { font-size: clamp(24px, 4vw, 32px); }
.cta-text { margin-top: 8px; opacity: 0.95; font-size: 16px; }
.cta-btn {
  margin-top: 20px;
  background: white;
  color: var(--color-accent);
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.cta-btn:hover { background: #f9f9f9; }

/* ============ Footer ============ */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-placeholder);
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-size: 14px;
}
.footer-logo { color: white; font-weight: 800; margin-bottom: 8px; }
.footer-muted { font-size: 12px; opacity: 0.7; }
.footer a:hover { color: white; }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ Sticky mobile CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-accent);
  color: white;
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 50;
  transform: translateY(0);
  transition: transform 0.25s ease-out;
}
.mobile-cta.is-hidden { transform: translateY(100%); }
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 60px; }
}
