/* Base Style & Custom Scrollbar */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f3efe8;
  color: #292d28;
  font-family: 'DM Sans', sans-serif;
}

::selection {
  background: #ced8c1;
  color: #292d28;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #c8c6bd;
  border-radius: 20px;
}

/* Background & Line Effects */
.hero-bg {
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(circle at 10% 10%, rgba(201, 148, 135, 0.16), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(123, 145, 105, 0.18), transparent 30%),
    linear-gradient(135deg, #faf8f3 0%, #f3efe8 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(173, 142, 82, 0.16);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(123, 145, 105, 0.13);
  border-radius: 50%;
  bottom: -140px;
  left: -100px;
}

.gold-line {
  width: 45px;
  height: 1px;
  background: #ad8e52;
}

.eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

.marquee {
  width: max-content;
  display: flex;
  animation: marquee 32s linear infinite;
}

.main-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(79, 98, 63, 0.22);
}

.main-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.main-cta:hover::before {
  transform: translateX(120%);
}

.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(53, 55, 46, 0.12);
  border-color: #ced8c1;
}

.product-image {
  overflow: hidden;
}

.product-image img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-enter {
  animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Form Styling */
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e1d8;
  border-radius: 12px;
  background: #faf8f3;
  outline: none;
  font-size: 13px;
  color: #292d28;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: #a0a197;
}

.form-input:focus {
  background: #ffffff;
  border-color: #aebda0;
  box-shadow: 0 0 0 4px rgba(123, 145, 105, 0.12);
}

input[type="checkbox"] {
  accent-color: #647951;
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: softFade 0.45s ease forwards;
}

.cs-button {
  transition: transform 0.25s ease;
}

.cs-button:hover {
  transform: translateY(-2px);
}

/* Multi-step Modal Wizard Styling */
.step-dot {
  background-color: #e5e1d8;
  color: #777970;
  transition: all 0.3s ease;
}

.step-dot.active {
  background-color: #4f623f;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(79, 98, 63, 0.2);
}

.step-dot.completed {
  background-color: #7b9169;
  color: #ffffff;
}
