@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #c73e54;
  --accent-pale: #fde8eb;
  --surface: #f8f9fa;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { font-weight: 300; }

.accent-text { color: var(--accent); }

/* Container */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.preloader-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 25px;
  animation: expand 3s ease-in-out infinite;
}

@keyframes expand {
  0% { width: 30px; opacity: 0.5; }
  50% { width: 90px; opacity: 1; }
  100% { width: 30px; opacity: 0.5; }
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 4%;
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

header.active {
  background: var(--primary);
  padding: 14px 4%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
}



.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}



.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* Header Light Theme (for non-hero pages at top) */
header.light-theme .brand {
  color: var(--primary);
}
header.light-theme .nav-links a {
  color: var(--primary);
}
header.light-theme .nav-links a:hover,
header.light-theme .nav-links a.active {
  color: var(--accent);
}
header.light-theme .hamburger span {
  background: var(--primary);
}
header.light-theme .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}
header.light-theme .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
header.light-theme > div:first-child {
  color: var(--text-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}



.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26, 26, 46, 0.95);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 380px;
  max-width: 85%;
  height: 100vh;
  background: var(--white);
  z-index: 1500;
  padding: 100px 3rem;
  transition: right var(--transition);
  box-shadow: -10px 0 50px rgba(0,0,0,0.15);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1.8rem;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 4% 80px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(233, 69, 96, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  animation: fadeUp 1s ease-out 0.3s both;
}

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

.hero-text .label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--accent-pale);
  padding: 8px 16px;
  border-radius: 30px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text .description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-image {
  position: relative;
  animation: fadeUp 1s ease-out 0.6s both;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}

.hero-price-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 22px 40px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text .description { margin: 0 auto 2.5rem; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 420px; margin: 0 auto; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}



/* Features Section */
.features {
  padding: 100px 4%;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.section-header .label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-pale);
  border-radius: 16px;
  font-size: 1.8rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Product Section */
.product-section {
  padding: 100px 4%;
  background: var(--surface);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.product-images {
  position: relative;
}

.product-main-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.product-thumbnails img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.product-thumbnails img.active {
  border-color: var(--accent);
}

.product-details h1 {
  margin-bottom: 0.5rem;
}

.product-details .subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.product-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-meta {
  list-style: none;
  margin-bottom: 2.5rem;
}

.product-meta li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.product-meta li span:first-child {
  font-weight: 500;
}

.product-meta li span:last-child {
  color: var(--text-light);
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 110px 4%;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 4% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact strong {
  color: var(--white);
}

.footer-bottom {
  max-width: 1180px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Cookie Popup */
#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  color: var(--text);
  z-index: 9999;
  padding: 30px 4%;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -5px 40px rgba(0,0,0,0.1);
}

#cookie-popup.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-accept:hover {
  background: var(--accent-hover);
}

.btn-reject {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-reject:hover {
  border-color: var(--text);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.7s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Page Styles */
.contact-page {
  padding: 150px 4% 100px;
  min-height: 100vh;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-info {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 1rem;
}

.contact-item a {
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form h2 {
  margin-bottom: 2rem;
}

.form-field {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-field:focus {
  outline: none;
  border-color: var(--accent);
}

textarea.form-field {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Legal Pages */
.legal-area {
  max-width: 800px;
  margin: 150px auto 100px;
  padding: 0 4%;
}

.legal-area h1 {
  margin-bottom: 2rem;
}

.legal-area h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  color: var(--accent);
}

.legal-area p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-area ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.legal-area li {
  margin-bottom: 0.5rem;
}

/* Review Section */
.review-section {
  padding: 80px 4%;
  background: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.review-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.review-card .stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-card .review-text {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
}

.review-card .author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.review-card .author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}