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

:root {
  --primary-dark: #2d3e2f; /* Deep Botanical Green */
  --accent-rose: #d4a39a; /* Muted Rose */
  --accent-gold: #c5a059; /* Aged Gold */
  --bg-cream: #fdfbf7; /* Airy Parchment */
  --text-main: #333333;
  --text-light: #6b6b6b;
  --glass: rgba(255, 255, 255, 0.7);
  --border-subtle: rgba(45, 62, 47, 0.1);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeIn 1.2s ease forwards;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navigation - Glassmorphism */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

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

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.nav-icon {
  height: 40px;
  width: auto;
  margin-right: 15px;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  position: relative;
}

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

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(253, 251, 247, 0.4), rgba(253, 251, 247, 0.4)), url('/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  max-width: 900px;
  padding: 60px;
  background: var(--glass);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  line-height: 1;
}

.hero p {
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

/* Sections */
section {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '✦';
  display: block;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-top: 10px;
}

/* Product Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
}

.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.product-card .image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f0f0f0;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  border: 1px solid var(--primary-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--primary-dark);
}

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

/* Product Page Specifics */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 150px;
}

.product-gallery img {
  width: 100%;
  border: 1px solid var(--border-subtle);
}

.product-info-wrap h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.product-info-wrap .price-large {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 40px;
  display: block;
}

.meta-box {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  margin-top: 50px;
}

.meta-box h4 {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.footer-logo {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .product-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 3rem; }
  .product-gallery { position: static; }
}
