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

/* ===== DESIGN TOKENS ===== */
:root {
  --brand-crimson: #8B1A1A;
  --brand-gold: #C8860A;
  --brand-saffron: #E8940A;
  --brand-amber: #F4B942;
  --brand-deep: #1A0A00;
  --brand-dark: #2C1208;
  --brand-warm: #FDF0E0;
  --brand-cream: #FFF8EE;
  --brand-card: #FFFBF4;
  --brand-muted: #8B7355;

  --grad-hero: linear-gradient(135deg, #1A0500 0%, #3D0E00 30%, #6B1A00 60%, #8B2500 100%);
  --grad-gold: linear-gradient(135deg, #C8860A, #F4B942, #C8860A);
  --grad-card: linear-gradient(145deg, #FFFBF4, #FFF0D8);
  --grad-btn: linear-gradient(135deg, #8B1A1A, #C0392B);
  --grad-footer: linear-gradient(135deg, #0F0400, #1A0800, #0F0400);

  --shadow-sm: 0 2px 12px rgba(139, 26, 26, 0.12);
  --shadow-md: 0 8px 32px rgba(139, 26, 26, 0.18);
  --shadow-lg: 0 16px 64px rgba(139, 26, 26, 0.25);
  --shadow-gold: 0 4px 20px rgba(200, 134, 10, 0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--brand-cream);
  color: var(--brand-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--brand-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-gold);
  border-radius: 4px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 5, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 134, 10, 0.3);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brand-amber);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub {
  font-size: 0.6rem;
  color: rgba(244, 185, 66, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: rgba(244, 185, 66, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-menu a:hover {
  color: var(--brand-amber);
}

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

.cart-btn {
  position: relative;
  background: none;
  color: var(--brand-amber);
  font-size: 1.4rem;
  padding: 6px 10px;
  transition: transform var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn:hover {
  transform: scale(1.1);
}

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

/* ===== HERO SECTION ===== */
.hero {
  background: var(--grad-hero);
  padding: 80px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 134, 10, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 26, 26, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-amber);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 25%;
  animation-delay: 1.5s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 3s;
}

.particle:nth-child(4) {
  left: 75%;
  animation-delay: 4.5s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 6s;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 134, 10, 0.15);
  border: 1px solid rgba(200, 134, 10, 0.4);
  color: var(--brand-amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fade-up 0.8s 0.15s ease both;
}

.hero-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
  animation: fade-up 0.8s 0.45s ease both;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(200, 134, 10, 0.5);
}

/* ===== SECTION LAYOUTS ===== */
.section {
  padding: 80px 2rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--brand-crimson);
}

.section-desc {
  color: var(--brand-muted);
  font-size: 1rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 134, 10, 0.12);
  transition: all var(--transition);
  position: relative;
  animation: fade-up 0.6s ease both;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 134, 10, 0.35);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #FFF0D8, #FFE5C0);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-crimson);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--brand-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-weight {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 134, 10, 0.1);
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(200, 134, 10, 0.2);
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-crimson);
}

.product-stock {
  font-size: 0.72rem;
  color: #2ecc71;
  font-weight: 600;
  margin-bottom: 14px;
}

.product-stock.low {
  color: #e67e22;
}

.product-stock.out {
  color: #e74c3c;
}

.add-to-cart-btn {
  width: 100%;
  background: var(--grad-btn);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.45);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--grad-hero);
  padding: 40px 2rem;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.feature-item {
  color: rgba(244, 185, 66, 0.85);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.feature-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.75rem;
  color: rgba(244, 185, 66, 0.6);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, #FFF3E0, #FFF8EE);
  border-top: 1px solid rgba(200, 134, 10, 0.15);
  border-bottom: 1px solid rgba(200, 134, 10, 0.15);
  padding: 60px 2rem;
  text-align: center;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.newsletter-subtitle {
  color: var(--brand-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background: white;
  font-size: 0.9rem;
  color: var(--brand-dark);
}

.newsletter-form input::placeholder {
  color: #bbb;
}

.newsletter-form button {
  background: var(--grad-btn);
  color: white;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--grad-footer);
  padding: 60px 2rem 24px;
  color: rgba(244, 185, 66, 0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.15);
}

.footer-brand .logo-brand {
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(244, 185, 66, 0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--brand-amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(244, 185, 66, 0.55);
  font-size: 0.82rem;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brand-amber);
}

.footer-contact p {
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: rgba(244, 185, 66, 0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(244, 185, 66, 0.35);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(244, 185, 66, 0.35);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-amber);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--grad-hero);
  padding: 60px 2rem;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--brand-amber);
  margin-bottom: 8px;
}

.page-banner p {
  color: rgba(244, 185, 66, 0.6);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(244, 185, 66, 0.5);
  margin-top: 12px;
  justify-content: center;
}

.breadcrumb a {
  color: var(--brand-gold);
}

