﻿:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --accent: #d4af37;
  --light-gray: #fafafa;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

html {
  scroll-behavior: smooth;
} 

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.section {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.light {
  background: var(--white);
  color: var(--black);
}

.dark {
  background: var(--black);
  color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--black);
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.header .nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Make logo noticeably smaller (≈ 3× smaller than previous 140px) */
.logo-wrap img {
  width: 48px;
  height: auto;
}

/* Keep footer logo matching header size */
.footer-left img {
  width: 48px;
  height: auto;
}

.header .nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header .nav-link:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.lang-toggle {
  display: flex;
  gap: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  /* Center the bars inside the button both horizontally and vertically */
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  display: block;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.menu-toggle:focus {
  outline: 2px solid rgba(0,0,0,0.12);
  outline-offset: 2px;
} 

.lang-btn {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.8);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.lang-btn.active {
  background: var(--black);
  color: var(--white);
}

.lang-btn:hover {
  transform: scale(1.05);
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 20px;
  align-items: center;
  padding-top: 160px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  margin: 12px 0 16px;
  letter-spacing: -0.5px;
}

.subtitle {
  max-width: 540px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.72);
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  display: grid;
  gap: 16px;
  max-width: 640px;
  justify-items: center;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.badge {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}

.dark .subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.hero-note {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 320px;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 24px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: inline-block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  font-size: 15px;
}

.btn.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  background: #333;
}

.btn.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.about-text h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.about-text p {
  max-width: 520px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 16px;
}

.about-text {
  max-width: 560px;
  justify-self: start;
}

#about .section-header {
  text-align: center;
}

#about .about-grid {
  align-items: center;
  justify-items: start;
  gap: 24px;
  grid-template-columns: auto 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }
  .about-text {
    justify-self: center;
    text-align: center;
    max-width: 640px;
  }
  .about-image img {
    max-width: 320px;
  }
}

#about {
  padding: 100px 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* ensure product cards sit above decorative SVG */
}

#products {
  position: relative;
  overflow: visible;
}

.products-bg-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px; /* lowered to sit near center of product cards */
  width: 130%;
  max-width: 1600px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
}

.products-bg-line path {
  stroke: rgba(0,0,0,0.18);
  stroke-width: 10; /* slightly thicker for larger loop */
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.product-info {
  padding: 20px;
  background: #f8f8f8;
}

.product-info h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
}

.product-info p {
  margin: 0 0 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.light .product-info p {
  color: rgba(0, 0, 0, 0.72);
}

.price {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--accent);
}

