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

:root {
  --bg-primary: #FAF6F0; /* Soft cream background */
  --bg-secondary: #FFFDFB; /* Warm pure white */
  --bg-card: #FFFFFF;
  --text-primary: #2C2623; /* Deep espresso charcoal */
  --text-secondary: #6B5E59; /* Muted earth grey */
  --accent: #B88E74; /* Warm terracotta clay */
  --accent-light: #F0E5DE; /* Soft sand blush */
  --accent-dark: #8F6A52; /* Deep clay */
  --accent-glow: rgba(184, 142, 116, 0.15);
  --success: #6A8E7F; /* Sage green */
  --border-color: rgba(184, 142, 116, 0.2);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(44, 38, 35, 0.03);
  --shadow-md: 0 8px 30px rgba(44, 38, 35, 0.06);
  --shadow-lg: 0 16px 48px rgba(44, 38, 35, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

section[id] {
  scroll-margin-top: 80px; /* Accounts for fixed header when scrolling to anchors */
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
  transition: var(--transition);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 142, 116, 0.1);
  transition: var(--transition);
}

header.scrolled {
  padding: 14px 40px;
  background: rgba(250, 246, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.logo {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 1px solid var(--border-color);
  padding-left: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--text-secondary);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-icon-btn {
  position: relative;
  font-size: 1.3rem;
  color: var(--text-primary);
  padding: 8px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.cart-icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  margin-top: 100px;
  padding: 60px 40px 100px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-primary);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.btn {
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

.hero-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

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

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.hero-badge h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-badge p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Features Section */
.features {
  background-color: var(--bg-secondary);
  padding: 80px 40px;
  border-top: 1px solid rgba(184, 142, 116, 0.08);
  border-bottom: 1px solid rgba(184, 142, 116, 0.08);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--accent);
  color: white;
  transform: rotateY(180deg);
}

.feature-item h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 300px;
}

/* Interactive Scent Guide */
.scent-guide-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.scent-guide-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.guide-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.guide-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--accent-light);
  z-index: 1;
}

.guide-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.guide-step:hover {
  opacity: 0.8;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.guide-step.active .step-num {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.guide-step.completed .step-num {
  border-color: var(--success);
  background: var(--success);
  color: white;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.guide-step.active .step-label {
  color: var(--text-primary);
  font-weight: 600;
}

.guide-panel {
  display: none;
}

.guide-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.panel-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 24px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.option-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.option-card.selected {
  border-color: var(--accent);
  background-color: var(--accent-light);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.option-icon {
  font-size: 2.2rem;
  color: var(--accent);
}

.option-card h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

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

.guide-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* Scent recommendation outcome */
.recommendation-panel {
  text-align: center;
}

.recommendation-card {
  max-width: 600px;
  margin: 30px auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.recommendation-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.rec-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-primary);
}

.rec-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 480px;
}

.rec-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tag {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-dark);
}

/* Shop Catalog */
.shop-section {
  padding: 80px 40px;
  background-color: var(--bg-secondary);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 142, 116, 0.4);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-primary);
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.product-rating {
  color: var(--accent);
  font-size: 0.85rem;
  display: flex;
  gap: 4px;
}

.product-info h3 {
  font-size: 1.45rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 142, 116, 0.1);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.btn-add-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1rem;
}

.btn-add-cart:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.1);
}

/* Sliding Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
}

.cart-drawer.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 38, 35, 0.4);
  backdrop-filter: blur(4px);
  z-index: 109;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(184, 142, 116, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
}

.btn-close-cart {
  font-size: 1.4rem;
  color: var(--text-secondary);
}

.btn-close-cart:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.empty-cart-message {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-cart-icon {
  font-size: 3rem;
  color: var(--accent-light);
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 142, 116, 0.08);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-primary);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--accent-dark);
  font-weight: 500;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-remove-item {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.btn-remove-item:hover {
  color: #c94c4c;
}

.btn-edit-mix {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.2s ease;
}

.btn-edit-mix:hover {
  color: var(--accent-dark);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(184, 142, 116, 0.1);
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subtotal-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

.subtotal-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Order Checkout Form Modal/Section inside drawer */
.checkout-form-container {
  display: none;
  padding: 24px;
  background: var(--bg-card);
  height: 100%;
  overflow-y: auto;
  position: absolute;
  inset: 0;
  z-index: 10;
  animation: slideIn 0.3s ease;
}

.checkout-form-container.active {
  display: block;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184, 142, 116, 0.1);
}

.checkout-header h3 {
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  background-color: var(--bg-primary);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.pickup-location-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-primary);
  padding: 12px;
}

.pickup-location-card select {
  background-color: var(--bg-secondary);
}

.pickup-address-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
}

.pickup-map-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-secondary);
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.pickup-map-btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.pickup-address {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.45;
}

