.promo-dates {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
}

.promo-dates .accent {
  color: var(--accent-red);
  font-weight: 700;
}
:root {
  /* Luxury men's jewelry — Farfetch / Fashionphile inspired */
  --primary-green: #c9a227;
  --primary-green-dark: #a8841a;
  --secondary-green: #1a1814;
  --secondary-green-dark: #2a2318;
  --light-green: #1e1c18;
  --light-green-alt: #252219;
  --accent-rgb: 201, 162, 39;
  --white: #faf8f4;
  --text-primary: #ece8df;
  --text-secondary: #b8b0a0;
  --text-muted: #8a8278;
  --text-dark: #faf8f4;
  --accent-purple: #d4af37;
  --accent-red: #b8860b;
  --accent-red-light: #e8c547;
  --gold-gradient: linear-gradient(135deg, #e8c547 0%, #c9a227 45%, #a8841a 100%);
  --page-bg: #1c1b18;
  --page-bg-soft: #242220;
  --luxury-bg: linear-gradient(145deg, #1c1b18 0%, #252320 35%, #2e2a24 65%, #242019 100%);
  --background-overlay: rgba(0, 0, 0, 0.45);
  --background-glass: rgba(255, 255, 255, 0.06);
  --background-glass-hover: rgba(201, 162, 39, 0.12);
  --background-glass-active: rgba(201, 162, 39, 0.2);
}

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

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green-dark);
}

html {
  scroll-behavior: smooth;
}

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

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 5px 16px;
}

.content-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.section {
  margin-top: 20px;
}

.hero {
  position: relative;
  height: auto;
  display: block;
  color: var(--text-primary);
  padding: 16px;
  overflow: hidden;
}

.hero-image-wrap {
  background: var(--luxury-bg);
  background-size: 200% 200%;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #242220;
}

.photo-frame img,
.hero-image,
.order-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-image-wrap .photo-frame,
.hero-image-wrap .photo-frame img {
  border-radius: 20px;
}

.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    145deg,
    #1c1b18 0%,
    #1a1814 30%,
    #2a2318 55%,
    #3d3220 80%,
    #1a1510 100%
  );
  background-size: 200% 200%;
  opacity: 0.35;
  border-radius: 0 0 24px 24px;
}

.gradient-animate {
  background-size: 200% 200%;
}

.hero::after {
  content: none;
}

.hero-content {
  display: block;
  text-align: left;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-green-alt) 50%, #fffaf5 100%);
  background-size: 200% 200%;
  animation: heroGradient 8s ease-in-out infinite;
  border-radius: 12px;
  position: relative; /* allow inner badge positioning */
  padding-bottom: 28px; /* space for badge at bottom */
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.12);
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--primary-green);
  line-height: 1.2;
}

.hero p {
  font-size: 14px;
  margin: 6px 0 0 0;
  opacity: 0.95;
  max-width: 100%;
}

.hero-sale-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-top: 4px;
  position: absolute;
  bottom: 8px;
  left: 8px;
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.25);
  z-index: 2;
}

.hero-price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px; /* equal outer gutters = half of gap */
  margin-bottom: 16px;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
}

.price-option {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, #2a2722 0%, #1f1d19 45%, #2d2820 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 20px;
  padding: 22px 20px 18px;
  width: 100%;
  max-width: 360px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
  opacity: 0.9;
}

.hero-price .price-option {
  flex: 1 1 0;
  max-width: none;
}

