/* =========================================
   THE DESSERT BAR
   PHONE-FRIENDLY STYLES
========================================= */

:root {
  --lavender: #eee4f3;
  --lavender-dark: #d9c5df;
  --cream: #fffaf5;
  --white: #ffffff;
  --brown: #4b3b40;
  --muted: #7b6c72;
  --dark: #30272b;
  --line: rgba(75, 59, 64, 0.15);
  --shadow: 0 18px 50px rgba(75, 59, 64, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--lavender-dark);
  color: var(--dark);
}


/* =========================================
   ANNOUNCEMENT
========================================= */

.announcement {
  width: 100%;
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 8px 15px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 20px;

  width: 100%;
  min-height: 76px;

  padding: 10px 5vw;

  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-shrink: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  font-family: "Great Vibes", cursive;
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin-left: auto;
}

.site-header nav a {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;

  transition: 0.25s ease;
}

.site-header nav a:hover {
  opacity: 0.55;
}

.instagram-btn {
  padding: 10px 15px;

  border: 1px solid var(--line);
  border-radius: 50px;

  font-size: 12px;
  font-weight: 600;

  white-space: nowrap;

  transition: 0.25s ease;
}

.instagram-btn:hover {
  background: var(--lavender);
}

.menu-btn {
  display: none;

  border: 0;
  background: transparent;

  font-size: 28px;
  line-height: 1;

  color: var(--brown);
}


/* =========================================
   GENERAL
========================================= */

.section {
  width: min(1200px, 90%);
  margin: auto;
  padding: 100px 0;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--dark);
  line-height: 0.98;
}

h1 {
  font-size: clamp(48px, 6vw, 86px);
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
}

h3 {
  font-size: 28px;
}

em {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  color: #8b6790;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  color: var(--muted);
  max-width: 620px;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 48px;
  padding: 12px 22px;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;

  border: 1px solid transparent;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.btn.primary {
  background: var(--dark);
  color: white;
  box-shadow: 0 10px 25px rgba(48, 39, 43, 0.16);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}


/* =========================================
   HERO
========================================= */

.hero {
  width: min(1250px, 90%);
  min-height: calc(100vh - 110px);

  margin: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;

  padding: 70px 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 25px;
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 30px;
}

.mini-note {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 22px;

  color: var(--muted);
  font-size: 12px;
}

.mini-note span {
  color: #9a6d9f;
  font-size: 18px;
}

.hero-art {
  position: relative;
  width: min(100%, 500px);
  margin: auto;
}

.arch {
  position: relative;

  width: 100%;
  aspect-ratio: 0.82;

  overflow: hidden;

  border-radius: 250px 250px 35px 35px;

  background: var(--lavender);

  box-shadow: var(--shadow);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;

  padding: 12px 16px;

  background: rgba(255, 250, 245, 0.94);
  border: 1px solid var(--line);

  border-radius: 15px;

  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.35;

  box-shadow: var(--shadow);
}

.floating-tag.top {
  top: 12%;
  left: -25px;
}

.floating-tag.bottom {
  right: -25px;
  bottom: 13%;
}

.doodle {
  position: absolute;

  color: #a17aa6;
  font-size: 30px;
}

.doodle.one {
  top: 4%;
  right: 3%;
}

.doodle.two {
  bottom: 4%;
  left: 2%;
}


/* =========================================
   INTRO
========================================= */

.intro {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  margin-top: 12px;
}

.intro > p {
  align-self: end;

  color: var(--muted);
  font-size: 16px;
}


/* =========================================
   MENU
========================================= */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.menu-card {
  overflow: hidden;

  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow: 0 12px 35px rgba(75, 59, 64, 0.05);

  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.menu-photo {
  height: 260px;
  overflow: hidden;
  background: var(--lavender);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  padding: 25px;
}

.menu-number {
  display: block;

  margin-bottom: 10px;

  color: #97739d;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.menu-card h3 {
  margin-bottom: 12px;
}

.menu-card p {
  color: var(--muted);
  font-size: 13px;
}

.menu-link {
  display: inline-block;

  margin-top: 20px;

  font-size: 12px;
  font-weight: 700;

  border-bottom: 1px solid currentColor;
}

.menu-note {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 35px;
  padding: 18px 20px;

  background: var(--lavender);

  border-radius: 18px;

  color: var(--muted);
  font-size: 13px;
}

.menu-note span {
  font-size: 22px;
}


/* =========================================
   FILTERS
========================================= */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin-bottom: 30px;
}

.filter {
  padding: 10px 17px;

  background: transparent;

  border: 1px solid var(--line);
  border-radius: 50px;

  color: var(--brown);

  font-size: 12px;
  font-weight: 600;

  transition: 0.25s ease;
}

.filter:hover,
.filter.active {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}


/* =========================================
   SEARCH
========================================= */

.shop-tools {
  margin-top: 35px;
}

.search-box {
  width: 100%;
}

.search-box input {
  width: 100%;

  padding: 15px 20px;

  background: white;

  border: 1px solid var(--line);
  border-radius: 50px;

  outline: none;

  color: var(--brown);
}

.search-box input:focus {
  border-color: #a783ad;
}


/* =========================================
   SIGNATURE PRODUCTS
========================================= */

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.signature-card {
  overflow: hidden;

  background: white;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow: 0 12px 35px rgba(75, 59, 64, 0.05);

  transition: 0.3s ease;
}

.signature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.signature-photo {
  height: 300px;
  overflow: hidden;
  background: var(--lavender);
}

.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  cursor: zoom-in;

  transition: transform 0.5s ease;
}