.pickup-leadtime-note {
  margin-top: 7px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.map-provider-chooser {
  position: fixed;
  z-index: 5000;
  width: min(260px, calc(100vw - 24px));
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

.map-provider-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.map-provider-actions {
  display: grid;
  gap: 8px;
}

.map-provider-btn {
  min-height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-primary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-weight: 600;
  text-align: left;
}

.map-provider-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.payment-note {
  margin: 20px 0;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.interac-instructions {
  margin: 18px 0;
  border: 1px solid rgba(106, 142, 127, 0.35);
  border-radius: 12px;
  padding: 14px;
  background: rgba(106, 142, 127, 0.08);
  color: var(--text-primary);
}

.interac-instructions h4 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.interac-instructions p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.interac-instructions strong {
  color: var(--text-primary);
}

.order-total-box {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-primary);
  padding: 12px;
  margin: 14px 0 18px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.order-total-row strong {
  color: var(--text-primary);
}

.order-total-row.total {
  border-top: 1px solid var(--border-color);
  margin-top: 6px;
  padding-top: 10px;
  color: var(--text-primary);
  font-size: 1rem;
}

.interac-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(106, 142, 127, 0.18);
  font-size: 0.86rem;
}

.interac-detail span:first-child {
  color: var(--text-secondary);
}

.interac-detail span:last-child {
  font-weight: 700;
  text-align: right;
}

/* Contact and Custom Orders */
.contact-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.contact-info p {
  color: var(--text-secondary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* Footer / Newsletter */
footer {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 80px 40px 40px 40px;
  border-top: 1px solid rgba(184, 142, 116, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: white;
}

.footer-logo span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 8px;
}

.footer-brand p {
  color: #A89B95;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4, .footer-newsletter h4 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #A89B95;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-newsletter p {
  color: #A89B95;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.newsletter-form button:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8A7E78;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A89B95;
}

.social-links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  min-width: 280px;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.success {
  border-left-color: var(--success);
}

.toast.error {
  border-left-color: #c94c4c;
}

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

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-description {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand p, .footer-newsletter p {
    margin: 0 auto;
  }
  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  header {
    padding: 16px 20px;
  }
  header.scrolled {
    padding: 16px 20px; /* Keep padding static to prevent horizontal jump/resize on scroll */
  }
  .logo-img {
    height: 34px; /* Slightly smaller icon on mobile */
  }
  .logo-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .brand-name {
    font-size: 1.4rem; /* Scale down brand name on mobile */
  }
  .brand-tagline {
    border-left: none;
    padding-left: 0;
    font-size: 0.68rem; /* Smaller subtitle */
    letter-spacing: 0.08em;
    margin-top: 1px;
  }
  section[id] {
    scroll-margin-top: 70px; /* Accounts for smaller fixed header on mobile */
  }
  .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    margin: 0;
  }
  .nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 12px; /* Generous touch target to prevent misstaps on mobile */
    display: inline-block;
  }
  .nav-links a.nav-item-desktop {
    display: none !important;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .scent-guide-widget {
    padding: 20px;
  }
  .options-grid {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    width: 100%;
    right: -100%;
    height: 100dvh; /* Fix for mobile address bar cropping bottom buttons */
  }
  .cart-footer {
    padding: 16px 16px 24px 16px; /* Squeeze padding on mobile to save vertical space */
  }
  .step-label {
    display: none;
  }
  .shop-section {
    padding: 40px 16px;
  }
  .shop-grid {
    grid-template-columns: 1fr; /* Force 1 column on mobile to prevent squishing */
    gap: 20px;
  }
  .product-info {
    padding: 18px 16px; /* Squeeze padding on mobile to maximize content space */
  }
  .product-info h3 {
    font-size: 1.25rem; /* Slightly smaller heading */
  }
  .product-price {
    font-size: 1.3rem; /* Slightly smaller price text */
  }
}

/* Custom Package Detail Layout */
.package-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 8px;
}

.package-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.spec-badge {
  background-color: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-includes li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.package-includes li i {
  color: var(--accent);
  font-size: 0.75rem;
  width: 12px;
  text-align: center;
}

.package-extras {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: auto;
  border-top: 1px dashed rgba(184, 142, 116, 0.18);
  padding-top: 10px;
  line-height: 1.4;
}

/* Menu Board Layout (One-Page compact Menu for Mobile/Desktop) */
.menu-board {
  max-width: 800px;
  margin: 0 auto 50px auto;
  background: var(--bg-card);
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184, 142, 116, 0.15);
}

.menu-board-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(184, 142, 116, 0.3);
  padding-bottom: 12px;
}

.menu-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.menu-board-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dotted rgba(184, 142, 116, 0.15);
  padding-bottom: 10px;
}

.menu-board-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.menu-board-item-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.menu-board-item-type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.menu-board-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 576px) {
  .menu-board {
    padding: 24px 16px;
    margin-bottom: 40px;
  }
  .menu-board-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .menu-board-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
}

/* Custom Package Quantity Buttons */
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  padding: 0;
}

.qty-btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 576px) {
  .custom-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .custom-item-row > div:last-child {
    align-self: flex-end;
  }
}