.product-rating {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.special-offer {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: var(--white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 48px;
  font-weight: 600;
  font-size: 16px;
}

.promo-container {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.promo-card {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 32px 40px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  text-align: center;
}

.promo-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--white);
}

.promo-card p {
  margin: 0 0 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.promo-card strong {
  color: var(--accent);
  font-size: 24px;
}

.promo-code {
  background: rgba(212, 175, 55, 0.15);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin: 0;
}

.promo-code code {
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
}

.light .product-info p {
  color: rgba(0, 0, 0, 0.72);
}

.price {
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 200;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  color: var(--black);
  padding: 24px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.modal-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
  font-size: 14px;
  background: #f9f9f9;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    padding: 0 16px;
  }
}

@media (max-width: 700px) {
  .header {
    padding: 10px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .header .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: none;
  }

  .header .nav.open {
    display: flex;
  }

  /* Hide inline header language switch on mobile and show it inside the burger nav */
  .header .lang-toggle {
    display: none;
  }

  .nav .lang-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }

  .lang-toggle {
    order: 3;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card {
    padding: 0;
  }
  
  .product-image-wrapper {
    height: 220px;
  }
  
  .product-card .product-image {
    height: 220px;
  }
  
  .product-info {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 12px;
  }

  .product-image-wrapper {
    height: 200px;
  }
  
  .product-card .product-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 12px;
  }
  
  .product-card {
    padding: 0;
  }
  
  .product-image-wrapper {
    height: 180px;
  }
  
  .product-card .product-image {
    height: 180px;
  }
  
  .product-info {
    padding: 14px;
  }
  
  .product-info h3 {
    font-size: 18px;
  }
  
  .product-info p {
    font-size: 14px;
  }
  
  .product-buy, .btn.btn-primary {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
  }
  
  .special-offer {
    padding: 16px;
    font-size: 14px;
  }
  
  .promo-card {
    padding: 24px 20px;
    margin: 0 16px;
  }
  
  .promo-card h3 {
    font-size: 20px;
  }
  
  .promo-code {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .promo-code code {
    font-size: 16px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
} 

.card {
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light .card {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.product-card.card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.light .product-card.card {
  background: transparent;
  border: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.product-card.card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.light .card p {
  color: rgba(0, 0, 0, 0.72);
}
.reviewer {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
}

.review-stars {
  margin-bottom: 14px;
  font-size: 18px;
  color: #ffc107;
}

.review-text {
  margin: 0 0 16px !important;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.72);
  font-style: italic;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
  align-items: start;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
  font-size: 14px;
  background: #f9f9f9;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
  gap: 24px;
}

.footer.dark {
  background: var(--black);
  color: var(--white);
}

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.instagram {
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.pattern {
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.has-corner-stars::before,
.has-corner-stars::after {
  content: "✦ ✦ ✦ ✦ ✦";
  position: absolute;
  font-size: 14px;
  opacity: 0.08;
  pointer-events: none;
}

.has-corner-stars::before {
  top: 18px;
  left: 18px;
}

.has-corner-stars::after {
  bottom: 18px;
  right: 18px;
  transform: rotate(180deg);
}

#home, #about, #advantages, #products, #reviews, #contact {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  .header {
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
  }

  .header .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 140px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 12px;
  }
  
  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 96px 18px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 15px;
  }

  .header {
    position: sticky;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 100px;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .subtitle {
    font-size: 14px;
    padding: 0 6px;
  }
  .header .nav {
    top: 56px;
    padding: 12px 16px;
  }
  .header .nav.open {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    z-index: 150;
  }
  .header .nav-link {
    display: block;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    border-radius: 8px;
  }

  /* Move burger to the right and hide inline lang buttons on small screens */
  .menu-toggle {
    z-index: 160;
    margin-left: auto;
    order: 4;
  }

  .header .lang-toggle {
    display: none;
  }

  .nav .lang-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }

  .nav .lang-btn {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 999px;
  }

  .modal {
    max-width: calc(100% - 32px);
    border-radius: 12px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }
  .modal-close {
    font-size: 22px;
    padding: 8px;
  }
  .contact-form {
    padding: 0 12px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 90px;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .subtitle {
    font-size: 13px;
  }
  .product-card {
    padding: 12px;
  }
  .product-card .product-image {
    height: 160px;
  }
  .product-info h3 {
    font-size: 17px;
  }
  .product-info p {
    font-size: 13px;
  }
  .btn.primary {
    padding: 12px;
    font-size: 15px;
  }
  .menu-toggle {
    padding: 8px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 80px;
  }
  .hero-content h1 {
    font-size: 22px;
  }
  .subtitle {
    font-size: 13px;
  }
  .product-card .product-image {
    height: 140px;
  }
  .product-info h3 {
    font-size: 16px;
  }
  .product-info p {
    font-size: 13px;
  }
  .btn.primary {
    padding: 11px;
    font-size: 15px;
  }
  .header {
    padding: 8px 12px;
  }
  .menu-toggle span {
    width: 20px;
  }
}




.hero-gift {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(212, 175, 55, 0.16));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.hero-gift-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  opacity: 0.6;
  font-weight: 600;
  margin: 0;
}

.hero-gift-title {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  font-size: 22px;
}

.hero-gift-message {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
}

.hero-gift-discount {
  margin: 8px 0 0;
  font-weight: 700;
  color: var(--black);
}

.hero-gift-code {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.hero-gift-code-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.hero-gift-code-value {
  font-family: "Courier New", monospace;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.hero-gift-cta {
  width: fit-content;
}

@media (max-width: 760px) {
  .hero-gift {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-gift-code {
    justify-items: center;
  }
}
