/* ══ Landing Page Design System ════════════════════════════════════════
   Shared across: /juokingi-marskineliai/, /marskineliai-mamai/,
   /marskineliai-teciui/, /gimtadienio-marskineliai/
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────── */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.22);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
}

.lp-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #09090b;
  margin-bottom: 1.375rem;
}
.dark .lp-h1 { color: #fafafa; }
.lp-h1 .highlight { color: #dc2626; }

.lp-subtitle {
  font-size: 1rem;
  color: #52525b;
  max-width: 30rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.dark .lp-subtitle { color: #a1a1aa; }

/* ── CTA buttons ──────────────────────────────────────────────────── */
.lp-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #dc2626;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.15s;
}
.lp-btn-primary:hover { background: #b91c1c; }

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border: 2px solid #d4d4d8;
  color: #18181b !important;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.lp-btn-outline:hover { border-color: #71717a; color: #09090b !important; }
.dark .lp-btn-outline { border-color: #3f3f46; color: #d4d4d8 !important; }
.dark .lp-btn-outline:hover { border-color: #71717a; color: #fff !important; }

/* ── Stats row ────────────────────────────────────────────────────── */
.lp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e4e4e7;
}
.dark .lp-stats { border-color: #27272a; }
.lp-stat { display: flex; flex-direction: column; }
.lp-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.875rem;
  color: #71717a;
  margin-top: 0.35rem;
}

/* ── Featured product card (hero right) ─────────────────────────── */
.lp-featured-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) { .lp-featured-wrap { justify-content: flex-end; } }

.lp-featured-card {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  padding: 1.75rem;
  width: 100%;
  max-width: 440px;
}
.dark .lp-featured-card { background: #18181b; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }

.lp-featured-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.lp-featured-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0.75rem;
  background: #f4f4f5;
  margin-bottom: 1rem;
}

.lp-featured-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #09090b;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.dark .lp-featured-name { color: #fafafa; }

.lp-featured-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.lp-featured-price .lp-price-current {
  font-size: 1.375rem;
  font-weight: 900;
  color: #dc2626;
}
.lp-featured-price .lp-price-old {
  font-size: 0.875rem;
  color: #a1a1aa;
  text-decoration: line-through;
}

.lp-featured-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  background: #09090b;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.15s;
}
.lp-featured-btn:hover { background: #27272a; }

/* ── Benefits strip ───────────────────────────────────────────────── */
.lp-benefits {
  background: #f4f4f5;
  border-top: 1px solid #e4e4e7;
  border-bottom: 1px solid #e4e4e7;
  padding: 2.5rem 0;
}
.dark .lp-benefits { background: #0a0a0a; border-color: #27272a; }

.lp-benefits-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
@media (min-width: 768px) {
  .lp-benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-benefit-card {
  background: #fff;
  border-radius: 0.875rem;
  padding: 1.125rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.dark .lp-benefit-card { background: #18181b; }

.lp-benefit-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(220,38,38,0.09);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.lp-benefit-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #09090b;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.dark .lp-benefit-title { color: #fafafa; }

.lp-benefit-desc {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.5;
}

/* ── Filter section ───────────────────────────────────────────────── */
.lp-filter-section {
  padding: 3rem 0;
  background: #fff;
}
.dark .lp-filter-section { background: #09090b; }

.lp-filter-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.dark .lp-filter-inner { background: #18181b; box-shadow: 0 4px 40px rgba(0,0,0,0.3); }

.lp-filter-inner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(220,38,38,0.10), transparent 70%);
  pointer-events: none;
}

.lp-filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #dc2626;
  margin-bottom: 0.375rem;
}

.lp-filter-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #09090b;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.dark .lp-filter-h2 { color: #fafafa; }

.lp-filter-subtitle {
  font-size: 0.875rem;
  color: #71717a;
  margin-bottom: 2rem;
  max-width: 540px;
}

.lp-filter-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .lp-filter-groups { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.lp-filter-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #71717a;
  margin-bottom: 0.75rem;
}

.lp-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-filter-btn {
  padding: 0.4375rem 0.875rem;
  border-radius: 0.5rem;
  border: 2px solid #e4e4e7;
  background: #fff;
  color: #3f3f46;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.lp-filter-btn:hover { border-color: #dc2626; color: #dc2626; }
.lp-filter-btn.active {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.dark .lp-filter-btn { background: #27272a; border-color: #3f3f46; color: #a1a1aa; }
.dark .lp-filter-btn:hover { border-color: #dc2626; color: #dc2626; background: #27272a; }
.dark .lp-filter-btn.active { background: #dc2626; border-color: #dc2626; color: #fff; }

/* ── Collection / Product grid ────────────────────────────────────── */
.lp-collection {
  padding: 3.5rem 0;
  background: #fff;
}
.dark .lp-collection { background: #09090b; }

.lp-collection-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.lp-collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lp-collection-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #dc2626;
  margin-bottom: 0.25rem;
}

.lp-collection-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #09090b;
  line-height: 1;
}
.dark .lp-collection-h2 { color: #fafafa; }

.lp-product-count {
  font-size: 0.875rem;
  color: #71717a;
  white-space: nowrap;
}

.lp-product-grid {
  transition: opacity 0.2s;
}
.lp-product-grid.lp-loading {
  opacity: 0.45;
  pointer-events: none;
}

/* ── Guide section ────────────────────────────────────────────────── */
.lp-guide {
  padding: 3.5rem 0;
  background: #f4f4f5;
}
.dark .lp-guide { background: #0a0a0a; }

.lp-guide-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.lp-guide-h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #09090b;
  margin-bottom: 0.625rem;
  line-height: 1.1;
}
.dark .lp-guide-h2 { color: #fafafa; }

.lp-guide-subtitle {
  font-size: 0.875rem;
  color: #71717a;
  margin-bottom: 1.5rem;
}

.lp-guide-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.625rem;
  text-align: left;
}
.dark .lp-guide-card { background: #18181b; }

.lp-guide-card-title {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #09090b;
  margin-bottom: 0.75rem;
}
.dark .lp-guide-card-title { color: #fafafa; }

.lp-guide-text {
  font-size: 0.9375rem;
  color: #52525b;
  line-height: 1.75;
}
.dark .lp-guide-text { color: #a1a1aa; }

.lp-guide-extra { display: none; margin-top: 1rem; }
.lp-guide-extra.lp-open { display: block; }

.lp-guide-expand {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #e4e4e7;
  margin-top: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #dc2626;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}
.dark .lp-guide-expand { border-color: #27272a; }

/* ── Philosophy section ───────────────────────────────────────────── */
.lp-philosophy {
  padding: 3.5rem 0;
  background: #fff;
}
.dark .lp-philosophy { background: #09090b; }

.lp-philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .lp-philosophy-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.lp-philosophy-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.lp-philosophy-h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #09090b;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.dark .lp-philosophy-h2 { color: #fafafa; }

.lp-philosophy-text {
  font-size: 0.9375rem;
  color: #52525b;
  line-height: 1.75;
  margin-bottom: 0.875rem;
}
.dark .lp-philosophy-text { color: #a1a1aa; }

.lp-philo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 1.5rem;
}
.dark .lp-philo-stats { background: #18181b; }

.lp-philo-stat { padding: 0.5rem; }

.lp-philo-stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.lp-philo-stat-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #09090b;
  margin-bottom: 0.2rem;
}
.dark .lp-philo-stat-label { color: #fafafa; }

.lp-philo-stat-desc {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.4;
}

/* ── Product grid cards ───────────────────────────────────────────── */
.lp-product-item { list-style: none; }

.lp-card {
  position: relative;
  background: #fff;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid #e4e4e7;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.lp-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.dark .lp-card { background: #18181b; border-color: #27272a; }

.lp-card-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3125rem;
  line-height: 1.4;
}
.lp-card-badge--top  { background: #dc2626; color: #fff; }
.lp-card-badge--sale { background: #16a34a; color: #fff; }

.lp-card-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f4f4f5;
  flex-shrink: 0;
}
.dark .lp-card-img-wrap { background: #27272a; }

.lp-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.lp-card:hover .lp-card-img { transform: scale(1.04); }

.lp-card-body {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.375rem;
}

.lp-card-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #09090b;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-card-name:hover { color: #dc2626; }
.dark .lp-card-name { color: #fafafa; }

.lp-card-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}
.lp-stars-filled { color: #f59e0b; letter-spacing: 0.05em; }
.lp-stars-count  { color: #a1a1aa; }

.lp-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.lp-price-now {
  font-size: 1rem;
  font-weight: 900;
  color: #dc2626;
}
.lp-price-was {
  font-size: 0.8125rem;
  color: #a1a1aa;
  text-decoration: line-through;
}

.lp-card-actions {
  display: flex;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.lp-card-btn-view,
.lp-card-btn-cart {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.5rem 0.375rem;
  border-radius: 0.4375rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  border: 2px solid transparent;
  line-height: 1.3;
}

.lp-card-btn-view {
  background: transparent;
  border-color: #d4d4d8;
  color: #3f3f46;
}
.lp-card-btn-view:hover { border-color: #71717a; color: #09090b; }
.dark .lp-card-btn-view { border-color: #3f3f46; color: #a1a1aa; }
.dark .lp-card-btn-view:hover { border-color: #71717a; color: #d4d4d8; }

.lp-card-btn-cart {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.lp-card-btn-cart:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }

.lp-card-btn-cart--select {
  background: #09090b;
  border-color: #09090b;
}
.lp-card-btn-cart--select:hover { background: #27272a; border-color: #27272a; }

/* ── SEO Body Section ────────────────────────────────────────────────── */
.lp-seo-body {
  padding: 3rem 1.5rem;
  background: #fff;
}
.dark .lp-seo-body { background: #09090b; }

.lp-seo-body-inner {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #52525b;
}
.dark .lp-seo-body-inner { color: #a1a1aa; }
.lp-seo-body-inner p { margin: 0; }
.lp-seo-body-inner p + p { margin-top: 1rem; }

@media (max-width: 640px) {
  .lp-seo-body { padding: 2rem 1rem; }
}

/* ── FAQ Section ─────────────────────────────────────────────────────── */
.lp-faq {
  padding: 4rem 1.5rem;
  background: #fafafa;
}
.dark .lp-faq { background: #18181b; }

.lp-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 0.75rem;
}

.lp-faq-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #09090b;
  margin-bottom: 2rem;
}
.dark .lp-faq-h2 { color: #fafafa; }

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.15s;
}
.dark .lp-faq-item { background: #27272a; border-color: #3f3f46; }
.lp-faq-item[open] { border-color: #dc2626; }

.lp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #09090b;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.dark .lp-faq-q { color: #fafafa; }
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #71717a;
  transition: transform 0.2s;
}
.lp-faq-item[open] .lp-faq-q::after {
  content: '–';
  color: #dc2626;
}

.lp-faq-a {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #52525b;
}
.dark .lp-faq-a { color: #a1a1aa; }
.lp-faq-a p { margin: 0; }
.lp-faq-a p + p { margin-top: 0.75rem; }

@media (max-width: 640px) {
  .lp-faq { padding: 2.5rem 1rem; }
  .lp-faq-q { font-size: 0.9375rem; padding: 1rem; }
  .lp-faq-a { font-size: 0.875rem; padding: 0 1rem 1rem; }
}
