*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  line-height: 1.6;
  background: #f8fafc;
  color: #0f172a;
}

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  color: #0f172a;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark .site-body {
  background: #020617;
  color: #e2e8f0;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

a:hover {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 16px;
  padding: 10px 18px;
  background: #1d4ed8;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  transition: top 0.2s ease, background 0.2s ease;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
  background: #1e40af;
  outline: 3px solid #facc15;
  outline-offset: 4px;
}

html.dark .skip-link {
  background: #2563eb;
}

html.dark .skip-link:focus {
  background: #1d4ed8;
  outline-color: #facc15;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.15);
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

html.dark .btn-primary {
  background: linear-gradient(135deg, #1f2937, #2563eb);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.45);
}

html.dark .btn-primary:hover {
  background: linear-gradient(135deg, #1f2937, #1d4ed8);
}

.btn-secondary {
  background: rgba(241, 245, 249, 0.9);
  color: #1f2937;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
  background: #e2e8f0;
}

html.dark .btn-secondary {
  background: rgba(30, 41, 59, 0.9);
  color: #e2e8f0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

html.dark .btn-secondary:hover {
  background: rgba(51, 65, 85, 0.9);
}

.btn-call {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.btn-call:hover {
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #10b981, #22c55e);
  color: #fff;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #0f9f6e, #16a34a);
}

.hero-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 12px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.28s ease;
}

.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(15, 23, 42, 0.22);
}

.cta-card:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.4);
  outline-offset: 3px;
}

.cta-card--primary {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(191, 219, 254, 0.95));
}

.cta-card--whatsapp {
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.92), rgba(187, 247, 208, 0.92));
}

.cta-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: #2563eb;
}

.cta-card--whatsapp .cta-card-icon {
  color: #16a34a;
}

.cta-card-icon svg {
  width: 22px;
  height: 22px;
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.cta-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
}

.cta-card-subtitle {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.72);
}

.hero-cta .cta-card:last-child .cta-card-title {
  color: #047857;
}

.hero-cta .cta-card:last-child .cta-card-subtitle {
  color: rgba(4, 120, 87, 0.78);
}

html.dark .cta-card {
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.48);
}

html.dark .cta-card--primary {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.7), rgba(30, 58, 138, 0.76));
}

html.dark .cta-card--whatsapp {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.72), rgba(21, 128, 61, 0.78));
}

html.dark .cta-card-icon {
  background: rgba(15, 23, 42, 0.92);
  color: #60a5fa;
}

html.dark .cta-card--whatsapp .cta-card-icon {
  color: #4ade80;
}

html.dark .cta-card-title {
  color: #f8fafc;
}

html.dark .cta-card-subtitle {
  color: rgba(226, 232, 240, 0.82);
}

html.dark .hero-cta .cta-card:last-child .cta-card-title {
  color: #bbf7d0;
}

html.dark .hero-cta .cta-card:last-child .cta-card-subtitle {
  color: rgba(187, 247, 208, 0.82);
}

.header-content .footer-hours {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(236, 233, 24, 0.18), rgba(255, 255, 255, 0.26));
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
}

.header-content .footer-hours-title {
  font-size: 1.08rem;
  color: #f3d111;
}

.header-content .footer-hours-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

html.dark .header-content .footer-hours {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.76));
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.56);
}

html.dark .header-content .footer-hours-title {
  color: #fde68a;
}

html.dark .header-content .footer-hours-subtitle {
  color: rgba(226, 232, 240, 0.82);
}

.layout-container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.site-header {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8, #2563eb 65%);
  padding: 56px 0 64px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

html.dark .site-header {
  background: linear-gradient(135deg, #0f172a, #1e293b 65%);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.55);
}

.dark-toggle {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
}

html[dir="rtl"] .dark-toggle {
  left: auto;
  right: 24px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.7;
}

html.dark .hero-subtitle {
  color: rgba(191, 219, 254, 0.9);
}

.brand-section {
  padding: 32px 0 12px;
}

.brand-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  direction: rtl;
}

.brand-button {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.brand-button:hover {
  background: #dbeafe;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.brand-button.is-active {
  border-color: #2563eb;
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22);
}

html.dark .brand-button {
  background: #1e293b;
  color: #e2e8f0;
  border-color: transparent;
}

html.dark .brand-button:hover {
  background: #2563eb;
  color: #fff;
}

html.dark .brand-button.is-active {
  background: #1d4ed8;
  color: #facc15;
  border-color: rgba(148, 163, 184, 0.4);
}

.site-main {
  flex: 1 0 auto;
  padding: 48px 0 60px;
}

.section-title {
  margin: 0 0 32px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #1d4ed8;
  font-weight: 800;
  text-align: center;
}

html.dark .section-title {
  color: #bfdbfe;
}

.products-grid {
  display: grid;
  gap: 24px;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1024px) {
  .products-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
  }
}

