:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --primary: #0f172a;
  --accent: #1d4ed8;
  --accent-soft: #dbeafe;
  --success: #25d366;
  --success-dark: #1faa52;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 34px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1240px;
  --transition: 0.25s ease;
  --header-height: 82px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216, 0.07), transparent 30%),
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.05), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding-top: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/*
#header-spacer {
  height: var(--header-height);
}
*/

.header-container {
  max-width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav ul li a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.desktop-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu */
#mobileMenuOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.98);
  padding: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#mobileMenuOverlay.active {
  display: flex;
}

#mobileMenuOverlay nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

#mobileMenuOverlay nav ul li a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

#mobileMenuOverlay button#closeMobileMenu {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

/* Hero */
.hero-section {
  max-width: var(--container);
  margin: 28px auto 0;
  padding: 0 20px;
}

.hero-inner {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96)),
    #0f172a;
  color: #fff;
  border-radius: 28px;
  padding: 64px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-inner::before,
.hero-inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-inner::before {
  width: 280px;
  height: 280px;
  right: -80px;
  top: -90px;
  background: rgba(37, 211, 102, 0.08);
}

.hero-inner::after {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  background: rgba(29, 78, 216, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

#banner h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.86);
  font-size: 1.06rem;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.banner-buttons .btn {
  min-width: 170px;
  padding: 15px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-sm);
}

.banner-buttons .btn:hover {
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: var(--success);
  color: #fff;
}

.whatsapp-btn:hover {
  background: var(--success-dark);
}

.phone-btn {
  background: #fff;
  color: var(--primary);
}

/* Section Head */
.section-head {
  max-width: 780px;
  margin: 0 auto 30px;
  padding: 0 20px;
  text-align: center;
}

.section-head.left {
  max-width: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--muted);
}

/* Products */
#products {
  padding: 72px 0 8px;
}

.products-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 40px;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-header {
  margin: 10px 0 16px;
}

.product-header h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 18px;
  background: #edf2f7;
  border: 1px solid var(--border);
}

.slider-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-inner img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  flex: 0 0 100%;
}

.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgb(15 23 42 / 31%);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  z-index: 1;
  transition: background var(--transition), transform var(--transition);
}

.slider .prev:hover,
.slider .next:hover {
  background: rgba(15, 23, 42, 0.88);
}

.slider .prev {
  left: 12px;
}

.slider .next {
  right: 12px;
}

/* Product details */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.product-details div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 12px 13px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.product-details div strong {
  font-weight: 700;
}

/* Prices */
.variation-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.variation-prices div {
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
  color: #0f172a;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid #bfdbfe;
  font-weight: 700;
  font-size: 0.94rem;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.variation-prices .disabled-variant {
  background: #f8fafc;
  color: #94a3b8;
  border: 1px dashed var(--border);
  opacity: 0.9;
  cursor: default;
}

.vat-info {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 44px;
}

/* Purchase button */
.purchase-btn {
  margin-top: auto;
}

.purchase-btn a {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, var(--success), #1fb45c);
  color: #fff;
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.purchase-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}

/* About / FAQ / Contact */
section#about,
section#faq,
section#contact {
  max-width: var(--container);
  margin: 28px auto;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

section#about p,
section#faq p,
section#contact p {
  color: #334155;
}

/* FAQ */
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
}

.contact-info p + p {
  margin-top: 10px;
}

.contact-info a {
  color: var(--accent);
  font-weight: 700;
}

.map {
  margin-top: 0;
}

.responsive-map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: #e2e8f0;
}

.responsive-map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  margin-top: 32px;
}

.footer-inner p {
  color: rgba(255,255,255,0.82);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 16px;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 680px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-container {
    padding: 0 16px;
  }

  .brand a {
    font-size: 1rem;
  }

  .hero-inner {
    padding: 48px 18px;
    border-radius: 22px;
  }

  .banner-buttons .btn {
    width: 100%;
    min-width: 0;
  }

  section#about,
  section#faq,
  section#contact {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .product {
    padding: 14px;
    border-radius: 18px;
  }

  /* .product-details {
    grid-template-columns: 1fr;
  }
  */
  .variation-prices {
    grid-template-columns: 1fr;
  }

  .slider .prev,
  .slider .next {
    width: 38px;
    height: 38px;
  }
}



.hero-inner > * {
  position: relative;
  z-index: 1;
}


.brand-logo {
  height: 48px;       
  width: auto;         
  display: block;      
}

.brand a {
  display: flex;
  align-items: center;
}