.signature-card:hover .signature-photo img {
  transform: scale(1.04);
}

.signature-body {
  padding: 23px;
}

.signature-body > span {
  color: #97739d;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.signature-body h3 {
  margin: 10px 0;

  font-size: 27px;
}

.signature-body p {
  color: var(--muted);
  font-size: 13px;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-top: 22px;
}

.card-bottom strong {
  font-size: 11px;
}

.order-mini {
  font-size: 11px;
  font-weight: 700;

  border-bottom: 1px solid currentColor;
}


/* =========================================
   CART
========================================= */

.cart-panel {
  position: fixed;

  top: 0;
  right: -430px;

  z-index: 2000;

  width: min(420px, 94vw);
  height: 100vh;

  padding: 25px;

  background: var(--cream);

  box-shadow: -20px 0 50px rgba(48, 39, 43, 0.16);

  transition: right 0.35s ease;

  overflow-y: auto;
}

.cart-panel.open {
  right: 0;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 25px;
}

.cart-head h3 {
  margin-top: 5px;
}

.cart-head button {
  border: 0;
  background: transparent;

  font-size: 30px;
}

.empty-cart {
  color: var(--muted);
  font-size: 14px;
}

.cart-footer {
  margin-top: 30px;
}

.clear-cart {
  display: block;

  margin: 14px auto;

  border: 0;
  background: transparent;

  color: var(--muted);

  font-size: 12px;
  text-decoration: underline;
}

.cart-footer small {
  display: block;

  color: var(--muted);
  font-size: 11px;
  text-align: center;
}


/* =========================================
   GALLERY
========================================= */

.gallery {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.product {
  position: relative;

  overflow: hidden;

  min-height: 420px;

  background: var(--lavender);

  border-radius: var(--radius);
}

.product.large {
  grid-row: span 2;
}

.product img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.product:hover img {
  transform: scale(1.04);
}

.product-info {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 18px;

  padding: 18px;

  background: rgba(255, 250, 245, 0.92);

  border-radius: 18px;

  backdrop-filter: blur(8px);
}

.product-info span {
  font-size: 10px;
  color: #97739d;
}

.product-info h3 {
  margin: 5px 0;
}

.product-info p {
  color: var(--muted);
  font-size: 12px;
}


/* =========================================
   LATEST
========================================= */

.latest-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 15px;
}

.latest-grid figure {
  overflow: hidden;

  border-radius: 20px;

  background: white;
}

.latest-grid img {
  aspect-ratio: 1;
  object-fit: cover;

  cursor: zoom-in;

  transition: transform 0.4s ease;
}

.latest-grid figure:hover img {
  transform: scale(1.04);
}

.latest-grid figcaption {
  padding: 13px;

  font-size: 11px;
  font-weight: 700;
}


/* =========================================
   FEATURE
========================================= */