.price-option:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 162, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.price-option.active {
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow:
    0 16px 44px rgba(201, 162, 39, 0.2),
    0 0 0 1px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quantity-label {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: #f5f0e6;
  margin: 4px 0 14px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.price-option .price-old {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.price-value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2px 0 12px;
}

.price-option .price-new {
  color: #fff;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(201, 162, 39, 0.25);
}

.price-option .discount {
  background: rgba(201, 162, 39, 0.15);
  color: #e8c547;
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-top: 0;
  letter-spacing: 0.03em;
}

.price-option .savings,
.order-price .savings {
  background: var(--gold-gradient);
  color: #1a1510;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-top: 0;
  display: inline-block;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
  animation: pulse-savings 2s ease-in-out infinite;
}

.price-urgency {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

/* Badge */
.price-badge {
  position: relative;
  display: inline-block;
  align-self: center;
  background: var(--gold-gradient);
  color: #1a1510;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.badge-bestseller::before {
  content: "★";
  margin-right: 6px;
}

.deal-timer {
  margin-top: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.12);
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.price-option .stock-progress {
  margin-top: 12px;
}

.price-option .stock-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

.price-option .stock-text .stock-left {
  color: #e8c547;
  font-weight: 700;
}

.deal-timer .time {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  animation: glow-digits 2s ease-in-out infinite;
}

@keyframes glow-digits {
  0%,
  100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  }
}

/* Stock progress */
.stock-progress {
  margin-top: 10px;
}

.stock-bar {
  background: rgba(255, 255, 255, 0.12);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stock-fill {
  background: var(--gold-gradient);
  height: 100%;
  width: 0%;
  transition: width 0.6s ease;
}

.stock-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  margin-top: 6px;
}

/* Corner ribbon */
.corner-ribbon {
  position: absolute;
  top: 10px;
  right: -10px;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #fff;
  padding: 6px 18px;
  transform: rotate(15deg);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.35);
  border-radius: 6px;
}

@keyframes pulse-savings {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.button,
.order-form button[type="submit"] {
  position: relative;
  overflow: hidden;
  background: var(--gold-gradient);
  color: #1a1510;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.35);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  pointer-events: none;
  transform: skewX(-18deg);
}

.button:hover,
.order-form button[type="submit"]:hover {
  color: #1c1b18;
}

.pulse {
  animation: none;
}

/* Products grid section */
.products-section {
  padding: 60px 20px;
  max-width: 480px;
  margin: 0 auto;
}

.products-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.main-product {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.product-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature {
  background: var(--light-green);
  color: var(--primary-green);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-info p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

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

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 16px;
}

.price-new {
  color: var(--primary-green);
  font-size: 24px;
  font-weight: 700;
}

.discount {
  background: var(--accent-purple);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Updated swiper styling */
.swiper-main {
  width: 100%;
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 162, 39, 0.2);
  aspect-ratio: 3 / 4;
  height: auto !important;
  background: #242220 !important;
}

.swiper-main .swiper-wrapper {
  height: 100% !important;
}

.swiper-main .swiper-slide {
  height: 100% !important;
  background: #242220;
}

.swiper-main .photo-frame {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: var(--primary-green);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-green);
  opacity: 1;
}

.swiper-description {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.desc-card {
  background: linear-gradient(160deg, #1a1814 0%, #221f1a 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 16px;
  padding: 20px 18px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.desc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
  opacity: 0.85;
}

.swiper-description h3 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-green);
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: 0.02em;
}

.spec-list {
  margin: 0;
  padding: 0;
}

.spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-row dt {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.spec-row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

.gift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gift-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-primary);
  text-align: left;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.1);
}

.gift-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.45);
}

.wrap-button {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
#desc-order-btn {
  width: 100%;
}

.features {
  padding: 22px 14px 18px;
  background: linear-gradient(160deg, #242220 0%, #1c1a16 55%, #221f1a 100%);
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.85;
}

.features h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin: 4px 0 18px;
  color: var(--primary-green);
  letter-spacing: 0.02em;
}

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

.feature-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: 14px;
  padding: 14px 12px 12px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 148px;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1510;
  background: var(--gold-gradient);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.28);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-item h3 {
  font-size: 15px;
  line-height: 1.25;
  color: var(--primary-green);
  margin: 0;
  font-weight: 700;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

/* Added benefits section styling */
.benefits {
  padding: 60px 20px;
  background: var(--light-green);
  margin-top: 10px;
  text-align: center;
}

.benefits h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-green);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.benefit-item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0;
}

/* Added testimonials section styling */
.testimonials {
  padding: 0px 16px;
  background: var(--white);
  text-align: center;
}

.testimonials .testimonials-swiper {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden; /* ensure only one slide is visible */
  position: relative; /* allow absolute-positioned nav inside */
}

.testimonials .testimonials-pagination {
  margin-top: 12px;
  position: static;
}

/* place testimonial arrows at bottom INSIDE slider */
.testimonials .testimonials-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none; /* container shouldn't block clicks */
}

.testimonials .testimonials-button-prev,
.testimonials .testimonials-button-next {
  position: static; /* static inside flex container */
  pointer-events: auto; /* re-enable on buttons */
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary-green);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.testimonial-item {
  background: var(--light-green);
  border-radius: 16px;
  padding: 10px;
  border-left: 4px solid var(--secondary-green);
}

.testimonials .testimonial-item {
  padding-left: 36px;
  padding-right: 36px;
}

