:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07840;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--charcoal);
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

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

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
  transition: var(--transition);
}

.cart-btn:hover {
  color: var(--gold);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Hero Banner */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.7) 0%,
    rgba(44, 44, 44, 0.3) 50%,
    rgba(201, 169, 110, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 24px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  color: var(--white);
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

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

.btn--dark:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* Product Gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.product-gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--white);
}

.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-gallery__item--main {
  grid-column: span 2;
  grid-row: span 2;
}

/* Product Info */
.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-info__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-info__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.product-info__details h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-info__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.product-info__price .original {
  font-size: 1rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
  margin-left: 12px;
  font-weight: 400;
}

.product-info__desc {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cream-dark);
}

.product-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-selector label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
}

.quantity-controls button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.quantity-controls button:hover {
  background: var(--cream-dark);
}

.quantity-controls span {
  width: 48px;
  text-align: center;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 16px;
}

/* Mid Banner */
.mid-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.mid-banner__bg {
  position: absolute;
  inset: 0;
}

.mid-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mid-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44, 44, 44, 0.75) 0%,
    rgba(44, 44, 44, 0.4) 60%,
    transparent 100%
  );
}

.mid-banner__content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: var(--white);
  padding: 0 24px;
}

.mid-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.mid-banner__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* Lifestyle / Models */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

.lifestyle-card:hover img {
  transform: scale(1.05);
}

.lifestyle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.lifestyle-card:hover .lifestyle-card__overlay {
  opacity: 1;
}

.lifestyle-card__overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-style: italic;
}

/* Benefits */
.benefits {
  background: var(--white);
}

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

.benefit-card {
  text-align: center;
  padding: 40px 24px;
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* Ingredients */
.ingredients {
  background: var(--charcoal);
  color: var(--white);
}

.ingredients .section__label {
  color: var(--gold-light);
}

.ingredients .section__desc {
  color: rgba(255, 255, 255, 0.7);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ingredient-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  transition: var(--transition);
}

.ingredient-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.ingredient-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.ingredient-item p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--charcoal-light);
}

.review-card__author {
  font-size: 0.85rem;
  font-weight: 600;
}

.review-card__location {
  font-size: 0.8rem;
  color: var(--gold);
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter__form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter__form button {
  padding: 16px 28px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
}

.newsletter__form button:hover {
  background: var(--charcoal-light);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

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

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer ul a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Cart Sidebar */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
  right: 0;
}

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-sidebar__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
}

.cart-item__info h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item__info .price {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--charcoal-light);
  cursor: pointer;
  font-size: 0.8rem;
  margin-top: 8px;
  text-decoration: underline;
}

.cart-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--charcoal-light);
}

.cart-sidebar__footer {
  padding: 24px;
  border-top: 1px solid var(--cream-dark);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-sidebar__footer .btn {
  width: 100%;
  justify-content: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-gallery__item--main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .product-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 500px;
  }

  .hero__content {
    margin-left: 24px;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery__item--main {
    grid-column: span 2;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .mid-banner {
    height: 320px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__form input {
    border-radius: 4px;
  }

  .newsletter__form button {
    border-radius: 4px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }
}

/* Inner Pages */
.page-hero {
  padding: 140px 0 60px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.page-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 100px;
}

.page-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 40px 0 16px;
  color: var(--charcoal);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.page-content p,
.page-content li {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

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

.page-content a:hover {
  color: var(--gold);
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.page-content th,
.page-content td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.page-content th {
  font-weight: 600;
  color: var(--charcoal);
  background: var(--cream-dark);
}

.info-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 4px;
  margin: 28px 0;
}

.info-box p:last-child {
  margin-bottom: 0;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--charcoal);
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--gold-dark);
}

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-info__item p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--charcoal);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Order Page */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.order-summary {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.order-summary h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.order-summary__item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.order-summary__item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
}

.order-summary__item h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.order-summary__item p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin: 0;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.order-summary__row--total {
  border-top: 2px solid var(--charcoal);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.order-success {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.order-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.order-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}

.order-success p {
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.header__buy {
  padding: 10px 20px;
  font-size: 0.7rem;
}

.nav a.active {
  color: var(--gold-dark);
}

.nav a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-grid,
  .order-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .form-card {
    padding: 24px;
  }

  .header__buy {
    display: none;
  }
}
