/* =========================================================
   THE CHOCOMISTT
   Main stylesheet
========================================================= */

:root {
  --brown-dark: #2b160d;
  --brown: #5a321f;
  --brown-light: #80543b;
  --gold: #c99a52;
  --gold-light: #e7c98f;

  --cream: #fffaf5;
  --cream-dark: #f6eee6;
  --white: #ffffff;

  --text: #2b211d;
  --text-light: #6e625c;
  --border: #eadfd5;

  --shadow-sm: 0 4px 18px rgba(55, 31, 18, 0.07);
  --shadow-md: 0 12px 35px rgba(55, 31, 18, 0.12);
  --shadow-lg: 0 25px 60px rgba(55, 31, 18, 0.18);

  --container: 1240px;
  --header-height: 78px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(234, 223, 213, 0.8);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 190px;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 28px 0;
  color: var(--brown-dark);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brown);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.header-whatsapp:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

.whatsapp-icon {
  font-size: 12px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  background: var(--brown-dark);
  transition: all 0.25s ease;
}

.mobile-menu {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 245, 0.96) 0%,
      rgba(255, 250, 245, 0.84) 48%,
      rgba(255, 250, 245, 0.25) 100%
    ),
    url("../images/filled.jpg") center right / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(201, 154, 82, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(90, 50, 31, 0.08),
      transparent 35%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(100%, 650px);
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 154, 82, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--brown-dark);
}

.hero h1 span {
  display: block;
  color: var(--brown);
}

.hero h1 strong {
  display: block;
  color: var(--gold);
  font-weight: 600;
}

.hero p {
  max-width: 600px;
  margin-top: 28px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brown);
  color: white;
  box-shadow: 0 10px 25px rgba(90, 50, 31, 0.18);
}

.btn-primary:hover {
  background: var(--brown-dark);
}

.btn-outline-light {
  border: 1px solid var(--brown);
  background: rgba(255, 255, 255, 0.65);
  color: var(--brown-dark);
}

.btn-outline-light:hover {
  background: white;
}

.btn-dark {
  background: var(--brown-dark);
  color: white;
}

.btn-dark:hover {
  background: var(--brown);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.section-heading h2,
.feature-content h2,
.gift-content h2,
.about-content h2,
.contact-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  color: var(--brown-dark);
}

.section-heading h2 span,
.feature-content h2 span,
.gift-content h2 span,
.about-content h2 span,
.contact-intro h2 span {
  color: var(--gold);
}

.section-heading p {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--text-light);
  font-size: 16px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.chocolates-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(201, 154, 82, 0.08),
      transparent 28%
    ),
    var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.product-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(90, 50, 31, 0.92);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--brown-dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.product-content p {
  min-height: 74px;
  margin: 12px 0 20px;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.65;
}

.product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.product-button:hover {
  background: var(--brown);
  color: white;
}


/* =========================================================
   BOUQUETS
========================================================= */

.feature-section {
  padding: 100px 0;
  background: white;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 570px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.feature-content p {
  max-width: 520px;
  margin: 24px 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-bottom: 32px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
}

.feature-list li span {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eadbc5;
  color: var(--brown);
  font-size: 12px;
}

.feature-image {
  min-height: 570px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   GIFT BOXES
========================================================= */

.gift-section {
  background: var(--cream);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.gift-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.gift-image img {
  height: 620px;
  object-fit: cover;
}

.gift-content p {
  max-width: 580px;
  margin: 25px 0 30px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.gift-types {
  display: grid;
  gap: 13px;
  margin-bottom: 32px;
}

.gift-type {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}

.gift-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--cream-dark);
  color: var(--gold);
  font-size: 22px;
}

.gift-type strong {
  display: block;
  color: var(--brown-dark);
  font-size: 14px;
}

.gift-type small {
  display: block;
  margin-top: 2px;
  color: var(--text-light);
  font-size: 12px;
}


/* =========================================================
   CORPORATE
========================================================= */

.corporate-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    linear-gradient(
      90deg,
      rgba(43, 22, 13, 0.97),
      rgba(43, 22, 13, 0.91)
    ),
    url("../images/gift-boxes.jpg") center / cover no-repeat;
  color: white;
}

.corporate-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(201, 154, 82, 0.16),
      transparent 30%
    );
}

.corporate-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.section-label.gold {
  color: var(--gold-light);
}

.corporate-content h2 {
  max-width: 800px;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  line-height: 0.95;
}

.corporate-content h2 span {
  display: block;
  color: var(--gold-light);
}

.corporate-content > p {
  max-width: 620px;
  margin: 25px 0 45px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.8;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 800px;
}

