:root {
  --yellow: #f5c242;
  --yellow-deep: #e6b22b;
  --cream: #f8f4ee;
  --ivory: #fffdf8;
  --beige: #efe6d8;
  --charcoal: #2d2d2d;
  --muted: #766f64;
  --line: #eae7e2;
  --green: #4caf50;
  --shadow: 0 18px 48px rgba(77, 55, 21, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Inter, Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 8% 18%, rgba(245, 194, 66, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 38%, rgba(230, 178, 43, 0.12), transparent 22rem),
    var(--ivory);
  overflow-x: hidden;
}

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

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

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

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.error-page-content {
  width: min(680px, 100%);
  text-align: center;
}

.error-logo {
  display: inline-block;
  width: 92px;
  margin-bottom: 28px;
}

.error-logo img {
  clip-path: circle(49.2% at 50% 50%);
}

.error-code {
  margin: 10px 0 -18px;
  color: rgba(230, 178, 43, 0.25);
  font: 700 clamp(110px, 22vw, 190px) / 0.85 "Cormorant Garamond", Georgia, serif;
}

.error-page h1 {
  position: relative;
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
}

.error-page-content > p:not(.error-code) {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.announcement {
  position: relative;
  z-index: 50;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #231f18;
  background: linear-gradient(90deg, var(--yellow), #ffd466, var(--yellow));
  font-weight: 600;
}

.bee-mark {
  width: 28px;
  height: 24px;
  object-fit: contain;
}

.heart,
h1 span,
h2 span {
  color: var(--yellow-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px clamp(24px, 6vw, 88px);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 231, 226, 0.7);
  transition: min-height 0.22s ease, padding 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 12px 28px rgba(77, 55, 21, 0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: width 0.22s ease, height 0.22s ease;
}

.site-header .logo {
  width: 78px;
  height: auto;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--yellow-deep);
  text-decoration: none;
}

.site-header.is-scrolled .logo {
  width: 64px;
  height: auto;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  clip-path: circle(49.2% at 50% 50%);
}

.site-header .logo img {
  width: 64px;
}

.header-wordmark {
  display: block;
  background: linear-gradient(105deg, #6f4b00 0%, #b98209 34%, #f0cd63 50%, #9f6b05 66%, #5f4100 100%);
  background-size: 180% auto;
  color: #7f5a08;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 246, 198, 0.45);
}

.site-header.is-scrolled .logo img {
  width: 52px;
}

.site-header.is-scrolled .header-wordmark {
  font-size: 8px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.section-heading,
.socials {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--charcoal);
  display: grid;
  place-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.ui-icon {
  display: inline-block;
  width: 23px;
  height: 23px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-account {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7.5' r='3.4'/%3E%3Cpath d='M5.4 20.2c.8-4.1 3.1-6.2 6.6-6.2s5.8 2.1 6.6 6.2'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-heart {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.5 4.9 13.8C1.2 10.3 3.5 4.5 8.4 4.5c1.6 0 2.9.7 3.6 1.8.7-1.1 2-1.8 3.6-1.8 4.9 0 7.2 5.8 3.5 9.3L12 20.5Z' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-bag {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.4 8.2h11.2l-.8 12H7.2l-.8-12Z'/%3E%3Cpath d='M9 8.2V6.6a3 3 0 0 1 6 0v1.6'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-home {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 11.3 12 5l7.5 6.3'/%3E%3Cpath d='M7.2 10.2v9h9.6v-9'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-products {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='5.2' height='5.2' rx='1'/%3E%3Crect x='13.8' y='5' width='5.2' height='5.2' rx='1'/%3E%3Crect x='5' y='13.8' width='5.2' height='5.2' rx='1'/%3E%3Crect x='13.8' y='13.8' width='5.2' height='5.2' rx='1'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-sparkle {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.8 14.2 9.8 20.2 12 14.2 14.2 12 20.2 9.8 14.2 3.8 12 9.8 9.8 12 3.8Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cart-count {
  position: absolute;
  right: -2px;
  top: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  font: 700 12px/1 "DM Sans", sans-serif;
}

.wishlist-count {
  position: absolute;
  right: -3px;
  top: -4px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font: 700 11px/1 "DM Sans", sans-serif;
}

.nav-toggle {
  display: none;
}

.section-pad {
  padding: clamp(44px, 5vw, 76px) clamp(20px, 6vw, 86px);
}

.hero {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  overflow: hidden;
}

.hero-heading-bee {
  position: absolute;
  z-index: 4;
  width: 46px;
  left: clamp(270px, 41vw, 610px);
  top: 58px;
  transform: rotate(4deg);
  filter: drop-shadow(0 8px 8px rgba(45, 45, 45, 0.13));
}

.heading-flight {
  width: 190px;
  height: 54px;
  left: clamp(180px, 31vw, 480px);
  top: 88px;
  transform: rotate(2deg);
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #8d6b12;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 3.9vw, 58px);
}

h2 {
  font-size: clamp(34px, 3.4vw, 52px);
}

.hero-copy h1,
.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: 520px;
  font-size: clamp(38px, 3.9vw, 58px);
}

.hero-copy .headline-line {
  display: block;
  color: var(--charcoal);
  white-space: nowrap;
}

.hero-heart {
  display: inline;
  color: var(--yellow-deep);
  font-size: 0.68em;
  font-weight: 600;
  line-height: 0;
  white-space: nowrap;
}

.hero-copy p,
.finder-copy p,
.corporate-copy p,
.newsletter p,
.footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy p {
  max-width: 500px;
  margin: 18px 0 24px;
  font-size: 15px;
  line-height: 1.72;
}

.hero-actions {
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--yellow), #ffd563);
}

.btn.ghost,
.btn.outline {
  border-color: #d9c8a8;
  background: rgba(255, 253, 248, 0.75);
}

.btn.dark {
  background: var(--charcoal);
  color: white;
}

.hero-art {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
}

.hero-art > img:not(.flying-bee) {
  position: relative;
  z-index: 3;
  width: min(76%, 430px);
  border-radius: 12px;
  filter: drop-shadow(0 16px 38px rgba(115, 72, 9, 0.1));
  animation: float 5s ease-in-out infinite;
}

.blob {
  position: absolute;
  border-radius: 47% 53% 59% 41% / 49% 51% 49% 51%;
  background: rgba(245, 194, 66, 0.22);
}

.blob-one {
  width: 66%;
  height: 62%;
  right: 6%;
  top: 6%;
}

.blob-two {
  width: 46%;
  height: 38%;
  left: 2%;
  bottom: 8%;
  background: rgba(230, 178, 43, 0.14);
}

.flying-bee {
  width: 46px;
  height: auto;
  filter: drop-shadow(0 8px 7px rgba(45, 45, 45, 0.12));
}

.flying-bee.large {
  width: 92px;
}

.bee-one {
  position: absolute;
  left: 0;
  top: 14%;
  z-index: 4;
}

.flight {
  position: absolute;
  border: 2px dashed rgba(99, 72, 24, 0.45);
  border-color: rgba(99, 72, 24, 0.45) transparent transparent transparent;
  border-radius: 50%;
  pointer-events: none;
}

.flight-one {
  width: 320px;
  height: 94px;
  left: -23%;
  top: 22%;
  transform: rotate(-5deg);
}

.flight-two {
  width: 250px;
  height: 95px;
  left: 4%;
  bottom: 4%;
  transform: rotate(20deg);
}

.flight-three {
  width: 280px;
  height: 120px;
  left: 8%;
  bottom: 14%;
  transform: rotate(12deg);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 18px clamp(20px, 6vw, 86px);
  background: linear-gradient(90deg, var(--yellow), #ffd361);
}

.trust-bar article {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 8px clamp(10px, 2vw, 30px);
  border-right: 1px solid rgba(45, 45, 45, 0.24);
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-icon {
  font-family: "Patrick Hand", cursive;
  font-size: 40px;
}

.trust-bar h2 {
  font: 700 15px/1.2 "DM Sans", sans-serif;
  margin: 0 0 8px;
}

.trust-bar p {
  margin: 0;
  line-height: 1.6;
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 210px 210px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
}

.shop-toolbar label span {
  color: var(--charcoal);
}

.shop-toolbar input,
.shop-toolbar select {
  min-height: 46px;
}

.product-results {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 30px rgba(101, 69, 20, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(92, 64, 24, 0.12);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8ecce;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-wishlist {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
  color: var(--charcoal);
  display: grid;
  place-items: center;
}

.card-wishlist .ui-icon {
  width: 21px;
  height: 21px;
}

.card-wishlist.saved {
  color: #a66f00;
  background: var(--yellow);
}

.product-card:nth-child(2) .product-image img {
  object-position: center;
}

.product-card:nth-child(3) .product-image img {
  object-position: center;
}

.product-card:nth-child(4) .product-image img {
  object-position: center;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 20px;
}

.product-info h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.product-info p {
  margin: 0;
  font-weight: 700;
}

.quick-add {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 28px;
  cursor: pointer;
}

.quick-add:disabled,
.modal-cart:disabled,
.wishlist-enquiry:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-card.out-of-stock .product-image img {
  filter: grayscale(0.35);
  opacity: 0.72;
}

.stock-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.new-arrivals-section {
  border-top: 1px solid var(--line);
  background: rgba(245, 194, 66, 0.08);
}

.new-arrivals-section .section-heading p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.new-arrivals-teaser {
  position: relative;
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: 32px clamp(28px, 6vw, 72px);
  border: 1px dashed #d9bd77;
  border-radius: 8px;
  background: linear-gradient(110deg, #fff8e7, #fffdf8 68%);
}

.teaser-gift {
  position: relative;
  width: 240px;
  height: 190px;
  margin: auto;
  transform: rotate(-3deg);
}

.teaser-gift-box {
  position: absolute;
  left: 21px;
  bottom: 8px;
  width: 200px;
  height: 130px;
  border: 2px solid var(--charcoal);
  border-radius: 4px 4px 7px 7px;
  background: linear-gradient(135deg, #f8d369, #edb92f);
  box-shadow: 12px 13px 0 #f4e3ad;
}

.teaser-gift-lid {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 45px;
  width: 222px;
  height: 38px;
  border: 2px solid var(--charcoal);
  border-radius: 6px 6px 3px 3px;
  background: var(--yellow);
  box-shadow: 0 5px 0 rgba(76, 49, 10, 0.1);
}

.teaser-ribbon-v {
  position: absolute;
  z-index: 3;
  left: 103px;
  top: 45px;
  width: 35px;
  height: 145px;
  border-inline: 2px solid var(--charcoal);
  background: #fff4d4;
}

.teaser-ribbon-h {
  position: absolute;
  z-index: 3;
  left: 21px;
  top: 102px;
  width: 200px;
  height: 27px;
  border-block: 2px solid var(--charcoal);
  background: #fff4d4;
}

.teaser-bow {
  position: absolute;
  z-index: 5;
  left: 120px;
  top: 40px;
}

.teaser-bow::before,
.teaser-bow::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 32px;
  border: 2px solid var(--charcoal);
  background: #fff4d4;
}

.teaser-bow::before {
  right: 0;
  border-radius: 55% 12% 55% 45%;
  transform: rotate(15deg);
}

.teaser-bow::after {
  left: 0;
  border-radius: 12% 55% 45% 55%;
  transform: rotate(-15deg);
}

.teaser-bow-knot {
  position: absolute;
  z-index: 6;
  left: 108px;
  top: 58px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  background: var(--yellow);
}

.teaser-tag {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 27px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: rotate(8deg);
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  background: #fff8e7;
  text-align: center;
  font: 400 16px/0.9 "Patrick Hand", cursive;
}

.teaser-copy {
  position: relative;
  max-width: 590px;
}

.teaser-copy > span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  transform: rotate(-2deg);
  background: var(--yellow);
  font: 400 19px/1 "Patrick Hand", cursive;
}

.teaser-copy h3 {
  margin: 0 0 10px;
  font: 400 clamp(34px, 3.6vw, 46px)/1.05 "Patrick Hand", cursive;
}

.teaser-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.teaser-trail {
  position: absolute;
  right: 70px;
  top: 45px;
  width: 180px;
  height: 68px;
  border-top: 2px dashed #b79b5e;
  border-radius: 50%;
  transform: rotate(8deg);
}

.teaser-spark {
  position: absolute;
  right: 38px;
  top: 25px;
  font-size: 26px;
  transform: rotate(10deg);
}

.quick-view,
.whatsapp-order {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9c8a8;
  border-radius: 999px;
  background: #fffaf0;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.whatsapp-order {
  border-color: rgba(76, 175, 80, 0.42);
  background: rgba(76, 175, 80, 0.12);
}

.gift-finder {
  background: linear-gradient(180deg, rgba(245, 194, 66, 0.08), rgba(255, 253, 248, 0.7));
}

.finder-panel,
.builder-grid {
  border: 1px solid rgba(220, 203, 172, 0.8);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.finder-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
}

.finder-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

select,
input,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ddcfb7;
  border-radius: 8px;
  padding: 0 14px;
  background: white;
  color: var(--charcoal);
}

textarea {
  min-height: auto;
  padding-top: 12px;
  resize: vertical;
}

.recommendation {
  min-height: 100px;
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(135deg, var(--yellow), #ffe19b);
}

.recommendation h3 {
  margin: 0 0 8px;
}

.builder-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 32px);
}

.builder-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: #fffaf0;
  cursor: pointer;
}

.step-card.active {
  border-color: var(--yellow-deep);
  background: #fff0bd;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 800;
}

.step-card h3 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.builder-preview {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
}

.builder-preview .flying-bee {
  position: absolute;
  right: 18px;
  top: -8px;
  width: 48px;
  height: 48px;
}

.builder-preview h3 {
  margin: 0;
  font-size: 20px;
}

.preview-box {
  min-height: 320px;
  display: grid;
  align-content: end;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff8e6, #f4cf67);
}

.preview-box img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

#previewTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}

#previewTags span {
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  font-size: 13px;
  font-weight: 700;
}

.occasion-grid,
.corporate-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.occasion-grid a,
.corporate-list article {
  min-height: 100px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(45, 45, 45, 0.42)),
    var(--occasion-image, url("assets/wiy-hamper-hero-1280.webp")) center/cover;
  color: white;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.occasion-grid a:hover,
.corporate-list article:hover {
  transform: translateY(-4px);
}

.occasion-grid a {
  min-height: 170px;
  background-position: center;
  box-shadow: inset 0 -70px 50px -42px rgba(25, 20, 10, 0.74);
}

.custom-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(54px, 7vw, 86px) clamp(20px, 10vw, 130px);
  background: linear-gradient(90deg, var(--yellow), #ffd466);
}

.custom-banner > div:first-of-type {
  text-align: center;
}

.custom-banner p {
  font-size: 19px;
}

.gift-doodle {
  width: 160px;
  height: 150px;
  border: 4px solid var(--charcoal);
  border-top-width: 8px;
  border-radius: 8px;
  position: relative;
}

.gift-doodle::before,
.gift-doodle::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
}

.gift-doodle::before {
  width: 4px;
  inset: -8px auto 0 50%;
}

.gift-doodle::after {
  height: 4px;
  left: 0;
  right: 0;
  top: 42px;
}

.corporate {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.1fr;
  gap: 34px;
  align-items: center;
}

.corporate-list article {
  min-height: 140px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-track article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: white;
  box-shadow: 0 10px 24px rgba(101, 69, 20, 0.06);
}

.review-track span {
  color: var(--yellow-deep);
  letter-spacing: 0;
}

.review-track p {
  line-height: 1.7;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 34px clamp(28px, 7vw, 118px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
}

.newsletter h2 {
  font: 700 18px/1.25 "DM Sans", sans-serif;
  margin: 0 0 8px;
}

.newsletter p {
  max-width: 420px;
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-self: end;
  width: min(100%, 580px);
}

.newsletter-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 600;
}

.newsletter form > input {
  min-height: 48px;
  border-radius: 8px 0 0 8px;
}

.newsletter .newsletter-consent input {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 2px 0 0;
  border-radius: 2px;
}

.newsletter button {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0 8px 8px 0;
}

.coupon-field {
  display: none;
}

.socials {
  gap: 18px;
  font-size: 28px;
}

.footer {
  display: grid;
  grid-template-columns:
    minmax(210px, 1.05fr)
    repeat(3, minmax(130px, 0.6fr))
    minmax(240px, 0.9fr);
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 26px;
  align-items: start;
  padding: 34px clamp(28px, 7vw, 118px) 28px;
  border-top: 1px solid var(--line);
}

.footer .logo-icon {
  width: 74px;
  height: 74px;
  font-size: 24px;
}

.footer .logo {
  width: 72px;
  height: 72px;
}

.footer-brand p {
  max-width: 260px;
  font-size: 13px;
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.25;
}

.footer a {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer .footer-contact {
  color: var(--charcoal);
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom > span:first-child {
  max-width: 420px;
}

.footer-bottom > span:last-child {
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.footer-legal-links a {
  margin: 0;
  font-size: 13px;
}

.footer-abn {
  display: inline;
  margin-left: 10px;
}

.policy-page {
  background: #fffdf8;
}

.policy-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) clamp(22px, 5vw, 60px);
}

.policy-shell h1 {
  margin: 12px 0 18px;
  font: 600 clamp(40px, 5vw, 60px)/1.08 "DM Sans", Arial, sans-serif;
}

.policy-shell .policy-intro {
  max-width: 760px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.policy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 12px;
  font: 600 28px/1.25 "DM Sans", Arial, sans-serif;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-section ul {
  padding-left: 22px;
}

.policy-note {
  padding: 20px;
  border-left: 4px solid var(--yellow-deep);
  background: #fff8e7;
}

/* Focused storefront pages */
.home-page #finder,
.home-page #builder,
.home-page #corporate,
.home-page .shop-toolbar {
  display: none;
}

.home-page .hero.section-pad {
  min-height: 350px;
  padding-top: clamp(16px, 2vw, 26px);
  padding-bottom: 26px;
}

.seasonal-spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  margin: 0 clamp(20px, 6vw, 86px) clamp(34px, 5vw, 64px);
  padding: clamp(34px, 5vw, 62px);
  border-radius: 8px;
  background: linear-gradient(120deg, #f4c552, #ffd86f);
}

.seasonal-copy h2 {
  max-width: 520px;
  font-size: clamp(42px, 4.4vw, 64px);
}

.seasonal-copy p {
  max-width: 520px;
  margin: 18px 0 24px;
  color: #4e4535;
  line-height: 1.7;
}

.seasonal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seasonal-gallery {
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(91, 60, 8, 0.13);
}

.seasonal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.rakhi-campaign-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(46px, 6vw, 82px) clamp(24px, 7vw, 110px);
  background: radial-gradient(circle at 76% 48%, rgba(245, 194, 66, 0.26), transparent 34%), var(--cream);
}

.rakhi-campaign-copy h1 {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(48px, 5.5vw, 78px);
}

.rakhi-campaign-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.75;
}

.rakhi-campaign-hero > img {
  width: min(100%, 570px);
  max-height: 480px;
  justify-self: end;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(100, 68, 18, 0.13);
}

.rakhi-choice-section {
  background: rgba(245, 194, 66, 0.07);
}

.rakhi-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.rakhi-choice-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) minmax(250px, 1.15fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.rakhi-choice-card > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.rakhi-choice-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.rakhi-choice-card h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 3.4vw, 50px);
}

.rakhi-choice-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.rakhi-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--yellow);
}

.rakhi-reasons article {
  display: grid;
  gap: 6px;
  padding: 12px 26px;
  border-right: 1px solid rgba(45, 45, 45, 0.18);
}

.rakhi-reasons article:last-child {
  border-right: 0;
}

.rakhi-reasons span {
  color: #5f5137;
  font-size: 13px;
}

.category-strip {
  padding-top: 6px;
  padding-bottom: 48px;
}

.category-strip .occasion-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-strip .occasion-grid a {
  min-height: 112px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(88, 62, 27, 0.07), inset 0 -64px 42px -38px rgba(25, 20, 10, 0.72);
}

.home-page .shop-section .product-card:nth-child(n + 4) {
  display: none;
}

.home-page .shop-section {
  padding-inline: clamp(48px, 12vw, 210px);
}

.home-page .shop-section .section-heading,
.home-page .shop-section .product-grid {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.home-page .shop-section .section-heading h2 {
  font-size: clamp(34px, 3.4vw, 52px);
}

.home-page .shop-section .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-page .shop-section .product-image {
  aspect-ratio: 1.34 / 1;
}

.home-page .shop-section .product-info {
  padding: 16px;
}

.home-page .shop-section .product-info h3 {
  font-size: 16px;
}

.page-hero {
  min-height: min(540px, calc(100vh - 110px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(42px, 6vw, 76px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background: radial-gradient(circle at 78% 50%, rgba(255, 200, 61, 0.3), transparent 32%), var(--cream);
}

.page-hero.compact {
  min-height: 420px;
}

.page-hero h1 {
  max-width: 720px;
  margin: 14px 0 20px;
  font: 600 clamp(40px, 4.5vw, 64px)/1.08 "DM Sans", Arial, sans-serif;
}

.page-hero p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.page-hero img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 32px 34px rgba(76, 49, 10, 0.18));
}

.soft-band {
  background: #fff8e7;
  border-block: 1px solid rgba(166, 120, 27, 0.12);
}

.process-grid,
.story-grid,
.contact-layout {
  display: grid;
  gap: 28px;
}

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

.process-grid article,
.value-list article {
  padding: 22px;
  border: 1px solid rgba(166, 120, 27, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.process-grid span {
  color: var(--yellow-deep);
  font-weight: 700;
}

.process-grid h3,
.value-list h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.story-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.story-grid h2,
.contact-layout h2 {
  margin: 12px 0 20px;
  font: 400 clamp(34px, 4vw, 52px)/1 "Patrick Hand", "DM Sans", sans-serif;
}

.story-grid > div:first-child > p {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.value-list {
  display: grid;
  gap: 14px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.contact-form,
.contact-details {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(166, 120, 27, 0.18);
  background: #fffdf8;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e6d9bd;
  background: white;
  font: inherit;
}

.contact-details {
  display: grid;
  gap: 24px;
  background: var(--yellow);
}

.contact-details div {
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid rgba(35, 31, 24, 0.2);
}

@media (max-width: 900px) {
  .page-hero,
  .page-hero.compact,
  .process-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .page-hero.compact {
    min-height: auto;
    padding-top: 48px;
  }

  .page-hero img {
    max-height: 380px;
  }
}

.mobile-nav,
.whatsapp {
  position: fixed;
  z-index: 60;
}

.product-modal {
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--ivory);
  color: var(--charcoal);
  box-shadow: 0 28px 80px rgba(45, 45, 45, 0.25);
}

.product-modal::backdrop {
  background: rgba(45, 45, 45, 0.38);
  backdrop-filter: blur(4px);
}

.product-modal[open] {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
}

.modal-media {
  background: #fff0bd;
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: clamp(26px, 5vw, 48px);
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.modal-product-details {
  display: grid;
  gap: 14px;
  padding-right: 6px;
}

.modal-product-details section {
  display: grid;
  gap: 7px;
}

.modal-product-details h3 {
  margin: 0;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
}

.modal-product-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.modal-product-details p {
  font-size: 13px;
  line-height: 1.5;
}

.modal-copy strong {
  font-size: 24px;
}

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

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid #d9c8a8;
  border-radius: 50%;
  background: var(--ivory);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.mobile-nav {
  display: none;
  left: 12px;
  right: 12px;
  bottom: 12px;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: grid;
  place-items: center;
  gap: 2px;
  font-size: 18px;
}

.mobile-nav button {
  display: grid;
  place-items: center;
  gap: 2px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 18px;
}

.mobile-nav .ui-icon {
  width: 19px;
  height: 19px;
}

.mobile-nav span {
  font-size: 10px;
  font-weight: 700;
}

.whatsapp {
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 28px;
  box-shadow: var(--shadow);
}

.drawer-open {
  overflow: hidden;
}

.shop-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  border-left: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: -18px 0 48px rgba(45, 45, 45, 0.16);
  transition: transform 0.25s ease;
}

.shop-drawer.open {
  transform: translateX(0);
}

.wishlist-drawer {
  grid-template-rows: auto 1fr;
}

.drawer-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(45, 45, 45, 0.35);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.drawer-overlay.show {
  visibility: visible;
  opacity: 1;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  font-size: 42px;
}

.drawer-header .eyebrow {
  margin-bottom: 6px;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 26px;
}

.drawer-body {
  overflow-y: auto;
  padding: 18px 24px;
}

.drawer-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-item img {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  object-fit: cover;
}

.drawer-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.drawer-item small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.remove-item {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(3, 32px);
  align-items: center;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-control button {
  height: 30px;
  border: 0;
  background: #fff4d4;
  cursor: pointer;
}

.quantity-control span {
  text-align: center;
  font-weight: 700;
}

.wishlist-enquiry {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: #7c5a06;
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
}

.drawer-footer {
  display: grid;
  gap: 14px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fffaf0;
}

.coupon-field span {
  display: grid;
  grid-template-columns: 1fr auto;
}

.coupon-field input {
  min-height: 42px;
  border-radius: 8px 0 0 8px;
}

.coupon-field button {
  border: 0;
  border-radius: 0 8px 8px 0;
  padding: 0 16px;
  background: var(--yellow);
  cursor: pointer;
  font-weight: 800;
}

.shipping-meter {
  display: grid;
  gap: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.shipping-meter span {
  display: block;
  height: 6px;
  background: var(--yellow-deep);
  transition: width 0.25s ease;
}

.shipping-meter p {
  margin: 0;
  padding: 0 8px 7px;
  color: var(--muted);
  font-size: 12px;
}

.cart-totals {
  display: grid;
  gap: 8px;
}

.cart-totals p {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.cart-totals .total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
}

.empty-state h3 {
  color: var(--charcoal);
}

.checkout-modal,
.account-modal {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  border: 0;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
  background: var(--ivory);
  color: var(--charcoal);
  box-shadow: 0 28px 80px rgba(45, 45, 45, 0.25);
}

.checkout-modal::backdrop,
.account-modal::backdrop {
  background: rgba(45, 45, 45, 0.38);
  backdrop-filter: blur(4px);
}

.checkout-heading p,
.account-modal > p {
  color: var(--muted);
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.full-field {
  grid-column: 1 / -1;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 8px;
  background: #fff4d4;
}

.checkout-summary h3,
.checkout-summary small {
  grid-column: 1 / -1;
  margin: 0;
}

.account-modal {
  width: min(520px, calc(100vw - 32px));
}

.account-modal form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 24px;
}

.tracking-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: #fff4d4;
}

.tracking-result:empty {
  display: none;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 18px);
  visibility: hidden;
  opacity: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow);
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@media (max-width: 1180px) {
  .primary-nav {
    gap: 18px;
    font-size: 14px;
  }

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

  .category-strip .occasion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seasonal-spotlight {
    grid-template-columns: 1fr;
  }

  .rakhi-choice-card {
    grid-template-columns: 1fr;
  }

  .rakhi-choice-card > img {
    min-height: 300px;
    max-height: 360px;
  }

  .finder-panel {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .shop-search {
    grid-column: 1 / -1;
  }

  .product-results {
    align-self: center;
    margin: 0;
  }
}

@media (max-width: 860px) {
  .hero-copy .headline-line {
    white-space: normal;
  }

  .site-header {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .seasonal-spotlight {
    margin-inline: 18px;
    padding: 28px 22px;
  }

  .seasonal-gallery {
    min-height: 230px;
  }

  .seasonal-gallery img {
    min-height: 230px;
  }

  .rakhi-campaign-hero,
  .rakhi-choice-grid {
    grid-template-columns: 1fr;
  }

  .rakhi-campaign-hero {
    padding-top: 38px;
  }

  .rakhi-campaign-hero > img {
    width: 100%;
    max-height: 430px;
    justify-self: stretch;
  }

  .rakhi-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rakhi-reasons article:nth-child(2) {
    border-right: 0;
  }

  .logo {
    width: 68px;
    height: auto;
  }

  .site-header .logo img {
    width: 50px;
  }

  .header-wordmark {
    font-size: 7px;
  }

  .site-header.is-scrolled {
    min-height: 62px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header.is-scrolled .logo {
    width: 58px;
    height: auto;
  }

  .site-header.is-scrolled .logo img {
    width: 42px;
  }

  .primary-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 138px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--charcoal);
  }

  .product-modal[open] {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-media img {
    min-height: 260px;
    max-height: 330px;
  }

  .modal-copy {
    max-height: none;
    overflow: visible;
  }

  .shop-toolbar,
  .checkout-fields,
  .account-modal form {
    grid-template-columns: 1fr;
  }

  .shop-search,
  .full-field {
    grid-column: auto;
  }

  .hero,
  .builder-grid,
  .corporate,
  .newsletter,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 32px;
  }

  .hero-heading-bee {
    width: 62px;
    left: auto;
    right: 24px;
    top: 62px;
  }

  .heading-flight {
    width: 190px;
    height: 62px;
    left: auto;
    right: 46px;
    top: 82px;
  }

  .hero-art {
    min-height: 300px;
  }

  .flying-bee {
    width: 56px;
  }

  .bee-one {
    left: 4%;
    top: 10%;
  }

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

  .trust-bar article {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 45, 45, 0.2);
  }

  .finder-controls,
  .builder-steps,
  .corporate-list,
  .review-track {
    grid-template-columns: 1fr;
  }

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

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

  .new-arrivals-teaser {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 22px;
    text-align: center;
  }

  .teaser-copy,
  .teaser-copy p {
    margin-inline: auto;
  }

  .teaser-trail,
  .teaser-spark {
    display: none;
  }

  .product-card:nth-child(2) .product-image img,
  .product-card:nth-child(3) .product-image img,
  .product-card:nth-child(4) .product-image img {
    object-position: center;
    transform: none;
  }

  .custom-banner {
    grid-template-columns: 1fr;
  }

  .gift-doodle {
    justify-self: center;
  }

  .newsletter form {
    grid-template-columns: 1fr;
    justify-self: stretch;
  }

  .newsletter form > input,
  .newsletter button {
    border-radius: 8px;
  }

  .newsletter button {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    flex-direction: column;
  }

  .footer-bottom > span:last-child,
  .footer-legal-links {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .footer .footer-contact {
    overflow-wrap: anywhere;
  }

  .footer-abn {
    display: block;
    margin: 4px 0 0;
  }

  .mobile-nav {
    display: grid;
  }

  .shop-drawer {
    width: 100vw;
  }

  .drawer-header {
    padding: 18px 20px;
  }

  .drawer-header h2 {
    font-size: 36px;
  }

  .drawer-body,
  .drawer-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .toast {
    bottom: 92px;
    width: max-content;
    max-width: calc(100vw - 28px);
    text-align: center;
  }

  .whatsapp {
    bottom: 92px;
  }
}

@media (max-width: 560px) {
  .announcement {
    height: 34px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .shop-section {
    padding-inline: 18px;
  }

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

  .seasonal-copy h2,
  .rakhi-campaign-copy h1 {
    font-size: 42px;
  }

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

  .seasonal-gallery img {
    min-height: 190px;
  }

  .seasonal-gallery img:last-child {
    display: none;
  }

  .rakhi-choice-card > img {
    min-height: 260px;
  }

  .rakhi-reasons {
    grid-template-columns: 1fr;
  }

  .rakhi-reasons article {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 45, 45, 0.18);
  }

  .product-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .preview-box {
    min-height: 310px;
  }

  .footer {
    padding-bottom: 116px;
  }
}
