/* Cinnamon Gift Boxes Page | JBK Cinnamon */

:root {
  --brown-dark: #2f1c12;
  --brown: #5f3924;
  --brown-soft: #8a6044;
  --gold: #c99a4a;
  --gold-soft: #ead7b7;
  --cream: #fbf6ee;
  --cream-dark: #f2e7d8;
  --white: #ffffff;
  --text: #2b211c;
  --muted: #6f625a;
  --border: rgba(95, 57, 36, 0.14);
  --shadow: 0 22px 60px rgba(47, 28, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.gift-page {
  overflow: hidden;
}

/* HERO */

.gift-hero {
  min-height: 86vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 8%;
  background-image: url("../images/cinnamon-gift-box-hero.webp");
  background-size: cover;
  background-position: center;
}

.gift-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 28, 18, 0.88), rgba(47, 28, 18, 0.55), rgba(47, 28, 18, 0.18)),
    linear-gradient(0deg, rgba(47, 28, 18, 0.22), rgba(47, 28, 18, 0.22));
}

.gift-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gift-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 24px;
  max-width: 760px;
}

.gift-hero p {
  max-width: 610px;
  font-size: 19px;
  color: #f7eadc;
  margin: 0 0 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn-primary:hover {
  background: #dfb766;
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--brown-dark);
}

.btn-light:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}

/* GLOBAL SECTIONS */

.section {
  padding: 95px 8%;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.intro-grid h2,
.why-content h2,
.custom-content h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown-dark);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 18px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

/* INTRO */

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
  max-width: 1180px;
  margin: auto;
}

.intro-grid p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 18px;
}

/* GIFT OPTIONS */

.gift-options-section {
  background: var(--cream);
}

.gift-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gift-option-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.gift-option-card:hover {
  transform: translateY(-6px);
}

.gift-image {
  height: 285px;
  overflow: hidden;
}

.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gift-option-card:hover .gift-image img {
  transform: scale(1.04);
}

.gift-card-body {
  padding: 30px;
}

.gift-card-body span {
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.gift-card-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown-dark);
  margin: 10px 0 14px;
}

.gift-card-body p {
  color: var(--muted);
  margin: 0 0 18px;
}

.gift-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gift-card-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 15px;
}

.gift-card-body li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}

/* WHY */

.why-section {
  background: var(--brown-dark);
  color: var(--white);
}
.why-section .section-label{
  display: block;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.why-content h2 {
  color: var(--white);
}

.why-content p {
  color: #e8d8c8;
  font-size: 17px;
  margin: 0 0 18px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-point {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 28px;
  border-radius: 24px;
}

.why-point h3 {
  color: var(--gold);
  margin: 0 0 8px;
  font-size: 20px;
}

.why-point p {
  color: #e8d8c8;
  margin: 0;
  font-size: 15px;
}

/* CUSTOM */

.custom-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.custom-image-wrap img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.custom-content p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 18px;
}

.custom-list {
  margin: 30px 0 34px;
  display: grid;
  gap: 14px;
}

.custom-list div {
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.custom-list strong {
  display: block;
  color: var(--brown-dark);
  margin-bottom: 3px;
}

.custom-list span {
  color: var(--muted);
  font-size: 15px;
}

/* PACKAGE */

.package-section {
  background: var(--cream-dark);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.package-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(47, 28, 18, 0.08);
}

.package-card span {
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}

.package-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--brown-dark);
  line-height: 1.2;
  margin: 14px 0 12px;
}

.package-card p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 15px;
}

.package-detail {
  color: var(--brown) !important;
  font-weight: 700;
}

/* PROCESS */

.process-section {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  border-left: 1px solid var(--border);
  padding: 10px 24px;
}

.process-step span {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.process-step h3 {
  color: var(--brown-dark);
  font-size: 21px;
  margin: 12px 0 10px;
}

.process-step p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* FAQ */

.faq-section {
  background: var(--white);
}

.faq-wrap {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.faq-wrap details {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
}

.faq-wrap summary {
  cursor: pointer;
  color: var(--brown-dark);
  font-weight: 800;
  font-size: 17px;
}

.faq-wrap p {
  color: var(--muted);
  margin: 14px 0 0;
}

/* CTA */

.final-cta {
  padding: 100px 8%;
  background:
    linear-gradient(rgba(47, 28, 18, 0.84), rgba(47, 28, 18, 0.84)),
    url("../images/cinnamon-gift-cta.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.final-cta-content {
  max-width: 850px;
  margin: auto;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: #f0dfcf;
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.final-cta .cta-actions {
  justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .gift-options-grid,
  .package-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .why-grid,
  .custom-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .gift-hero {
    min-height: 75vh;
  }
}

@media (max-width: 650px) {
  .section {
    padding: 70px 6%;
  }

  .gift-hero {
    padding: 95px 6%;
    min-height: 70vh;
  }

  .gift-hero-overlay {
    background: rgba(47, 28, 18, 0.78);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .gift-options-grid,
  .package-grid,
  .process-grid,
  .why-points {
    grid-template-columns: 1fr;
  }

  .gift-image {
    height: 235px;
  }

  .process-step {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 24px 0 0;
  }
}