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

:root {
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-dark: #1a1a1a;
  --text-primary: #2d2d2d;
  --text-secondary: #666666;
  --text-light: #999999;
  --accent-gold: #c9a86c;
  --accent-gold-dark: #b8956a;
  --accent-rose: #d4a5a5;
  --accent-sage: #a8b5a2;
  --border-light: #e8e8e8;
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.title-xl {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  color: var(--accent-gold);
}

.subtitle {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #fdfcfa 0%, #f5f3f0 100%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-diamond {
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  animation: diamondPulse 1.5s infinite ease-in-out;
}

.loader-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--text-secondary);
  animation: fadeInOut 1.5s infinite;
}

@keyframes diamondPulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(201, 168, 108, 0.3);
    transform: rotate(45deg) scale(1);
  }
  50% { 
    box-shadow: 0 0 30px 10px rgba(201, 168, 108, 0.15);
    transform: rotate(45deg) scale(1.05);
  }
}

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

/* Affiliate Banner */
.affiliate-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  z-index: 2000;
}

/* Header */
header {
  position: absolute;
  top: 44px; width: 100%;
  padding: 20px 5%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 15px 5%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  position: relative;
  font-weight: 500;
}

.brand-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: 1.5px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn:hover {
  background: var(--text-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-solid {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

.btn-solid:hover {
  background: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0; left: -100%;
  width: 100%; height: 100vh;
  background: var(--bg-secondary);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.5s ease;
}

.mobile-nav.open { left: 0; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a { 
  font-family: var(--font-serif); 
  font-size: 2rem; 
  color: var(--text-primary); 
}

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

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

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  background: linear-gradient(180deg, #fdfcfa 0%, var(--bg-primary) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin: auto;
  padding: 4rem 0;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px; right: 30px; bottom: 30px;
  border: 1px solid var(--accent-gold);
  opacity: 0.3;
  z-index: -1;
}

.hero-img-wrapper img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow-hover);
  border-radius: 4px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 2rem 0 3rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 3rem;
}

.hero-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.hero-images img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 1000px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 3rem; 
  }
  .hero-text p { margin: 2rem auto 3rem; }
  .hero-images { max-width: 500px; margin: 3rem auto 0; }
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  position: relative;
}

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

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

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

.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.1), rgba(201, 168, 108, 0.05));
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-gold);
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* Product Showcase */
.product-showcase {
  padding: 120px 0;
  background: var(--bg-primary);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.showcase-image {
  position: relative;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.showcase-image:hover img {
  transform: scale(1.05);
}

.price-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin: 1.5rem 0;
}

.showcase-features {
  list-style: none;
  margin: 2rem 0;
}

.showcase-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.showcase-features li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 600;
}

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

/* Testimonial */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.testimonial-author {
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Product Page */
.internal-page {
  padding: 180px 0 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-image-main {
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  background: var(--bg-secondary);
}

.product-image-main img {
  width: 100%;
  display: block;
}

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.product-thumbs img {
  width: 80px; height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border-light);
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.product-thumbs img:hover, .product-thumbs img.active {
  opacity: 1;
  border-color: var(--accent-gold);
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  margin-bottom: 2rem;
}

.product-specs {
  list-style: none;
  margin: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-specs span:last-child {
  color: var(--text-secondary);
}

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

/* Comparison Table */
.comparison-wrapper {
  margin-top: 80px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  background: var(--bg-primary);
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.comparison-table td:first-child, .comparison-table th:first-child {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.highlight-col {
  background-color: rgba(201, 168, 108, 0.08);
}

/* Contact & Legal */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 { margin-bottom: 3rem; text-align: center; }
.legal-content h2 { font-size: 1.5rem; margin: 3rem 0 1rem; color: var(--text-primary); }
.legal-content p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.8; }

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

.form-input {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 2rem;
  border: none;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-bottom-color: var(--accent-gold);
}

.form-input::placeholder {
  color: var(--text-light);
}

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

/* Footer */
footer {
  background-color: var(--bg-dark);
  padding: 80px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: block;
  color: #fff;
  letter-spacing: 0.08em;
}

.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: block;
}

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

.footer-col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .footer-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0; width: 100%;
  background: var(--bg-secondary);
  border-top: 1px solid var(--accent-gold);
  padding: 25px 5%;
  z-index: 9999;
  transition: bottom 0.5s ease;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

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

.cookie-content a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 0.7rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background: transparent;
}

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

/* Editorial / Review Page */
.editorial-article {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-article img {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 4px;
}

.editorial-article h3 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-primary);
}

.editorial-article p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.pull-quote {
  border-left: 3px solid var(--accent-gold);
  padding: 1rem 0 1rem 2rem;
  margin: 3rem 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-primary);
}
