@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg-main: #ffffff;
  --bg-card: #faf8f5;
  --bg-alt: #f4efe9;
  
  --text-main: #2d2d2d;
  --text-muted: #6e6e6e;
  
  --accent-primary: #b59871;
  --accent-hover: #9c805a;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 5rem;
  --spacing-xxl: 8rem;
  
  --radius-sm: 0px; /* Minimalist sharp edges */
  --radius-md: 4px;
  
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.03);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography */
.h1, .h2, .h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-main);
}

.h1 { font-size: 3.5rem; letter-spacing: -1px; }
.h2 { font-size: 2.5rem; }
.h3 { font-size: 1.5rem; }

.text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  font-weight: 300;
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-primary);
  margin-bottom: var(--spacing-sm);
  display: block;
  font-weight: 600;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-main);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid #dcdcdc;
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: var(--bg-card);
}

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

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

.btn-full {
  width: 100%;
  display: block;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--bg-alt);
  color: var(--text-main);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
  border: 1px solid #eaeaea;
}

/* Affiliate Bar */
.affiliate-bar {
  background: var(--bg-alt);
  color: var(--text-muted);
  text-align: center;
  padding: 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.header.scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  font-weight: 600;
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--bg-card);
}

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

.hero-content {
  padding-right: 2rem;
}

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

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-primary);
  z-index: 0;
}

.hero-img {
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: var(--spacing-xl);
}

.feature-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 2px solid var(--bg-alt);
  transition: var(--transition);
}

.feature-card:hover {
  border-top-color: var(--accent-primary);
  background: var(--bg-card);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
  opacity: 0.9;
}

.gallery-item:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* CTA Block */
.cta-block {
  background: var(--bg-main);
  padding: 5rem 3rem;
  text-align: center;
  border: 1px solid #eaeaea;
  box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
  background: var(--bg-card);
  padding: 5rem 0 3rem;
  border-top: 1px solid #eaeaea;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--text-main);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid #eaeaea;
  color: #a0a0a0;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Form Styles */
.form-group {
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  border: 1px solid #dcdcdc;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--bg-card);
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
}

.contact-info {
  background: var(--bg-card);
  padding: 3rem;
  border: 1px solid #eaeaea;
}

.contact-info h2 {
  font-size: 1.8rem;
}

/* Review layout */
.review-article {
  max-width: 750px;
  margin: 0 auto;
}

.review-article img {
  width: 100%;
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.review-article .h2 {
  margin-top: 3.5rem;
}

.verdict-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent-primary);
  padding: 2.5rem;
  margin: 4rem 0;
}

/* Order Layout */
.order-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.order-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.order-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}

.order-thumb:hover, .order-thumb.active {
  opacity: 1;
  border-color: var(--accent-primary);
}

.price-card {
  background: var(--bg-main);
  padding: 3rem;
  border: 1px solid #eaeaea;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
}

.specs-table th, .specs-table td {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}

.specs-table th {
  color: var(--text-muted);
  font-weight: 400;
  width: 45%;
}

.specs-table td {
  color: var(--text-main);
  font-weight: 600;
}

/* Legal Pages */
.legal-content {
  max-width: 750px;
  margin: 0 auto;
}

.legal-content .h2 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

.legal-content ul {
  margin: 1.5rem 0 1.5rem 2rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.75rem;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid #eaeaea;
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--text-main);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  z-index: 9998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  font-size: 0.85rem;
  color: #ccc;
  max-width: 800px;
  line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .contact-grid, .order-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-img-wrapper::after {
    display: none; /* Simplify on mobile */
  }
  
  .h1 { font-size: 2.8rem; }
  
  .price-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    flex-direction: column;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
    box-shadow: var(--shadow-sm);
  }
  
  .nav.active {
    display: flex;
  }
  
  .features-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  #cookie-banner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