.breadcrumb span {
  opacity: 0.5;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-btn);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-crimson);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-crimson);
  transition: all var(--transition);
  cursor: pointer;
}

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

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 134, 10, 0.5);
}

/* ===== CART ===== */
.cart-section {
  padding: 60px 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 134, 10, 0.1);
}

.cart-table-header {
  background: linear-gradient(135deg, #1A0500, #3D0E00);
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 12px;
  padding: 14px 20px;
}

.cart-table-header span {
  color: rgba(244, 185, 66, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 12px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(200, 134, 10, 0.1);
  transition: background var(--transition-fast);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(200, 134, 10, 0.03);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(200, 134, 10, 0.2);
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-dark);
}

.cart-item-weight {
  font-size: 0.75rem;
  color: var(--brand-muted);
}

.cart-item-price,
.cart-item-total {
  font-weight: 700;
  color: var(--brand-crimson);
  font-size: 0.9rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-warm);
  border-radius: 8px;
  padding: 4px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--brand-crimson);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.qty-btn:hover {
  background: var(--brand-dark);
}

.qty-value {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  opacity: 0.6;
}

.remove-btn:hover {
  opacity: 1;
  background: rgba(231, 76, 60, 0.1);
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 134, 10, 0.15);
  overflow: hidden;
  position: sticky;
  top: 86px;
}

.summary-header {
  background: linear-gradient(135deg, #1A0500, #3D0E00);
  padding: 18px 24px;
}

.summary-header h3 {
  color: var(--brand-amber);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-body {
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.1);
  font-size: 0.9rem;
  color: var(--brand-muted);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid rgba(200, 134, 10, 0.2);
}

.summary-row .value {
  font-weight: 600;
  color: var(--brand-dark);
}

.summary-row .value.free {
  color: #2ecc71;
  font-weight: 700;
}

.summary-row.total .value {
  color: var(--brand-crimson);
  font-size: 1.25rem;
}

.free-shipping-note {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #27ae60;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin: 12px 0;
  text-align: center;
}

/* ===== CHECKOUT ===== */
.checkout-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 134, 10, 0.1);
  overflow: hidden;
}

.form-section-title {
  background: linear-gradient(135deg, #FFF8EE, #FFF0D8);
  padding: 16px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
  border-bottom: 1px solid rgba(200, 134, 10, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-body {
  padding: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: 0.5px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group label span {
  color: var(--brand-crimson);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-sm);
  background: var(--brand-warm);
  font-size: 0.92rem;
  color: var(--brand-dark);
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--brand-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.12);
}

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

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.payment-option {
  position: relative;
  cursor: pointer;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-md);
  background: var(--brand-warm);
  transition: all var(--transition);
  cursor: pointer;
}

.payment-option input:checked+.payment-label {
  border-color: var(--brand-crimson);
  background: rgba(139, 26, 26, 0.05);
}

.payment-icon {
  font-size: 1.4rem;
}

.payment-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.payment-text small {
  font-size: 0.72rem;
  color: var(--brand-muted);
}

/* ===== ORDER SUCCESS ===== */
.success-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 2rem;
}

.success-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  border: 1px solid rgba(200, 134, 10, 0.15);
  animation: scale-in 0.5s ease both;
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.35);
  animation: bounce-in 0.6s 0.2s ease both;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.success-subtitle {
  color: var(--brand-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.order-id-badge {
  display: inline-block;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.3);
  color: var(--brand-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.success-details {
  background: var(--brand-warm);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.success-details p {
  font-size: 0.85rem;
  color: var(--brand-muted);
  line-height: 1.8;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.policy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.15);
}

.policy-content p,
.policy-content li {
  font-size: 0.92rem;
  color: var(--brand-muted);
  line-height: 1.9;
  margin-bottom: 10px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.policy-content .highlight {
  background: rgba(200, 134, 10, 0.08);
  border-left: 3px solid var(--brand-gold);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 12px 0;
  font-size: 0.88rem;
  color: var(--brand-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 134, 10, 0.1);
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 134, 10, 0.1);
  margin-top: 24px;
}

.contact-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

/* ===== EMPTY CART ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}

.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--brand-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, #1A0500, #3D0E00);
  color: var(--brand-amber);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 134, 10, 0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== EMPTY CART FULL PAGE ===== */
.cart-empty-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 60px 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cart-section {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .header-inner {
    padding: 0;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .cart-table-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .success-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 1rem;
  }

  .hero {
    padding: 60px 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: visible;
  }

  .newsletter-form input {
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 134, 10, 0.3);
  }

  .newsletter-form button {
    border-radius: var(--radius-md);
  }
}

/* ===== MOBILE MENU & TOGGLE ===== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
  padding: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--brand-amber);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 5, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-amber);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-footer-links {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s 0.4s ease;
}

.mobile-menu-overlay.active .mobile-footer-links {
  opacity: 1;
}

.mobile-footer-links a {
  font-size: 0.75rem;
  color: rgba(244, 185, 66, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 1rem;
  }
}