.feature {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.feature-image {
  overflow: hidden;

  border-radius: 200px 200px 30px 30px;
}

.feature-image img {
  aspect-ratio: 0.9;
  object-fit: cover;
}

.feature-copy p:not(.eyebrow) {
  margin: 25px 0;

  color: var(--muted);
}

.text-link {
  font-size: 13px;
  font-weight: 700;

  border-bottom: 1px solid currentColor;
}


/* =========================================
   OCCASIONS
========================================= */

.occasion-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.occasion-card {
  padding: 28px 22px;

  background: var(--lavender);

  border-radius: 22px;
}

.occasion-card span {
  color: #97739d;

  font-size: 10px;
  font-weight: 700;
}

.occasion-card strong {
  display: block;

  margin: 35px 0 8px;

  font-family: "Cormorant Garamond", serif;

  font-size: 25px;
  line-height: 1;
}

.occasion-card p {
  color: var(--muted);
  font-size: 12px;
}


/* =========================================
   BULK
========================================= */

.bulk {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 70px;

  align-items: center;

  background: var(--lavender);

  width: min(1250px, 90%);

  padding: 65px;

  border-radius: 35px;
}

.bulk-visual {
  overflow: hidden;
  border-radius: 25px;
}

.bulk-visual img {
  aspect-ratio: 0.9;
  object-fit: cover;
}

.bulk-copy > p:not(.eyebrow) {
  margin: 22px 0;

  color: var(--muted);
}

.bulk-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin: 25px 0;
}

.bulk-services span {
  padding: 9px 13px;

  background: rgba(255,255,255,0.65);

  border-radius: 50px;

  font-size: 11px;
}

.stall-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  margin-top: 30px;
  padding: 22px;

  background: rgba(255,255,255,0.72);

  border-radius: 22px;
}

.stall-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.stall-box h3 {
  margin: 8px 0;
  font-size: 25px;
}

.stall-box p {
  color: var(--muted);
  font-size: 12px;
}


/* =========================================
   ABOUT
========================================= */

.about {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}

.about-copy > p:not(.eyebrow) {
  margin: 25px 0;

  color: var(--muted);
}

.signature {
  margin-top: 30px;

  font-family: "Great Vibes", cursive;

  font-size: 32px;
}

.signature span {
  color: #97739d;
}

.about-stack {
  position: relative;

  min-height: 500px;
}

.about-stack img {
  position: absolute;

  width: 65%;
  height: 390px;

  object-fit: cover;

  border-radius: 25px;

  box-shadow: var(--shadow);
}

.stack-back {
  top: 0;
  right: 0;
}

.stack-front {
  bottom: 0;
  left: 0;
}


/* =========================================
   ORDER
========================================= */

.order {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: start;
}

.order-copy > p:not(.eyebrow) {
  margin: 25px 0;

  color: var(--muted);
}

.order-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin-top: 25px;

  font-size: 12px;
}

#orderForm {
  padding: 35px;

  background: white;

  border: 1px solid var(--line);

  border-radius: 30px;

  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 25px;
}

.form-title span {
  color: #97739d;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.form-title h3 {
  margin-top: 8px;
}

#orderForm label {
  display: block;

  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 700;
}

#orderForm input,
#orderForm select,
#orderForm textarea {
  display: block;

  width: 100%;

  margin-top: 8px;

  padding: 13px 15px;

  background: var(--cream);

  border: 1px solid var(--line);
  border-radius: 14px;

  outline: none;

  color: var(--brown);

  resize: vertical;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
  border-color: #a783ad;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

#orderForm small {
  display: block;

  margin-top: 12px;

  color: var(--muted);

  font-size: 10px;
  text-align: center;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 55px 5vw 30px;

  background: var(--dark);

  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand h3 {
  color: white;
  font-size: 30px;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}

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

  margin: 35px 0;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

.footer-links a:hover {
  color: white;
}

.copyright {
  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,0.12);

  color: rgba(255,255,255,0.45);

  font-size: 10px;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 1500;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25D366;
  color: white;

  font-size: 23px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.18);

  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}


/* =========================================
   IMAGE LIGHTBOX
========================================= */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background: rgba(30, 24, 27, 0.88);
}

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 88vh;

  width: auto;
  object-fit: contain;

  border-radius: 15px;
}