.products-message {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 16px;
  background: rgba(226, 232, 240, 0.6);
  color: #475569;
  font-weight: 600;
}

.products-message--error {
  background: rgba(248, 113, 113, 0.15);
  color: #b91c1c;
}

.products-message--muted {
  background: rgba(148, 163, 184, 0.2);
  color: #64748b;
}

html.dark .products-message {
  background: rgba(30, 41, 59, 0.6);
  color: #cbd5f5;
}

html.dark .products-message--error {
  background: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 340px;
  min-height: 500px;
  height: 100%;
  padding: 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 32px 60px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(226, 232, 240, 0.55));
}

html.dark .product-card {
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
}

html.dark .product-card:hover {
  box-shadow: 0 32px 60px rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.7));
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: opacity 0.35s ease, border 0.35s ease;
  opacity: 0;
}

.product-card:hover::before {
  border-color: rgba(37, 99, 235, 0.35);
  opacity: 1;
}

html.dark .product-card:hover::before {
  border-color: rgba(59, 130, 246, 0.45);
}

@media (max-width: 767px) {
  .product-card {
    transform-origin: center;
  }

  .product-card:active {
    transform: scale(0.98);
  }

  .product-card:active::before {
    border-color: rgba(37, 99, 235, 0.45);
    opacity: 1;
  }

  html.dark .product-card:active::before {
    border-color: rgba(59, 130, 246, 0.55);
  }
}