.testimonials .testimonial-item img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 12px auto;
  display: block;
}

.testimonial-rating {
  margin-bottom: 12px;
  font-size: 16px;
}

.testimonial-item p {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 12px;
  font-size: 14px;
}

.testimonial-author {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
}

/* Added scarcity section styling */
.scarcity {
  background: linear-gradient(
    135deg,
    var(--accent-red) 0%,
    var(--accent-red-light) 100%
  );
  color: white;
  padding: 32px 20px;
  text-align: center;
  margin-top: 40px;
}

.scarcity h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.scarcity p {
  margin-bottom: 16px;
}

.stock-count {
  font-weight: 700;
  font-size: 18px;
}

.stock-bar {
  background: rgba(255, 255, 255, 0.3);
  height: 8px;
  border-radius: 4px;
  margin: 16px auto;
  max-width: 300px;
  overflow: hidden;
}

.stock-fill {
  background: var(--secondary-green);
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.stock-text {
  font-size: 14px;
  opacity: 0.9;
}

.delivery {
  margin-top: 20px;
  text-align: center;
  padding: 0 16px;
}

.delivery h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary-green);
  margin-top: 0px;
}

.delivery h2 .accent {
  color: inherit;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}

.delivery-item {
  background: #1a1814;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.delivery-item:hover {
  transform: translateY(-4px);
}

.delivery-item--row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.delivery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.delivery-content h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: var(--secondary-green);
}

.delivery-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-primary);
}

/* Left align text inside delivery items */
.delivery .delivery-content {
  text-align: left;
}

.delivery-item h3 {
  font-size: 16px;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.delivery-item p {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
}

/* Modern form styling */
.order-form {
  position: relative;
  margin-top: 20px;
  border-radius: 20px;
  padding: 16px 16px;
  color: white;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

/* Added background image and overlay for order form */
.order-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    #1c1b18 0%,
    #1a1814 25%,
    #2a2318 50%,
    #3d3220 75%,
    #1a1510 100%
  );
  background-size: 200% 200%;
  z-index: -1;
}

.order-content {
  position: relative;
  z-index: 1;
}

.order-content h2 {
  margin-top: 0;
}

.order-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
  color: var(--primary-green);
}

/* Updated order price styling to match hero price options */
.order-price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px; /* equal outer gutters = half of gap */
  margin-bottom: 16px;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
}

.order-price .price-option {
  flex: 1 1 0;
  max-width: none;
}

.order-price {
  align-items: center;
}


/* Center the savings badge inside its price option */
.price-option .savings {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.form-subtitle {
  text-align: center;
  margin-bottom: 16px;
  opacity: 0.9;
  font-size: 16px;
  color: var(--primary-green);
}

.order-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.order-form input,
.order-form textarea,
.order-form select {
  padding: 16px 20px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1510;
  transition: all 0.3s ease;
}

.order-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #a8841a 50%),
    linear-gradient(135deg, #a8841a 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 2px),
    calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.3);
}

.order-form textarea {
  min-height: 100px;
  resize: vertical;
}

.order-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}

.guarantee {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.9;
  color: var(--primary-green);
}

.consent {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.consent a {
  color: var(--primary-green);
  text-decoration: underline;
}

/* Reset checkbox styling inside order form consent */
.order-form .consent input[type="checkbox"] {
  padding: 0;
  border: none;
  box-shadow: none;
  outline: none;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.order-form .consent input[type="checkbox"]:focus {
  box-shadow: none;
  outline: none;
}

.order-deal-note {
  text-align: center;
  margin: 0px 0 20px 0;
  font-size: 24px;
  color: var(--primary-green);
  font-weight: 600;
}

.installation-guide {
  padding: 0px 16px;
  background: var(--white);
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.installation-guide h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.installation-image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.installation-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.installation-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: center;
  text-align: left;
  background: var(--light-green);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.08);
  transition: transform 0.3s ease;
}

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

.step-number {
  background: var(--primary-green);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-right: 16px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 4px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0;
}

h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  color: var(--primary-green);
}

footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 16px;
  margin-top: 20px;
  background: #242220;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

footer p {
  margin: 0;
  margin-bottom: 5px;
}

footer a {
  color: var(--primary-green);
}

.footer-politics {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  margin-bottom: 5px;
}

.order-img__wrapper {
  margin: 0 0 10px 0;
  padding: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: #242220;
}

.order-img__wrapper .photo-frame,
.order-img__wrapper .order-img {
  border-radius: 20px;
}
