:root {
  --red: #931710;
  --red-dark: #650f0a;
  --red-darker: #4a0b07;
  --cream: #fbf8f3;
  --gray-light: #d9d9d9;
  --text: #2b2725;
  --text-soft: #5c5450;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(74, 11, 7, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(147, 23, 16, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
}

.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--red); }

.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 24px;
}

.lang-btn {
  border: 1.5px solid var(--red);
  background: transparent;
  color: var(--red);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 9px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.3;
}

.lang-btn:hover { background: rgba(147, 23, 16, 0.08); }

.lang-btn.active {
  background: var(--red);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, var(--red-dark), var(--red-darker) 70%);
  color: #fff;
  text-align: center;
  padding: 84px 24px 96px;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-light {
  background: #fff;
  color: var(--red-dark);
  box-shadow: var(--shadow);
}

/* About */
.about {
  padding: 72px 24px;
}

.about-inner {
  max-width: 760px;
  text-align: center;
}

.about h2 {
  color: var(--red);
  font-size: 1.8rem;
}

.about p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Products */
.products {
  padding: 72px 24px 88px;
  background: #fff;
}

.section-title {
  text-align: center;
  color: var(--red);
  font-size: 1.8rem;
  margin-bottom: 44px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.product-card:hover { transform: translateY(-6px); }

.icon-badge {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(74, 11, 7, 0.15);
}

.icon-emoji {
  font-size: 2.1rem;
  line-height: 1;
}

.icon-slash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84%;
  height: 4px;
  background: var(--red);
  border-radius: 3px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-card h3 {
  color: var(--red-dark);
  font-size: 1.25rem;
}

.product-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0;
}

.products-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 40px;
}

/* FAQ */
.faq {
  padding: 72px 24px 88px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 8px 26px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 16px 0;
  font-weight: 600;
  color: var(--red-dark);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 400;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  color: var(--text-soft);
  font-size: 0.95rem;
  padding-bottom: 18px;
  margin: 0;
}

/* Contact */
.contact {
  background: linear-gradient(160deg, var(--red-dark), var(--red-darker));
  color: #fff;
  padding: 72px 24px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact h2 {
  color: #fff;
  font-size: 1.8rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  font-weight: 700;
}

.contact-info a {
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover { text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.contact-map iframe {
  display: block;
}

.map-load-btn {
  width: 100%;
  height: 320px;
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s ease;
}

.map-load-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.map-load-btn small {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--gray-light);
  max-width: 260px;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: var(--red-darker);
  color: var(--gray-light);
  padding: 28px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

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

.footer-logo {
  height: 32px;
  width: 32px;
  border-radius: 8px;
}

.footer-inner p { margin: 0; }

.footer-legal-id {
  font-size: 0.78rem;
  color: rgba(217, 217, 217, 0.75);
  margin-top: 2px !important;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-sal-badge {
  display: inline-flex;
  align-items: center;
}

.footer-sal-badge img {
  height: 34px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.footer-social {
  color: var(--gray-light);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-social:hover {
  color: #fff;
}

/* Legal pages */
.legal-page {
  padding: 56px 24px 88px;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-inner h1 {
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 6px;
}

.legal-updated {
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.legal-notice {
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.legal-inner h2 {
  color: var(--red-dark);
  font-size: 1.25rem;
  margin-top: 36px;
}

.legal-inner p,
.legal-inner li {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.legal-inner ul {
  padding-left: 20px;
}

.legal-inner li {
  margin-bottom: 6px;
}

.legal-inner a {
  color: var(--red);
  font-weight: 600;
}

.legal-inner strong {
  color: var(--text);
}

.legal-back {
  display: inline-block;
  margin-top: 40px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

.legal-back:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 800px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(147, 23, 16, 0.12);
    display: none;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .lang-switch { margin-left: auto; }
}