.product-image-wrapper {
  width: 100%;
  height: 170px;
  border-radius: 18px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

html.dark .product-image-wrapper {
  background: #1e293b;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content {
  display: grid;
  grid-template-rows: minmax(56px, auto) minmax(110px, auto) minmax(72px, auto) auto;
  gap: 16px;
  width: 100%;
  flex: 1;
}

.product-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

html.dark .product-title {
  color: #e2e8f0;
}

.product-description {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
  text-align: right;
  line-height: 1.7;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

html.dark .product-description {
  color: #cbd5f5;
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 72px;
}

.product-price-current {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
}

html.dark .product-price-current {
  color: #facc15;
}

.product-price-old {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

html.dark .product-price-old {
  color: #64748b;
}

.product-price-contact {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d4ed8;
}

html.dark .product-price-contact {
  color: #facc15;
}

.product-note {
  font-size: 0.78rem;
  color: #64748b;
  text-align: center;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.dark .product-note {
  color: #94a3b8;
}

.product-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-bottom: 4px;
}

.product-actions .btn {
  flex: 1;
  width: 100%;
  max-width: none;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}

.tag-chip {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: #1f2937;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

html.dark .tag-chip {
  background: rgba(148, 163, 184, 0.25);
  color: #f8fafc;
}

.product-status {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

html[dir="rtl"] .product-status {
  left: auto;
  right: 18px;
}

.status-sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.status-new {
  background: linear-gradient(135deg, #10b981, #059669);
}

.status-recommended {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.status-hot {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.status-special {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.status-default {
  background: linear-gradient(135deg, #475569, #1e293b);
}

.animate-fadein {
  opacity: 0;
  animation: fadein 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-pulse {
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.install-icon {
  width: 20px;
  height: 20px;
}

.site-footer {
  margin-top: 48px;
  padding: 48px 0 42px;
  background: linear-gradient(160deg, #1d4ed8, #1e3a8a);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html.dark .site-footer {
  background: linear-gradient(160deg, #0f172a, #020617);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-summary {
  display: grid;
  width: 100%;
  gap: 32px;
  justify-items: center;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.25);
}

.footer-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-tagline {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
}

.footer-hours {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
}

.footer-hours-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fbbf24;
}

.footer-hours-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
}

.social-link--whatsapp {
  background: linear-gradient(135deg, #1faa59, #25d366);
}

.social-link--facebook {
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
}

.social-link--instagram {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.social-link--email {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.social-icon {
  width: 20px;
  height: 20px;
}

.footer-divider {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.btn,
.brand-button,
.product-card,
.social-link {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content pages */
.content-wrapper {
  padding: 48px 0 60px;
}

.content-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

html.dark .content-card {
  background: #0f172a;
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.55);
}

.content-card > .content-section {
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border-radius: 20px;
  background: rgba(226, 232, 240, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.content-card > .content-section + .content-section {
  margin-top: clamp(1.1rem, 2vw, 1.8rem);
}

html.dark .content-card > .content-section {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.6);
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-section-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: #1d4ed8;
  position: relative;
  padding-inline-end: 28px;
}

.content-section-title::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  inset-inline-start: auto;
  top: 50%;
  transform: translate(0, -50%);
  width: 6px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

html.dark .content-section-title {
  color: #bfdbfe;
}

html.dark .content-section-title::before {
  background: linear-gradient(180deg, #fbbf24, #facc15);
  box-shadow: 0 6px 14px rgba(250, 204, 21, 0.35);
}

.content-subtitle {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  position: relative;
  padding-right: 16px;
}

.content-subtitle::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

html.dark .content-subtitle {
  color: #e2e8f0;
}

html.dark .content-subtitle::before {
  background: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.25);
}

.content-text {
  margin: 0;
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.8;
}

html.dark .content-text {
  color: #cbd5f5;
}

.content-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #334155;
  font-size: 0.98rem;
  list-style: none;
}

html.dark .content-list {
  color: #cbd5f5;
}

.content-list li {
  position: relative;
  padding: 0.45rem 2.2rem 0.45rem 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.content-list li::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.22);
}

html.dark .content-list li {
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.6);
}

html.dark .content-list li::before {
  background: #facc15;
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.22);
}

.content-highlight {
  background: rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 18px 20px;
  color: #334155;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

html.dark .content-highlight {
  background: rgba(30, 41, 59, 0.8);
  color: #cbd5f5;
  border: 1px solid rgba(148, 163, 184, 0.32);
}

.content-back {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.content-back .btn {
  min-width: 220px;
}

@media (min-width: 768px) {
  .header-content {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 3.5vw, 3.3rem);
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .footer-content {
    align-items: stretch;
  }

  .footer-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    text-align: right;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .dark-toggle {
    top: 16px;
    right: 16px;
    left: unset;
  }

  .site-header {
    padding: 48px 0 56px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .product-actions {
    flex-direction: column;
  }

  .hero-cta {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 16px;
  }

  .cta-card-title {
    font-size: 1rem;
  }

  .cta-card-subtitle {
    font-size: 0.82rem;
  }

  .header-content .footer-hours {
    margin-top: 8px;
    padding: 16px;
  }

  .header-content .footer-hours-title {
    font-size: 1rem;
  }

  .header-content .footer-hours-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .content-card {
    border-radius: 18px;
    gap: 28px;
  }

  .content-section-title {
    font-size: 1.5rem;
  }

  .content-wrapper {
    padding: 36px 0 48px;
  }

  .site-footer {
    padding: 36px 0 32px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-summary {
    gap: 20px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand-text {
    text-align: center;
    align-items: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-contact-item {
    font-size: 0.95rem;
  }

  .footer-hours {
    width: 100%;
    max-width: 240px;
  }

  .social-links {
    gap: 12px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .footer-links a {
    position: relative;
    padding: 0 6px;
    font-size: 0.85rem;
  }

  .footer-links a + a::before {
    content: "|";
    color: rgba(255, 255, 255, 0.5);
    margin-inline-end: 6px;
  }
}

@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;
  }
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: none;
  width: calc(100% - 32px);
  max-width: 420px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(14px);
  z-index: 1000;
  gap: 12px;
}

html.dark .mobile-sticky-cta {
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.55);
}

.mobile-sticky-cta .btn {
  flex: 1;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 48px));
  z-index: 1100;
  border-radius: 20px;
  background: rgba(241, 245, 249, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px;
}

.cookie-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #0f172a;
}

.cookie-banner__title {
  font-size: 1rem;
}

.cookie-banner__description {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1e293b;
}

.cookie-banner__description a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-width: 120px;
  align-self: center;
}

html.dark .cookie-banner {
  background: rgba(15, 23, 42, 0.58);
  border-color: rgba(59, 130, 246, 0.32);
  box-shadow: 0 28px 56px rgba(2, 6, 23, 0.68);
}

html.dark .cookie-banner__text {
  color: #f8fafc;
}

html.dark .cookie-banner__description {
  color: #dbeafe;
}

html.dark .cookie-banner__description a {
  color: #60a5fa;
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 16px);
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .cookie-banner__inner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 18px;
  }

  .cookie-banner__button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-body {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .layout-container {
    width: min(100% - 12px, 420px);
  }

  .content-wrapper {
    padding: 36px 0 52px;
  }

  .content-card {
    padding: 1.35rem;
    gap: 26px;
  }

  .content-card > .content-section {
    padding: 1.05rem;
  }

  .products-grid {
    gap: 18px;
  }

  .product-card {
    max-width: 100%;
    padding: 24px 20px;
    min-height: 460px;
  }

  .product-image-wrapper {
    height: 156px;
    border-radius: 16px;
  }

  .mobile-sticky-cta {
    width: calc(100% - 12px);
    left: 50%;
    transform: translateX(-50%);
  }
}
