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

:root {
  --dark-green: #1F4D36;
  --soft-sage: #E8F1EA;
  --warm-beige: #FDFBF7;
  --accent-orange: #F28C38;
  --text-main: #1F2933;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;
  --white: #FFFFFF;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--warm-beige);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--dark-green);
  line-height: 1.2;
  font-weight: 600;
}

a {
  color: var(--dark-green);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--white);
}

.bg-soft-sage {
  background-color: var(--soft-sage);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

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

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(242, 140, 56, 0.3);
}

.btn-primary:hover {
  background-color: #e07a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 140, 56, 0.4);
  color: var(--white);
}

.btn-block {
  width: 100%;
  padding: 20px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  text-align: center;
  background: linear-gradient(rgba(31, 77, 54, 0.7), rgba(31, 77, 54, 0.8)), url('images/product-bedroom.jpg') center/cover no-repeat;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--white);
}

.hero p {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--dark-green);
  color: var(--white);
  padding: 12px 0;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 40px;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
}

.marquee-content svg {
  margin-right: 8px;
  color: var(--accent-orange);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.split-section img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.story-text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.story-highlight {
  color: var(--dark-green);
  font-weight: 600;
  background: linear-gradient(120deg, rgba(242, 140, 56, 0.2) 0%, rgba(242, 140, 56, 0.2) 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 88%;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--soft-sage);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Fragrances */
.scents-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .scents-collage {
    grid-template-columns: repeat(2, 1fr);
  }
}

.scent-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.scent-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scent-item:hover img {
  transform: scale(1.05);
}

.scent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--white);
}

.scent-overlay h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.scent-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin: 0;
}

/* Single Offer */
.single-offer {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .single-offer {
    flex-direction: row;
  }
}

.single-offer-image {
  flex: 1;
  background: var(--soft-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.single-offer-image img {
  width: 100%;
  max-width: 400px;
  mix-blend-mode: multiply;
}

.single-offer-details {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-offer-details ul {
  list-style: none;
  margin-bottom: 30px;
}

.single-offer-details li {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.price-block {
  margin-bottom: 30px;
}

.price-current {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  color: var(--dark-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer h3, .footer h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-legal-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

/* Legal Content Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
}

.legal-content h3 {
  font-size: 20px;
  margin: 30px 0 15px;
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--text-main);
}

.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text-main);
}