.lightbox button {
  position: absolute;

  top: 20px;
  right: 25px;

  border: 0;
  background: transparent;

  color: white;

  font-size: 38px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .site-header {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .site-header nav {
    gap: 12px;
  }

  .site-header nav a {
    font-size: 11px;
  }

  .instagram-btn {
    display: none;
  }

  .hero {
    gap: 40px;
  }

  .menu-grid,
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .latest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bulk {
    padding: 45px;
    gap: 40px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

  html {
    scroll-padding-top: 75px;
  }

  .announcement {
    font-size: 9px;
    padding: 7px 10px;
  }

  /* HEADER */

  .site-header {
    min-height: 68px;

    padding: 8px 18px;

    justify-content: space-between;

    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 26px;
  }

  .menu-btn {
    display: block;
  }

  .site-header nav {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    margin: 0;

    padding: 10px 18px 18px;

    background: rgba(255, 250, 245, 0.98);

    border-bottom: 1px solid var(--line);

    box-shadow: 0 15px 30px rgba(75,59,64,0.08);
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a {
    padding: 13px 5px;

    border-bottom: 1px solid var(--line);

    font-size: 13px;
  }

  .site-header nav a:last-child {
    border-bottom: 0;
  }

  .instagram-btn {
    display: none;
  }


  /* GENERAL */

  .section {
    width: 90%;

    padding: 70px 0;
  }

  h1 {
    font-size: clamp(45px, 14vw, 65px);
  }

  h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h3 {
    font-size: 27px;
  }


  /* HERO */

  .hero {
    width: 90%;

    min-height: auto;

    grid-template-columns: 1fr;

    gap: 45px;

    padding: 55px 0 75px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    font-size: 9px;
  }

  .hero-text {
    margin: auto;

    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;

    width: 100%;
    max-width: 360px;

    margin: 28px auto 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mini-note {
    justify-content: center;

    font-size: 10px;

    text-align: center;
  }

  .hero-art {
    width: 90%;
  }

  .arch {
    aspect-ratio: 0.78;
  }

  .floating-tag {
    font-size: 7px;
    padding: 9px 11px;
  }

  .floating-tag.top {
    left: -10px;
  }

  .floating-tag.bottom {
    right: -10px;
  }


  /* INTRO */

  .intro {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .intro > p {
    font-size: 14px;
  }


  /* MENU */

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading p:last-child {
    font-size: 13px;
  }

  .menu-grid,
  .signature-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .menu-photo {
    height: 240px;
  }

  .menu-card-body {
    padding: 21px;
  }

  .menu-card h3 {
    font-size: 30px;
  }

  .menu-note {
    align-items: flex-start;

    font-size: 11px;
  }


  /* FILTER */

  .filter-bar {
    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 5px;

    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
  }


  /* SIGNATURE */

  .signature-photo {
    height: 280px;
  }

  .signature-body {
    padding: 20px;
  }

  .signature-body h3 {
    font-size: 29px;
  }

  .card-bottom {
    align-items: flex-end;
  }


  /* GALLERY */

  .gallery {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .product,
  .product.large {
    grid-row: auto;

    min-height: 430px;
  }

  .product-info {
    left: 12px;
    right: 12px;
    bottom: 12px;

    padding: 15px;
  }


  /* LATEST */

  .latest-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .latest-grid figcaption {
    padding: 10px;

    font-size: 10px;
  }


  /* FEATURE */

  .feature {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .feature-image {
    border-radius: 150px 150px 25px 25px;
  }


  /* OCCASIONS */

  .occasion-grid {
    grid-template-columns: 1fr 1fr;

    gap: 12px;
  }

  .occasion-card {
    padding: 20px 16px;
  }

  .occasion-card strong {
    margin-top: 25px;

    font-size: 22px;
  }


  /* BULK */

  .bulk {
    grid-template-columns: 1fr;

    width: 90%;

    padding: 25px;

    gap: 35px;

    border-radius: 28px;
  }

  .bulk-visual img {
    aspect-ratio: 1;
  }

  .stall-box {
    flex-direction: column;

    align-items: stretch;

    gap: 20px;
  }

  .stall-box .btn {
    width: 100%;
  }


  /* ABOUT */

  .about {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .about-stack {
    min-height: 420px;
  }

  .about-stack img {
    width: 72%;
    height: 300px;
  }


  /* ORDER */

  .order {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .order-points {
    grid-template-columns: 1fr;
  }

  #orderForm {
    padding: 22px;

    border-radius: 24px;
  }

  .two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #orderForm input,
  #orderForm select,
  #orderForm textarea {
    font-size: 16px;
  }


  /* FOOTER */

  footer {
    padding: 45px 6vw 25px;
  }

  .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .footer-brand h3 {
    font-size: 27px;
  }

  .footer-links {
    gap: 14px;
  }


  /* WHATSAPP */

  .whatsapp-float {
    right: 15px;
    bottom: 15px;

    width: 54px;
    height: 54px;
  }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 390px) {

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 23px;
  }

  .menu-btn {
    font-size: 25px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-art {
    width: 94%;
  }

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

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

  .product,
  .product.large {
    min-height: 380px;
  }

  .about-stack {
    min-height: 360px;
  }

  .about-stack img {
    height: 260px;
  }

}


/* =========================================
   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;
  }

}