.corporate-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.corporate-item > span {
  display: flex;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(201, 154, 82, 0.14);
  color: var(--gold-light);
  font-size: 20px;
}

.corporate-item strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 14px;
}

.corporate-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.corporate-note {
  max-width: 800px;
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 154, 82, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-section {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  display: flex;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--cream-dark);
  color: var(--gold);
  font-size: 20px;
}

.benefit h3 {
  color: var(--brown-dark);
  font-size: 14px;
}

.benefit p {
  margin-top: 5px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  height: 560px;
  object-fit: cover;
}

.about-content p {
  max-width: 590px;
  margin-top: 23px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 4px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-box {
  overflow: hidden;
  padding: 65px;
  border-radius: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.contact-intro {
  max-width: 700px;
}

.contact-intro p {
  max-width: 600px;
  margin-top: 20px;
  color: var(--text-light);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 45px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  transition: transform 0.25s ease;
}

.contact-detail:hover {
  transform: translateY(-3px);
}

.contact-detail-icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--cream-dark);
  color: var(--brown);
}

.contact-detail-icon.whatsapp {
  color: #287b45;
}

.contact-detail small {
  display: block;
  color: var(--text-light);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-detail strong {
  display: block;
  margin-top: 2px;
  color: var(--brown-dark);
  font-size: 12px;
  word-break: break-word;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.contact-action {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 20px;
  border-radius: 18px;
  transition: transform 0.25s ease;
}

.contact-action:hover {
  transform: translateY(-3px);
}

.contact-action > span {
  grid-row: span 2;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.contact-action strong {
  font-size: 14px;
}

.contact-action small {
  margin-top: 2px;
  font-size: 11px;
}

.whatsapp-action {
  background: #e5f4e9;
  color: #176d36;
}

.call-action {
  background: #eee6df;
  color: var(--brown);
}

.email-action {
  background: #f3eadb;
  color: #7a592d;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 35px 0;
  border-top: 1px solid var(--border);
  background: var(--brown-dark);
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 170px;
  height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.footer-links a:hover {
  color: white;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;

  display: flex;
  width: 58px;
  height: 58px;

  align-items: center;
  justify-content: center;

  border: 4px solid white;
  border-radius: 50%;

  background: #1f9d4b;
  color: white;

  font-size: 22px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

  .desktop-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
  }

  .header-whatsapp {
    padding: 10px 13px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 50px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE MENU
========================================================= */

@media (max-width: 900px) {

  .desktop-nav,
  .header-whatsapp {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .mobile-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    padding: 20px;

    background: white;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid #f1e9e2;
    color: var(--brown-dark);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu .mobile-whatsapp {
    margin-top: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--brown);
    color: white;
    text-align: center;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 245, 0.96),
        rgba(255, 250, 245, 0.82)
      ),
      url("../images/filled.jpg") center / cover no-repeat;
  }

  .hero-content {
    min-height: 720px;
  }

  .hero-copy {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: clamp(55px, 12vw, 80px);
  }

  .feature-card,
  .split-section,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .feature-content {
    padding: 55px;
  }

  .feature-image {
    min-height: 450px;
  }

  .gift-image img,
  .about-image img {
    height: 500px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

  .container {
    width: min(100% - 28px, var(--container));
  }

  :root {
    --header-height: 68px;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-logo {
    width: 155px;
    height: 52px;
  }

  .section {
    padding: 75px 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    min-height: 680px;
  }

  .hero-copy {
    padding: 50px 0;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .feature-content h2,
  .gift-content h2,
  .about-content h2,
  .contact-intro h2 {
    font-size: 47px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-image {
    height: 330px;
  }

  .product-content {
    padding: 21px;
  }

  .product-content h3 {
    font-size: 26px;
  }

  .feature-card {
    border-radius: 22px;
  }

  .feature-content {
    padding: 38px 25px;
  }

  .feature-image {
    min-height: 380px;
  }

  .split-section {
    gap: 40px;
  }

  .gift-image img,
  .about-image img {
    height: 430px;
  }

  .corporate-section {
    padding: 80px 0;
  }

  .corporate-content h2 {
    font-size: 52px;
  }

  .corporate-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 35px 22px;
    border-radius: 24px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    flex-direction: column;
  }

  .footer-divider {
    display: none;
  }

  .floating-whatsapp {
    right: 17px;
    bottom: 17px;
    width: 54px;
    height: 54px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .brand-logo {
    width: 140px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .section-heading h2,
  .feature-content h2,
  .gift-content h2,
  .about-content h2,
  .contact-intro h2 {
    font-size: 42px;
  }

  .product-image {
    height: 290px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 3px solid rgba(201, 154, 82, 0.55);
  outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}