:root {
  --ink: #0F3D34;
  --paper: #FAF6ED;
  --paper-2: #F6E6C9;
  --sand: #F6E6C9;
  --clay: #D79A1E;
  --plum: #0F3D34;
  --acid: #D79A1E;
  --gold: #D79A1E;
  --muted: #4f625b;
  --line: rgba(15, 61, 52, .14);
  --glass: rgba(250, 246, 237, .76);
  --shadow: 0 24px 80px rgba(15, 61, 52, .14);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Jost', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.45
}

body:before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 10% 5%, rgba(215, 154, 30, .18), transparent 28%), radial-gradient(circle at 92% 8%, rgba(215, 154, 30, .20), transparent 28%), linear-gradient(135deg, #FAF6ED 0%, #F6E6C9 55%, #FAF6ED 100%)
}

body:after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 61, 52, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 61, 52, .03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 75%)
}

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

img {
  width: 100%;
  display: block
}

.container {
  width: min(1210px, calc(100% - 36px));
  margin: auto
}

nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, calc(100% - 30px));
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 26px;
  background: rgba(90, 106, 103, 0.32);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
  transition: .35s ease
}

nav.scrolled,
nav.inner {
  background: rgba(251, 247, 239, .86);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(15, 61, 52, .12)
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 10px
}

nav.scrolled .logo,
nav.inner .logo {
  color: var(--ink)
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .72rem;
  font-weight: 700;
  padding: 12px 11px;
  border-radius: 999px;
  transition: .25s ease
}

.nav-account:hover .account-name {
  color: white;
}

nav.scrolled .nav-links a,
nav.inner .nav-links a,
nav.scrolled .nav-links span,
nav.inner .nav-links span {
  color: var(--ink)
}

.nav-links a:hover,
.nav-links span:hover {
  background: var(--acid);
  color: #0F3D34;
  transform: translateY(-1px)
}

.nav-dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 230px;
  list-style: none;
  padding: 10px;
  background: rgba(251, 247, 239, .96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a,
.nav-dropdown .dropdown-menu a {
  display: block;
  color: var(--ink);
  padding: 12px 14px
}

.dropdown-menu a:hover {
  background: #0F3D34;
  color: #fff
}

.menu-toggle {
  display: none;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer
}

nav.scrolled .menu-toggle,
nav.inner .menu-toggle {
  color: var(--ink)
}

.hero {
  min-height: 83vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0F3D34
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: runwayFade 28s infinite;
  filter: saturate(.9) contrast(1.05)
}

.hero-slide:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 61, 52, .88) 0%, rgba(15, 61, 52, .50) 46%, rgba(15, 61, 52, .20) 100%)
}

.hero-slide:nth-child(1) {
  background-image: url('../../uploads/background-image/image-1.png');
  animation-delay: 0s
}

.hero-slide:nth-child(2) {
  background-image: url('../../uploads/background-image/image-2.png');
  animation-delay: 7s
}

.hero-slide:nth-child(3) {
  background-image: url('../../uploads/background-image/image-3.png');
  animation-delay: 14s
}

.hero-slide:nth-child(4) {
  background-image: url('../../uploads/background-image/image-4.png');
  animation-delay: 21s
}


@keyframes runwayFade {
  0% {
    opacity: 0;
    transform: scale(1.02)
  }

  8%,
  22% {
    opacity: 1
  }

  32%,
  100% {
    opacity: 0;
    transform: scale(1.16)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  color: #fff;
  text-align: left;
  padding-top: 70px
}

.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--acid);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  margin: 26px 0px;
}

.hero-sub:before {
  content: '';
  width: 54px;
  height: 1px;
  background: var(--acid)
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.4rem, 11vw, 12rem);
  line-height: .76;
  font-weight: 700;
  font-size: 111px;
  letter-spacing: -4px;
  max-width: 980px
}

.hero-left,
.hero-right {
  display: inline-block;
  transform: none
}

.hero-right {
  color: #F6E6C9;
  font-style: italic;
  text-shadow: 0 0 40px rgba(215, 154, 30, .08)
}

.hero-quote {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  color: #e7ded2;
  margin: 34px 0;
  max-width: 520px
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.wa-btn {
  background: #0F3D34;
  border-color: #0F3D34;
  color: #fff;
  margin-top: 15px;
}

.btn,
.hero-buttons a,
.product-btn,
.checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
  transition: .28s ease
}

.hero-buttons a,
.checkout-btn {
  border-color: var(--acid);
  background: var(--acid);
  color: #0F3D34
}

.hero-buttons a:nth-child(2) {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5)
}

.btn:hover,
.product-btn:hover,
.checkout-btn:hover,
.hero-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
  background: var(--clay);
  border-color: var(--clay);
  color: #fff
}

.page-hero {
  min-height: 46vh;
  padding-top: 135px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 61, 52, .78), rgba(15, 61, 52, .45)), url('../../uploads/shop.jpg') center/cover;
  opacity: 1
}

.page-hero:after {
  content: 'DIVY';
  position: absolute;
  right: -30px;
  bottom: -50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw;
  color: rgba(255, 255, 255, .045);
  letter-spacing: -8px
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  line-height: .86;
  letter-spacing: -3px
}

.page-hero p {
  color: var(--acid);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .76rem
}

.section-title {
  text-align: center;
  margin-bottom: 56px
}

.section-title p {
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 800;
  font-size: .76rem;
  margin-bottom: 12px
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .88;
  font-weight: 700;
  letter-spacing: -2px
}

.section-title em {
  font-style: italic;
  color: var(--clay)
}

.why {
  padding: 95px 0 105px;
  position: relative;
  overflow: hidden;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.why-choose-media {
  position: relative;
  min-height: 520px;
}

.why-choose-image-stack {
  position: relative;
  min-height: 520px;
}

.why-choose-image-stack:before {
  content: '';
  position: absolute;
  inset: 76px 18px 36px 26px;
  background: rgba(246, 230, 201, .62);
  border-radius: 4px;
}

.why-choose-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 42px rgba(15, 61, 52, .12);
  background: #fff;
}

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

.why-choose-img-main {
  left: 0;
  top: 0;
  width: 54%;
  height: 86%;
  z-index: 2;
}

.why-choose-img-side {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 76%;
  z-index: 3;
  border: 12px solid rgba(250, 246, 237, .84);
}

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

.why-kicker {
  color: #e56f2d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.why h2 {
  color: #603c36;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: .95;
  margin: 0;
  text-align: left;
  display: block;
}

.why-underline {
  width: 86px;
  height: 4px;
  background: #e56f2d;
  border-radius: 999px;
  margin: 28px 0 38px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.why-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
}

.hex {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0;
  background: #fff;
  border: 10px solid rgba(255, 255, 255, .94);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  box-shadow: 0 14px 30px rgba(96, 60, 54, .08);
}

.hex img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.why-item h3 {
  color: #603c36;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 900;
}

.why-item p {
  color: #5f5550;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
  margin: 0;
}

.promo {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 55px;
  align-items: center;
  padding: 105px 8%
}

.promo-img img {
  max-height: 420px;
  object-fit: contain
}

.promo-copy h2 {
  font-size: 58px;
  max-width: 760px;
  margin: 0 0 26px
}

.promo-copy p {
  font-size: 21px;
  line-height: 1.7;
  max-width: 840px
}

.benefits {
  position: relative;
  background: #F6E6C9;
  min-height: 100vh;
  padding: clamp(58px, 7vh, 74px) 7.5% clamp(52px, 6.5vh, 68px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.benefits>h2 {
  text-align: center;
  font-size: clamp(42px, 4.5vw, 56px);
  margin: 0 0 clamp(26px, 4vh, 34px)
}

.benefit-bg {
  position: absolute;
  left: 0;
  top: 120px;
  bottom: 0;
  width: 260px;
  background: url("../../uploads/honeycomb_1.avif") center/cover;
  opacity: .55
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px)
}

.benefit-card {
  background: rgba(255, 255, 255, .9);
  border-radius: 18px;
  text-align: center;
  padding: clamp(24px, 4vh, 36px) clamp(18px, 2.6vw, 34px)
}

.circle {
  width: clamp(92px, 9vw, 118px);
  height: clamp(92px, 9vw, 118px);
  margin: 0 auto clamp(16px, 2.6vh, 22px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 45px
}

.circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 50%
}

.benefit-card h3 {
  font-size: clamp(24px, 2.35vw, 31px);
  line-height: 1.05;
  margin: 0 0 12px
}

.benefit-card p {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.45
}

.process {
  padding: 72px 8.5%;
  background: #f3d392;
}

.process-card {
  background: #f6f6f6;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 40px;
  padding: 70px 80px;
  align-items: center
}

.process-card h2 {
  font-size: 54px;
  margin: 0 0 22px
}

.process-card p,
.steps p {
  font-size: 20px;
  line-height: 1.65
}

.process-card img {
  height: 520px;
  object-fit: contain;
  margin-left: auto
}

.steps {
  margin-top: 65px;
  background: #FAF6ED;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 60px 65px;
  border-radius: 12px
}

.steps h3 {
  font-size: 35px;
  margin: 18px 0 12px
}

.steps img {
  height: 470px;
  object-fit: contain;
  margin: auto
}

.category,
.shop-section,
.story,
.contact,
.product-detail,
.cart-section {
  padding: 105px 0
}

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

.category-card {
  height: 470px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0F3D34;
  border-radius: 26px;
  box-shadow: var(--shadow);
  isolation: isolate
}

.category-card:nth-child(2) {
  margin-top: 44px
}

.category-card img {
  height: 100%;
  object-fit: contain;
  transition: .7s
}

.category-card:hover img {
  transform: scale(1.09) rotate(.5deg)
}

.category-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(15, 61, 52, .88));
  z-index: 1
}

.category-card:after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 26px;
  z-index: 2;
  pointer-events: none
}

.category-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px;
  z-index: 3
}

.category-overlay span {
  color: var(--acid);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 800
}

.category-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.55rem;
  line-height: 1;
  margin-top: 10px
}

.tools {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding: 14px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px)
}

.search {
  padding: 15px 18px;
  border: 1px solid transparent;
  background: white;
  min-width: 280px;
  border-radius: 999px;
  font: inherit;
  outline: none
}

.search:focus {
  border-color: var(--clay)
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 20px;
  text-transform: uppercase;
  font-size: .70rem;
  letter-spacing: 1.3px;
  font-weight: 800;
  border-radius: 999px;
  transition: .25s
}

.chip.active,
.chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-1px)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.product-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(15, 61, 52, .08);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(15, 61, 52, .08);
  overflow: hidden;
  transition: .35s ease;
  backdrop-filter: blur(12px)
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(15, 61, 52, .16)
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #F6E6C9;
  border-radius: 24px
}

.product-image img {
  height: inherit;
  object-fit: cover;
  transform: scale(1.08)
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--acid);
  color: #0F3D34;
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .66rem;
  font-weight: 900
}

.product-info {
  padding: 22px 12px 12px
}

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700
}

.product-info .cat {
  color: var(--muted);
  margin: 9px 0;
  font-size: .92rem
}

.price {
  color: var(--clay);
  font-weight: 900;
  font-size: 1.18rem;
  margin: 14px 0
}

.price small {
  color: var(--ink);
  margin-left: 5px;
}

.product-info .product-btn {
  width: 100%
}

.story {
  box-shadow: 0 18px 52px rgba(75, 42, 18, .10) !important;
  position: relative;
  overflow: hidden
}

.story:before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .09);
  right: -160px;
  top: -180px;
  filter: blur(10px)
}

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
  position: relative
}

.story img {
  height: 500px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .35)
}

.story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .86;
  letter-spacing: -2px
}

.story p {
  color: #d7cec4;
  font-size: 1.1rem;
  line-height: 1.85;
  margin: 24px 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px
}

.trust-item {
  border: 1px solid rgba(215, 154, 30, .28);
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  font-weight: 800
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}

.detail-image {
  height: 680px;
  background: #F6E6C9;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow)
}

.detail-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.detail-info {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 44px;
  box-shadow: 0 20px 70px rgba(15, 61, 52, .08)
}

.detail-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9;
  letter-spacing: -2px
}

.detail-info .price {
  font-size: 2.1rem
}

.detail-info p {
  line-height: 1.8;
  color: #4f625b;
  margin: 24px 0
}

.qty {
  width: 92px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-right: 10px;
  background: #fff;
  text-align: center
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.cart-table th,
.cart-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(15, 61, 52, .08);
  text-align: left
}

.cart-table th {
  background: #0F3D34;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: .72rem
}

.cart-thumb {
  width: 82px;
  height: 102px;
  object-fit: cover;
  border-radius: 16px
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap
}

.total-box {
  font-size: 1.9rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--clay);
  font-weight: 700
}

.contact {
  background: #F6E6C9
}

.contact-form {
  width: min(760px, calc(100% - 36px));
  margin: auto;
  display: grid;
  gap: 16px
}

.contact input,
.contact select,
.contact textarea,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  font: inherit;
  outline: none
}

.contact textarea,
.checkout-form textarea {
  min-height: 120px
}

.contact button {
  border: none;
  background: #0F3D34;
  color: #fff;
  padding: 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800
}

.checkout-form {
  width: min(720px, 100%);
  margin: auto;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  display: grid;
  gap: 15px;
  box-shadow: var(--shadow)
}

.notice {
  background: #FAF6ED;
  border: 1px solid rgba(215, 154, 30, .18);
  border-left: 6px solid var(--clay);
  padding: 18px;
  border-radius: 18px;
  margin: 20px 0
}

.empty {
  text-align: center;
  padding: 60px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--muted)
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: .9s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

footer.site-footer {
  background: #0F3D34;
  color: #fff;
  padding: 66px 0 26px;
  position: relative;
  overflow: hidden
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 34px;
  align-items: start
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  color: #F6E6C9;
  line-height: 1
}

.footer-main p,
.footer-col p,
.footer-local {
  color: rgba(255, 255, 255, .78);
  margin-top: 14px;
  max-width: 560px
}

.footer-col h3 {
  color: #F6E6C9;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem
}

.footer-links {
  display: grid;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .72rem;
  font-weight: 800
}

.footer-links a,
.footer-wa,
.footer-admin {
  color: #fff;
  opacity: .88;
  transition: .25s ease
}

.footer-links a:hover,
.footer-wa:hover,
.footer-admin:hover {
  color: #D79A1E;
  opacity: 1
}

.footer-wa,
.footer-admin {
  display: inline-block;
  margin-top: 12px;
  margin-right: 14px;
  font-weight: 800
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin: 38px auto 0;
  padding-top: 22px;
  width: min(1210px, calc(100% - 36px));
  color: rgba(255, 255, 255, .68);
  font-size: .9rem
}

@media(max-width:1040px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr)
  }

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

  .category-card:nth-child(2) {
    margin-top: 0
  }

  .story-grid,
  .product-detail-grid {
    grid-template-columns: 1fr
  }

  .detail-image {
    height: 560px
  }

  .story img {
    height: 520px
  }
}

@media(max-width:768px) {
  nav {
    top: 10px;
    border-radius: 24px;
    padding: 14px 16px;
  }

  .nav-links a,
  .nav-links span {
    color: var(--ink)
  }

  .menu-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(251, 247, 239, .98);
    flex-direction: column;
    gap: 0;
    padding: 14px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow)
  }

  .nav-links.active {
    display: flex
  }

  .nav-links li {
    text-align: center
  }

  .nav-links a,
  .nav-links span {
    display: block;
    padding: 13px
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    display: none;
    background: #fff;
    margin-top: 6px
  }

  .nav-dropdown.open .dropdown-menu {
    display: block
  }

  .hero-content {
    text-align: center
  }

  .hero-sub {
    justify-content: center
  }

  .hero-sub:before {
    display: none
  }

  .hero h1 {
    font-size: 4.4rem;
    letter-spacing: -2px
  }

  .hero-quote {
    margin-left: auto;
    margin-right: auto
  }

  .hero-buttons {
    justify-content: center
  }

  .category-grid,
  .products-grid {
    grid-template-columns: 1fr
  }

  .category-card {
    height: 370px
  }

  .tools {
    border-radius: 26px
  }

  .search {
    width: 100%;
    min-width: 0
  }

  .cart-table {
    font-size: .85rem
  }

  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) {
    display: none
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .detail-info {
    padding: 28px
  }

  .page-hero:after {
    display: none
  }
}

/* Added size selection and checkout summary styles */
.quick-add {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px
}

.quick-add select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 700;
  outline: none
}

.quick-add .product-btn {
  min-height: 46px;
  padding-inline: 18px;
  border: 0
}

.detail-buy-form {
  display: grid;
  gap: 16px;
  margin-top: 24px
}

.size-label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  color: var(--muted)
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.size-pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.size-pills label,
.size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  font-weight: 900;
  cursor: pointer;
  transition: .2s
}

.size-pills input:checked+label {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(15, 61, 52, .16)
}

.cart-table .size-chip {
  min-width: 42px;
  background: var(--acid);
  color: #0F3D34
}

.checkout-summary {
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: var(--shadow)
}

.checkout-summary h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 12px
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line)
}

.summary-line:last-child {
  border-bottom: 0
}

.summary-line b {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--acid);
  color: #0F3D34;
  font-size: .78rem
}

@media(max-width:720px) {
  .quick-add {
    grid-template-columns: 1fr
  }

  .quick-add .product-btn {
    width: 100%
  }

  .size-pills label {
    min-width: 48px
  }
}

/* ===== Customer auth/profile additions ===== */
.nav-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.mini-avatar,
.profile-avatar,
.admin-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  background: linear-gradient(135deg, #0F3D34, #D79A1E);
  color: #fff
}

.mini-avatar {
  width: 30px;
  height: 30px;
  font-size: .72rem
}

.auth-page {
  padding: 90px 0;
  background: url(../../uploads/login-bg.png);
}

.auth-shell {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 30px;
  align-items: stretch
}

.auth-art {
  min-height: 560px;
  border-radius: 36px;
  padding: 54px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .7)), url('../../uploads/login.png') center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: var(--shadow)
}

.auth-art h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .9;
  max-width: 680px
}

.auth-art p {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem
}

.auth-card {
  border-radius: 36px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: center
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F6E6C9;
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 22px
}

.auth-tabs a {
  text-align: center;
  padding: 13px 12px;
  border-radius: 999px;
  font-weight: 900
}

.auth-tabs a.active {
  background: #0F3D34;
  color: #fff
}

.auth-form {
  display: grid;
  gap: 16px
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: #0F3D34
}

.auth-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  font: inherit;
  background: #fff
}

.auth-form button:disabled {
  opacity: .45;
  cursor: not-allowed
}

.live-help {
  font-size: .82rem;
  color: #4f625b
}

.live-help.ok {
  color: #167a3a
}

.live-help.bad {
  color: #b42318
}

.inline-notice {
  position: static;
  margin-bottom: 16px;
  box-shadow: none
}

.profile-section {
  padding: 70px 0
}

.profile-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px
}

.profile-card,
.order-box {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow)
}

.profile-avatar {
  width: 110px;
  height: 110px;
  font-size: 2.4rem;
  margin-bottom: 18px
}

.profile-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem
}

.profile-card p {
  color: var(--muted);
  margin-top: 6px
}

.logout-link {
  margin-top: 20px
}

.profile-orders {
  display: grid;
  gap: 18px
}

.profile-orders>h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem
}

.order-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px
}

.bottom-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  background: #0F3D34;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  border-radius: 18px;
  padding: 14px 18px;
  max-width: min(520px, calc(100% - 28px));
  font-weight: 800;
  text-align: center
}

.notice-error {
  background: #fff0f0;
  color: #a32020;
  border-color: #ffc9c9
}

.notice-success {
  background: #effff4;
  color: #166534;
  border-color: #bbf7d0
}

@media(max-width:850px) {

  .auth-shell,
  .profile-grid {
    grid-template-columns: 1fr
  }

  .auth-art {
    min-height: 380px
  }

  .auth-card {
    align-self: auto
  }
}

/* Full user profile order details */
.detailed-order-box {
  display: grid;
  gap: 18px
}

.order-box-head small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700
}

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

.order-detail-grid>div,
.order-address-box,
.profile-order-products {
  background: rgba(255, 255, 255, .64);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px
}

.order-detail-grid span,
.order-address-box span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px
}

.order-detail-grid strong {
  font-size: .96rem;
  word-break: break-word
}

.order-address-box p {
  color: #0F3D34;
  line-height: 1.7;
  font-weight: 700
}

.profile-order-products h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 10px
}

.profile-order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.profile-order-item:last-child {
  border-bottom: 0
}

.profile-order-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800
}

.item-money {
  text-align: right;
  display: grid;
  gap: 5px
}

.item-money span {
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem
}

.item-money strong {
  font-size: 1rem
}

.muted-text {
  color: var(--muted);
  font-weight: 700
}

.order-notes-box {
  background: rgba(215, 154, 30, .14)
}

@media(max-width:980px) {
  .order-detail-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:620px) {

  .order-detail-grid,
  .profile-order-item {
    grid-template-columns: 1fr
  }

  .item-money {
    text-align: left
  }
}

/* ===== Mobile responsiveness fixes for Divy Bee Shop ===== */

@media(max-width:1200px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits {
    min-height: auto;
  }
}

@media(max-width:1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .promo,
  .process-card,
  .steps {
    grid-template-columns: 1fr;
  }

  .promo-img img,
  .process-card img,
  .steps img {
    margin: auto;
    max-width: 560px;
    height: auto;
  }

  .benefits {
    padding-left: 8%;
    padding-right: 8%;
  }
}

@media(max-width:768px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 26px, 1210px);
  }

  nav {
    width: calc(100% - 22px);
    align-items: center;
  }

  .logo {
    font-size: 1.35rem;
    max-width: calc(100% - 48px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    max-height: calc(100vh - 98px);
    overflow-y: auto;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero-content {
    width: min(100% - 26px, 1120px);
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
    line-height: .9;
    letter-spacing: -1.5px;
  }

  .hero-quote {
    font-size: 1rem;
    margin: 24px auto;
  }

  .hero-buttons a,
  .btn,
  .product-btn,
  .checkout-btn {
    min-height: 50px;
  }

  .page-hero {
    min-height: 36vh;
    padding-top: 120px;
    padding-bottom: 55px;
  }

  .page-hero h1,
  .section-title h2 {
    letter-spacing: -1px;
  }

  .shop-section,
  .category,
  .story,
  .contact,
  .product-detail,
  .cart-section {
    padding: 44px 0;
  }

  .why,
  .promo,
  .process {
    padding: 70px 18px;
  }

  .benefits {
    min-height: auto;
    padding: 54px 18px;
  }

  .why h2,
  .promo-copy h2,
  .benefits>h2,
  .process-card h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: .95;
  }

  .why-grid,
  .benefit-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .why-item p,
  .promo-copy p,
  .benefit-card p,
  .process-card p,
  .steps p {
    font-size: 1rem;
  }

  .why-item h3,
  .benefit-card h3,
  .steps h3 {
    font-size: 1.85rem;
  }

  .promo {
    gap: 30px;
    text-align: center;
  }

  .promo-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-bg {
    display: none;
  }

  .benefit-card {
    padding: 24px 18px;
  }

  .circle {
    width: 88px;
    height: 88px;
    margin-bottom: 14px;
  }

  .process-card,
  .steps {
    padding: 30px 20px;
    gap: 24px;
  }

  .process-card img,
  .steps img {
    max-width: 100%;
    height: auto;
  }


  .detail-image {
    height: 380px;
    border-radius: 28px;
  }

  .detail-info {
    border-radius: 28px;
  }

  .story img {
    height: 300px;
    border-radius: 28px;
  }

  .tools,
  .filter-row {
    width: 100%;
  }

  .filter-row .chip {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

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

  .footer-brand {
    font-size: 2.4rem;
  }

  .footer-links {
    gap: 12px;
  }
}

@media(max-width:420px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-sub,
  .section-title p,
  .page-hero p {
    letter-spacing: 2px;
    font-size: .68rem;
  }

  .category-card {
    height: 315px;
  }

  .filter-row .chip {
    flex-basis: 100%;
  }
}

/* Responsive refined Why Choose section */
@media (max-width: 980px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-media {
    min-height: 420px;
  }

  .why-choose-image-stack {
    min-height: 420px;
    max-width: 620px;
    margin: 0 auto;
  }

  .why h2,
  .why-kicker,
  .why-choose-content {
    text-align: center;
  }

  .why-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .why-item {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .why {
    padding: 70px 0 78px;
  }

  .why-choose-media,
  .why-choose-image-stack {
    min-height: 340px;
  }

  .why-choose-img-side {
    border-width: 8px;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .hex {
    margin: 0 auto;
  }
}


/* Use only the user-provided single image in Why Choose section */
.why-choose-media {
  min-height: auto;
}

.why-choose-single-image {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  filter: drop-shadow(0 22px 44px rgba(15, 61, 52, .12));
}

.why-choose-single-image:before {
  content: '';
  position: absolute;
  inset: 42px -26px -26px 30px;
  background: rgba(246, 230, 201, .62);
  border-radius: 4px;
  z-index: -1;
}

.why-choose-single-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 980px) {
  .why-choose-media {
    min-height: auto;
  }

  .why-choose-single-image {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .why-choose-media {
    min-height: auto;
  }

  .why-choose-single-image:before {
    inset: 24px -12px -12px 16px;
  }
}


/* Attractive image upload buttons */
.image-upload-box {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  min-height: 150px;
  padding: 22px 18px;
  border: 2px dashed rgba(215, 154, 30, .58);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 154, 30, .16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(246, 230, 201, .55));
  cursor: pointer;
  transition: .25s ease;
  overflow: hidden;
}

.image-upload-box:before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(15, 61, 52, .08);
  pointer-events: none;
}

.image-upload-box:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
  box-shadow: 0 18px 42px rgba(15, 61, 52, .12);
}

.image-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
}

.upload-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--clay), #f6c659);
  color: #0F3D34;
  font-size: 1.65rem;
  box-shadow: 0 12px 26px rgba(215, 154, 30, .24);
}

.upload-title {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .02em;
}

.upload-note {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 600;
}

.upload-file-name {
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 61, 52, .08);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-upload-box.has-file .upload-file-name {
  background: rgba(215, 154, 30, .20);
}

/* Blog section */
.blog-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.blog-section::before,
.blog-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 190px;
  pointer-events: none;
  opacity: .14;
  border-radius: 55% 45% 60% 40%;
  transform: rotate(-22deg);
}

.blog-section::before {
  left: -62px;
  bottom: 58px;
}

.blog-section::after {
  right: -72px;
  top: 100px;
}

.blog-title-ref {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.blog-title-ref p {
  color: #ef6c24;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-title-ref h2 {
  color: #5b3730;
  font-family: 'Jost', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 58px);
}

.blog-title-ref h2 em {
  font-style: normal;
  color: inherit;
}

.blog-title-line {
  display: block;
  width: 92px;
  height: 5px;
  background: #ef6c24;
  margin: 18px auto 18px;
}

.blog-lead {
  color: #5d504b;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 52px;
}

.site-blog-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 22px 65px rgba(58, 35, 26, .09);
  transition: transform .3s ease, box-shadow .3s ease;
}

.site-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(58, 35, 26, .14);
}

.site-blog-img {
  display: block;
  height: 230px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff5df;
}

.site-blog-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.site-blog-card:hover .site-blog-img img {
  transform: scale(1.06);
}

.site-blog-content {
  padding-top: 24px;
}

.site-blog-date {
  color: #ef6c24;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
}

.site-blog-content h3 {
  margin: 0 0 14px;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 900;
  color: #5b3730;
}

.site-blog-content h3 a {
  color: inherit;
  text-decoration: none;
}

.site-blog-content p {
  color: #5d504b;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.site-blog-link {
  color: #ef6c24;
  font-weight: 900;
  text-decoration: none;
}

.site-blog-link::after {
  content: ' →';
}

.blog-more-action {
  margin-top: 42px;
}

.page-hero {
  padding: 150px 0 90px;
  background: linear-gradient(135deg, #fff6df, #f7eee8);
  text-align: center;
}

.page-hero .container {
  max-width: 860px;
}

.page-kicker {
  color: #ef6c24;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.page-hero h1 {
  margin: 12px 0 16px;
  font-family: 'Cormorant Garamond', serif;
  color: #4c2d21;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1;
}

.page-hero p {
  color: #6a554b;
  font-size: 19px;
  line-height: 1.7;
}

.blog-list-page {
  background: #fffaf1;
}

.blog-detail {
  padding: 140px 0 80px;
  background: #fffaf1;
}

.blog-detail-container {
  max-width: 920px;
}

.back-link-public {
  display: inline-block;
  color: #b06a00;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 24px;
}

.blog-detail-meta {
  color: #ef6c24;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.blog-detail h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  color: #4c2d21;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.blog-detail-excerpt {
  color: #6a554b;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.blog-detail-image {
  width: 100%;
  height: min(520px, 56vw);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(58, 35, 26, .14);
  margin-bottom: 38px;
}

.blog-detail-body {
  background: #fff;
  border: 1px solid rgba(188, 124, 24, .14);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 48px);
  box-shadow: 0 18px 45px rgba(70, 42, 10, .08);
}

.blog-detail-body p {
  color: #4e4038;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 22px;
}

.blog-detail-body p:last-child {
  margin-bottom: 0;
}

.related-blogs {
  background: #f7eee8;
}

.empty-state {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 22px;
  padding: 38px;
  text-align: center;
  color: #765a3a;
  font-weight: 800;
}

@media (max-width: 980px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-section {
    padding: 68px 0;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  .site-blog-card {
    padding: 20px;
  }

  .site-blog-img {
    height: 210px;
  }

  .page-hero {
    padding: 120px 0 70px;
  }

  .blog-detail {
    padding: 120px 0 60px;
  }
}


/* FAQ section */
.honey-faq {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
}

.honey-faq::before {
  content: '';
  position: absolute;
  inset: 8% auto auto -80px;
  width: 145px;
  height: 145px;
  border: 3px solid rgba(91, 55, 48, .22);
  border-radius: 46% 54% 48% 52%;
  transform: rotate(28deg);
}

.honey-faq::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 70px;
  width: 150px;
  height: 190px;
  opacity: .32;
  background:
    radial-gradient(circle at 12px 12px, #ef9a28 0 7px, transparent 8px),
    linear-gradient(35deg, transparent 48%, #5b3730 49% 51%, transparent 52%);
  background-size: 58px 58px, 100% 100%;
  border-radius: 45%;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.faq-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.faq-image-card {
  width: min(420px, 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(58, 35, 26, .12);
  transform: rotate(-1.5deg);
  background: #fff8ee;
}

.faq-image-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.faq-bee-dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(58, 35, 26, .14);
  font-size: 21px;
}

.bee-dot-one {
  top: 24px;
  left: 18%;
}

.bee-dot-two {
  bottom: 34px;
  right: 8%;
  color: #ef6c24;
}

.faq-content {
  max-width: 760px;
}

.faq-title-ref {
  margin-bottom: 18px;
}

.faq-title-ref p {
  color: #ef6c24;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-title-ref h2 {
  color: #5b3730;
  font-family: 'Jost', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.faq-title-ref h2 em {
  color: inherit;
  font-style: normal;
}

.faq-title-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #ef6c24;
  margin-top: 10px;
}

.faq-lead {
  color: #5d504b;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.faq-list {
  border-top: 1px solid rgba(91, 55, 48, .18);
}

.faq-item {
  border-bottom: 1px solid rgba(91, 55, 48, .18);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  color: #5b3730;
  font-family: 'Jost', Arial, sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.3;
  font-weight: 900;
  text-align: left;
}

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #80574e;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 120px;
}

.faq-answer p {
  color: #6a554b;
  font-size: 15px;
  line-height: 1.55;
  margin: -4px 0 16px;
  max-width: 640px;
}

@media (max-width: 980px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-visual {
    min-height: auto;
  }

  .faq-image-card img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .honey-faq {
    padding: 44px 0;
  }

  .faq-image-card {
    border-radius: 24px;
  }

  .faq-image-card img {
    height: 220px;
  }

  .faq-bee-dot {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .faq-lead {
    margin-bottom: 18px;
  }

  .faq-question {
    padding: 14px 0;
  }
}

/* =========================================================
   Mobile-only shop-style navbar
   Desktop navbar styling/functionality stays original
   ========================================================= */
.mobile-nav-actions,
.mobile-drawer-head,
.mobile-menu-backdrop,
.mobile-logo-img {
  display: none;
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  #navbar {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 64px;
    padding: 0 12px;
    border-radius: 0;
    border: 0;
    background: #fffaf2;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    backdrop-filter: none;
    display: grid;
    grid-template-columns: 46px minmax(80px, 1fr) auto;
    align-items: center;
    gap: 8px;
    z-index: 10005;
  }

  #navbar .logo {
    justify-self: center;
    padding: 0;
    max-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 0;
    line-height: 1;
  }

  #navbar .logo>span {
    display: none;
  }

  #navbar .mobile-logo-img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #111;
    cursor: pointer;
    justify-self: start;
    z-index: 10007;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-self: end;
  }

  .mobile-nav-actions a {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #111;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    font-size: 16px;
    padding: 0;
    text-decoration: none;
  }

  .mobile-nav-actions img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
  }

  .mobile-nav-actions em {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d79a1e;
    color: #fff;
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
  }

  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }

  body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #nav-links.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: min(86vw, 330px);
    height: 100vh;
    max-height: none;
    overflow-y: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fffaf2;
    box-shadow: 18px 0 45px rgba(0, 0, 0, .18);
    z-index: 10010;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(-105%);
    transition: transform .28s ease;
    pointer-events: auto;
  }

  #nav-links.nav-links.active {
    transform: translateX(0);
  }

  .mobile-drawer-head {
    display: block;
    position: relative;
    padding: 22px 70px 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #fffaf2;
  }

  .mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  }

  .mobile-user-card {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mobile-user-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
  }

  .mobile-user-card strong {
    display: block;
    color: #111;
    font-size: 16px;
    letter-spacing: .4px;
    text-transform: none;
  }

  #nav-links .mobile-user-card a {
    display: inline-flex;
    margin-top: 6px;
    padding: 0;
    color: #d79a1e;
    font-size: 11px;
    letter-spacing: .9px;
    text-transform: uppercase;
    font-weight: 800;
    background: transparent;
    border-radius: 0;
  }

  .mobile-logout-link {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    background: #141016;
    color: #fff;
    border-radius: 18px;
    padding: 13px 16px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  #nav-links>li:not(.mobile-drawer-head) {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    text-align: left;
  }

  #nav-links>li:not(.mobile-drawer-head)>a,
  #nav-links>li:not(.mobile-drawer-head)>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .9px;
    text-transform: uppercase;
    cursor: pointer;
  }

  #nav-links>li:not(.mobile-drawer-head)>a:hover,
  #nav-links>li:not(.mobile-drawer-head)>span:hover {
    transform: none;
    background: rgba(215, 154, 30, .08);
    color: #111;
  }

  #nav-links .wishlist-count {
    margin-left: auto;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #d79a1e;
    color: #fff;
    font-size: 11px;
  }

  #nav-links .nav-dropdown>.dropdown-toggle::after {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    border-radius: 50%;
    background: rgba(215, 154, 30, .13);
    color: #9b6812;
    font-size: 19px;
    line-height: 1;
  }

  #nav-links .nav-dropdown.open>.dropdown-toggle::after {
    content: '−';
  }

  #nav-links .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 4px 0 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff6ea;
  }

  #nav-links .nav-dropdown.open>.dropdown-menu {
    display: block;
  }

  #nav-links .dropdown-menu li {
    border-top: 1px solid rgba(0, 0, 0, .06);
  }

  #nav-links .dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 32px;
    color: #222;
    background: transparent;
    font-size: 12px;
    letter-spacing: .8px;
  }

  #nav-links .nav-account {
    display: none;
  }

  main,
  .hero:first-of-type {
    margin-top: 64px;
  }

  #navbar .logo,
  .mobile-nav-actions a,
  .menu-toggle,
  .dropdown-toggle {
    -webkit-tap-highlight-color: transparent;
  }
}

.dropdown-toggle .desktop-shop-arrow {
  display: inline;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 768px) {
  .dropdown-toggle .desktop-shop-arrow {
    display: none;
  }
}

/* =========================================================
   Fresh responsive UX polish - added for better school project UI
   ========================================================= */
:root {
  --focus-ring: 0 0 0 4px rgba(215, 154, 30, .22);
  --soft-card: rgba(255, 250, 242, .88);
}

button,
input,
select,
textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

img[loading="lazy"] {
  content-visibility: auto;
}

.product-card,
.blog-card,
.benefit-card,
.process-card,
.stat-card,
.profile-card,
.order-card,
.checkout-card,
.auth-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover,
.blog-card:hover,
.benefit-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 61, 52, .16);
}

.product-card img,
.blog-card img,
.category-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-btn,
.btn,
button[type="submit"],
.checkout-btn,
.add-cart-btn,
.wishlist-btn {
  touch-action: manipulation;
}

.product-btn.is-loading,
.btn.is-loading,
button[type="submit"].is-loading,
.checkout-btn.is-loading {
  pointer-events: none;
  opacity: .72;
  position: relative;
}

.product-btn.is-loading::after,
.btn.is-loading::after,
button[type="submit"].is-loading::after,
.checkout-btn.is-loading::after {
  content: '';
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  display: inline-block;
  vertical-align: -2px;
  animation: divy-spin .7s linear infinite;
}

@keyframes divy-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-toast,
.divy-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 20000;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(15, 61, 52, .96);
  color: #fffaf2;
  box-shadow: 0 18px 45px rgba(15, 61, 52, .22);
  font-weight: 700;
  letter-spacing: .2px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.site-toast.show,
.divy-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.divy-toast.error {
  background: #8b2d22;
}

.divy-toast.success {
  background: #0f5a43;
}

.divy-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f3d34;
  color: #fffaf2;
  box-shadow: 0 18px 45px rgba(15, 61, 52, .25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(.92);
  pointer-events: none;
  transition: .25s ease;
  z-index: 12000;
}

.divy-scroll-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.divy-scroll-top:hover {
  background: #d79a1e;
  color: #0f3d34;
}

.form-field,
.auth-field,
.checkout-field {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 61, 52, .08);
  color: #0f3d34;
  cursor: pointer;
  display: grid;
  place-items: center;
}

input.has-password-toggle {
  padding-right: 56px;
}

.empty-state,
.cart-popup-empty,
.wishlist-empty {
  border: 1px dashed rgba(15, 61, 52, .18);
  background: rgba(255, 250, 242, .72);
  border-radius: 24px;
}

/* Page-level utility classes moved out of inline PHP styles.
   These rules preserve the original look while keeping pages clean. */
.center-action {
  text-align: center;
  margin-top: 42px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 20px;
}

.hero-sub-gold {
  color: var(--gold);
}

.category-tabs {
  margin-bottom: 30px;
}

/* Responsive navigation and shop filter refinements */
.menu-toggle {
  border: 0;
  background: transparent;
  line-height: 1;
  appearance: none;
}

.nav-dropdown .dropdown-toggle {
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.dropdown-menu {
  text-align: center;
}

.category-tabs .btn.active,
.category-tabs .btn[aria-current="page"] {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
  box-shadow: 0 14px 32px rgba(215, 154, 30, .25);
}

.shop-filter {
  margin-bottom: 30px;
}

.category-toggle {
  display: none;
}

@media(max-width: 768px) {
  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    z-index: 2;
  }

  .menu-toggle.is-active {
    background: rgba(215, 154, 30, .18);
    color: var(--ink);
  }

  .nav-links {
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: calc(100% - 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-links li,
  .nav-dropdown {
    width: 100%;
  }

  .nav-links a,
  .nav-links span {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .dropdown-menu {
    width: min(100%, 320px);
    margin: 8px auto 0;
    text-align: center;
    border-radius: 18px;
  }

  .shop-filter {
    width: min(100%, 420px);
    margin: 0 auto 28px;
  }

  .category-toggle {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: .72rem;
    font-weight: 800;
    cursor: pointer;
  }

  .category-toggle-icon {
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    font-size: 1rem;
    line-height: 1;
  }

  .shop-filter.is-open .category-toggle {
    background: var(--clay);
    border-color: var(--clay);
  }

  .shop-filter.is-open .category-toggle-icon {
    transform: rotate(45deg);
  }

  .category-tabs {
    display: none;
    margin: 12px 0 0;
    padding: 12px;
    background: rgba(251, 247, 239, .98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .shop-filter.is-open .category-tabs {
    display: grid;
    gap: 10px;
  }

  .category-tabs .btn {
    width: 100%;
    margin-top: 0;
    min-height: 46px;
    background: #fff;
    color: var(--ink);
  }

  .category-tabs .btn.active {
    background: var(--clay);
    border-color: var(--clay);
    color: #fff;
  }
}

/* Impressive shop redesign + user account screens */
.login-pill {
  background: linear-gradient(135deg, var(--clay), #f6c659);
  color: #0F3D34;
  box-shadow: 0 10px 24px rgba(215, 154, 30, .22)
}

.login-pill img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 7px;
  border: 2px solid rgba(255, 255, 255, .6)
}

.shop-showcase {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden
}

.shop-showcase:before {
  content: '';
  position: absolute;
  inset: 40px auto auto -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .18);
  filter: blur(6px)
}

.shop-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: end;
  margin-bottom: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(246, 230, 201, .8));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px)
}

.shop-kicker {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 8px
}

.luxury-filter {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(15, 61, 52, .08)
}

.premium-products {
  gap: 28px
}

.premium-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 52, .12);
  background: linear-gradient(180deg, #fffaf1, #fff);
  box-shadow: 0 20px 50px rgba(15, 61, 52, .1);
  transition: .32s ease
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15, 61, 52, .16)
}


.premium-card .product-image {
  background: radial-gradient(circle, rgba(215, 154, 30, .18), transparent 58%)
}

.product-mini-desc {
  color: var(--muted);
  font-size: .93rem;
  margin: 10px 0 12px;
  min-height: 40px
}

.auth-page,
.profile-page {
  min-height: 100vh;
  padding: 140px 0 90px;
  display: grid;
  place-items: center
}

.auth-card {
  width: min(500px, calc(100% - 32px));
  padding: 36px;
  border-radius: 34px;
  background: rgba(255, 250, 241, .92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px)
}

.auth-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.6px
}

.auth-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  margin: 15px 0 10px
}

.auth-card p {
  color: var(--muted)
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 18px
}

.auth-form label {
  font-weight: 900
}

.auth-form label span {
  color: var(--muted);
  font-weight: 600
}

.auth-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  outline: none
}

.auth-form input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(215, 154, 30, .13)
}

.field-hint {
  color: var(--muted);
  margin-top: -5px
}

.field-hint.error {
  color: #9d2119
}

.field-hint.ok {
  color: #0f7a4f
}

.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-weight: 700
}

.auth-switch a {
  color: var(--clay)
}

.notice {
  background: #fff7dc;
  border: 1px solid #e6c366;
  color: #5b4215;
  padding: 13px 16px;
  border-radius: 16px;
  margin: 14px 0;
  font-weight: 700
}

.notice.error {
  background: #ffe9e6;
  border-color: #e2aca6;
  color: #8d2018
}

.site-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  max-width: min(420px, calc(100% - 40px));
  padding: 15px 18px;
  border-radius: 18px;
  background: #0f3d34;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: .25s
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0)
}

.profile-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 26px;
  align-items: start
}

.profile-summary,
.profile-editor {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 241, .9);
  box-shadow: var(--shadow);
  padding: 28px
}

.profile-summary {
  text-align: center;
  position: relative;
  top: auto
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 6px solid #fff;
  box-shadow: 0 16px 36px rgba(15, 61, 52, .18)
}

.profile-summary h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin: 0
}

.profile-summary p {
  color: var(--muted);
  margin-bottom: 18px
}

.profile-page .profile-summary {
  position: relative;
  top: auto;
  align-self: start;
}

@media(max-width:840px) {

  .shop-intro,
  .profile-grid {
    grid-template-columns: 1fr
  }

  .profile-summary {
    position: relative;
    top: 0
  }

  .shop-showcase {
    padding-top: 110px
  }
}

/* Refined login / signup pages */
.auth-page-modern {
  padding: 128px 18px 80px;
  min-height: 100vh;
}

.auth-page-modern .auth-shell {
  width: min(1120px, 100%);
  margin: auto;
}

.auth-shell-single {
  grid-template-columns: 1fr 430px;
}

.auth-page-modern .auth-card {
  width: 100%;
}

.auth-page-modern .auth-art {
  position: relative;
  overflow: hidden;
}

.auth-page-modern .auth-art:after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(246, 198, 89, .22);
}

.auth-page-modern .auth-badge.light {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
}

.auth-page-modern .auth-form input.is-invalid {
  border-color: #d3483d;
  box-shadow: 0 0 0 4px rgba(211, 72, 61, .12);
}

.auth-page-modern .auth-form input.is-valid {
  border-color: #0f7a4f;
  box-shadow: 0 0 0 4px rgba(15, 122, 79, .10);
}

.auth-page-modern .product-btn {
  margin-top: 6px;
}

@media(max-width: 900px) {

  .auth-page-modern .auth-shell,
  .auth-shell-single {
    grid-template-columns: 1fr;
  }

  .auth-page-modern .auth-art {
    min-height: 320px;
    padding: 34px;
  }
}

@media(max-width: 540px) {
  .auth-page-modern {
    background-position: center;
    padding: 112px 14px 60px;
  }

  .auth-page-modern .auth-art {
    display: none;
  }

  .auth-page-modern .auth-card {
    padding: 26px 20px;
    border-radius: 26px;
  }
}

/* Mobile account pill fix: stop profile/name from taking extra padding in responsive nav. */
@media (max-width: 768px) {
  #navbar .nav-account {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #navbar .nav-account .login-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: min(240px, 100%);
    min-height: 40px;
    padding: 8px 12px;
    gap: 8px;
  }

  #navbar .nav-account .login-pill img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  #navbar .nav-account .account-name {
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Shop filter + product card alignment fixes */
.shop-showcase .shop-filter.luxury-filter {
  width: 100%;
  margin: 0 0 34px;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 230, 201, .72));
  border: 1px solid rgba(15, 61, 52, .12);
  box-shadow: 0 18px 46px rgba(15, 61, 52, .09);
  backdrop-filter: blur(14px);
}

.shop-showcase .shop-filter.luxury-filter::before {
  content: 'Filter by category';
  display: block;
  margin: 0 0 14px 4px;
  color: var(--clay);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shop-showcase .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  align-items: center;
}

.shop-showcase .category-tabs .btn {
  min-height: 44px;
  margin: 3px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 61, 52, .12);
  color: var(--ink);
  box-shadow: none;
  letter-spacing: 1.15px;
  transition: .24s ease;
}

.shop-showcase .category-tabs .btn:hover {
  background: rgba(15, 61, 52, .08);
  color: var(--ink);
  border-color: rgba(15, 61, 52, .18);
  transform: translateY(-2px);
}

.shop-showcase .category-tabs .btn.active,
.shop-showcase .category-tabs .btn[aria-current="page"] {
  background: linear-gradient(135deg, var(--clay), #f6c659);
  border-color: transparent;
  color: #0F3D34;
  box-shadow: 0 14px 30px rgba(215, 154, 30, .22);
}

/* Equal product card heights and aligned content */
.shop-showcase .products-grid,
.shop-showcase .premium-products {
  align-items: stretch;
  gap: 28px;
}

.shop-showcase .product-card,
.shop-showcase .premium-card {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 30px;
}

.shop-showcase .product-image {
  height: 300px;
  min-height: 300px;
  width: 100%;
  flex: 0 0 300px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 154, 30, .18), transparent 58%),
    #F6E6C9;
}

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

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

.shop-showcase .product-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 14px 14px;
  min-height: 230px;
}

.shop-showcase .product-info h3 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-showcase .product-info .cat {
  min-height: 24px;
  margin: 10px 0 12px;
  display: flex;
  align-items: center;
}

.shop-showcase .price {
  margin: auto 0 12px;
  line-height: 1.1;
}

.shop-showcase .product-info .product-btn {
  width: 100%;
  margin-top: 11px;
  min-height: 48px;
}

/* Better laptop/tablet card grid */
@media (max-width: 1180px) {
  .shop-showcase .product-image {
    height: 270px;
    min-height: 270px;
    flex-basis: 270px;
  }
}

@media (max-width: 1040px) {

  .shop-showcase .products-grid,
  .shop-showcase .premium-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile filter dropdown + card sizing */
@media (max-width: 768px) {
  .shop-showcase .shop-filter.luxury-filter {
    width: 100%;
    margin: 0 auto 28px;
    padding: 14px;
    border-radius: 26px;
  }

  .shop-showcase .shop-filter.luxury-filter::before {
    margin-left: 2px;
    margin-bottom: 12px;
    text-align: center;
  }

  .shop-showcase .category-toggle {
    display: flex;
    min-height: 54px;
    border: 0;
    background: linear-gradient(135deg, var(--ink), #195347);
    color: #fff;
    box-shadow: 0 14px 28px rgba(15, 61, 52, .18);
  }

  .shop-showcase .category-toggle span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shop-showcase .category-toggle-icon {
    flex: 0 0 28px;
    transition: transform .22s ease;
  }

  .shop-showcase .category-tabs {
    display: none;
    margin: 12px 0 0;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 61, 52, .10);
    box-shadow: 0 16px 36px rgba(15, 61, 52, .10);
  }

  .shop-showcase .shop-filter.is-open .category-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shop-showcase .category-tabs .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 16px;
  }

  .shop-showcase .products-grid,
  .shop-showcase .premium-products {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .shop-showcase .product-card,
  .shop-showcase .premium-card {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }

  .shop-showcase .product-image {
    height: 280px;
    min-height: 280px;
    flex-basis: 280px;
  }

  .shop-showcase .product-info {
    min-height: auto;
  }

  .shop-showcase .product-info h3 {
    min-height: auto;
  }

  .shop-showcase .price {
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .shop-showcase .product-image {
    height: 245px;
    min-height: 245px;
    flex-basis: 245px;
  }

  .shop-showcase .product-info {
    padding: 18px 10px 10px;
  }
}


/* Homepage product card alignment fixes */
#shop .products-grid,
.shop-section .products-grid {
  align-items: stretch;
  gap: 28px;
}

#shop .product-card,
.shop-section .product-card {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 30px;
}

#shop .product-image,
.shop-section .product-image {
  height: 300px;
  min-height: 300px;
  width: 100%;
  flex: 0 0 300px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 154, 30, .18), transparent 58%),
    #F6E6C9;
}

#shop .product-image img,
.shop-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transition: transform .32s ease;
}

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

#shop .product-info,
.shop-section .product-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 14px 14px;
  min-height: auto;
}

#shop .product-info h3,
.shop-section .product-info h3 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: visible;
}

#shop .product-info .cat,
.shop-section .product-info .cat {
  min-height: 24px;
  margin: 10px 0 12px;
  display: flex;
  align-items: center;
}

#shop .price,
.shop-section .price {
  margin: auto 0 12px;
  line-height: 1.1;
}

#shop .product-info .product-btn,
.shop-section .product-info .product-btn {
  width: 100%;
  margin-top: 0;
  min-height: 48px;
}

/* Fix product tag overlap on product image */
.product-image .tag {
  top: 7px;
  left: 7px;
  right: auto;
  max-width: calc(100% - 28px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 12px;
  line-height: 1;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: 0 10px 22px rgba(15, 61, 52, .12);
}

@media (max-width: 1180px) {

  #shop .product-image,
  .shop-section .product-image {
    height: 270px;
    min-height: 271px;
    flex-basis: 270px;
  }
}

@media (max-width: 1040px) {

  #shop .products-grid,
  .shop-section .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  #shop .products-grid,
  .shop-section .products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #shop .product-card,
  .shop-section .product-card {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }

  #shop .product-image,
  .shop-section .product-image {
    height: 280px;
    min-height: 280px;
    flex-basis: 280px;
  }

  #shop .product-info,
  .shop-section .product-info {
    min-height: auto;
  }

  #shop .product-info h3,
  .shop-section .product-info h3 {
    min-height: auto;
  }

  #shop .price,
  .shop-section .price {
    margin-top: 14px;
  }

  .product-image .tag {
    font-size: .62rem;
    min-height: 28px;
    padding: 6px 10px;
  }
}

@media (max-width: 420px) {

  #shop .product-image,
  .shop-section .product-image {
    height: 245px;
    min-height: 245px;
    flex-basis: 245px;
  }

  #shop .product-info,
  .shop-section .product-info {
    padding: 18px 10px 10px;
  }
}

/* Interesting How We Proceed journey section */
.honey-journey {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 154, 30, .22), transparent 24%),
    radial-gradient(circle at 92% 76%, rgba(15, 61, 52, .12), transparent 26%),
    linear-gradient(135deg, #fffaf1 0%, #f6e6c9 52%, #fff8ec 100%);
}

.honey-journey:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 61, 52, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 52, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 88%);
}

.process-title {
  position: relative;
  z-index: 1;
}

.journey-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  margin-bottom: 38px;
  border-radius: 38px;
  border: 1px solid rgba(15, 61, 52, .12);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 24px 70px rgba(15, 61, 52, .10);
  backdrop-filter: blur(14px);
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clay), #f6c659);
  color: #0F3D34;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.journey-badge:before {
  content: '✦';
}

.journey-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.journey-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 154, 30, .24), transparent 62%),
    rgba(255, 250, 241, .74);
  overflow: hidden;
}

.journey-visual:before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(15, 61, 52, .16);
  animation: journeySpin 18s linear infinite;
}

.journey-visual img {
  position: relative;
  z-index: 1;
  width: min(86%, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(15, 61, 52, .18));
}

@keyframes journeySpin {
  to {
    transform: rotate(360deg);
  }
}

.journey-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.journey-step {
  position: relative;
  min-height: 250px;
  padding: 28px 24px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 250, 241, .86));
  border: 1px solid rgba(15, 61, 52, .10);
  box-shadow: 0 18px 44px rgba(15, 61, 52, .08);
  overflow: hidden;
  transition: .28s ease;
}

.journey-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(15, 61, 52, .14);
}

.journey-step:after {
  content: '';
  position: absolute;
  right: -35px;
  top: -35px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .12);
}

.step-number {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.3rem;
  line-height: 1;
  color: rgba(15, 61, 52, .08);
  font-weight: 800;
}

.step-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(215, 154, 30, .20), rgba(246, 198, 89, .35));
  font-size: 1.7rem;
  box-shadow: inset 0 0 0 1px rgba(215, 154, 30, .18);
}

.journey-step h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.1;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .honey-journey {
    padding: 74px 0 86px;
  }

  .journey-hero {
    padding: 24px 18px;
    border-radius: 30px;
    text-align: center;
  }

  .journey-visual {
    min-height: 220px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: auto;
  }
}


/* === Wishlist and compact product detail patch === */
.wishlist-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wishlist-count {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 6px;
  border-radius: 999px;
  background: #D79A1E;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.wishlist-btn {
  border: 1px solid rgba(15, 61, 52, .16);
  background: rgba(255, 255, 255, .92);
  color: #0F3D34;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  transition: .25s ease;
}

.premium-card>.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 13px;
  z-index: 5;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 12px 28px rgba(15, 61, 52, .12);
}

.wishlist-btn:hover,
.wishlist-btn.is-added {
  background: #0F3D34;
  color: #fff;
}

.wishlist-icon {
  font-size: 19px;
  line-height: 1;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.wishlist-detail-btn {
  position: static;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #0F3D34;
}

/* Strong compact product detail rules */
.product-page-hero.page-hero {
  min-height: auto;
  padding: 118px 0 42px;
}

.product-page-hero.page-hero::after,
.product-page-hero.page-hero:after {
  display: none;
  content: none;
}

.product-page-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: -1px;
  margin: 8px 0 0;
}

.product-page-hero p {
  font-size: .78rem;
  letter-spacing: 2.5px;
}

.product-detail.compact-product-detail {
  padding: 42px 0 64px;
}

.compact-product-detail .product-detail-grid {
  grid-template-columns: minmax(260px, 430px) minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
}

.compact-product-detail .detail-image {
  height: 430px;
  min-height: 0;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: #F6E6C9;
}

.compact-product-detail .detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compact-product-detail .detail-info {
  padding: 30px;
  border-radius: 28px;
}

.compact-product-detail .detail-info h1 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: .96;
  letter-spacing: -1px;
  margin: 6px 0 12px;
}

.compact-product-detail .detail-info .price {
  font-size: 1.55rem;
  margin: 8px 0 0;
}

.compact-product-detail .detail-info p {
  margin: 16px 0 0;
  line-height: 1.62;
  overflow-y: auto;
  padding-right: 8px;
}

.wishlist-page {
  padding: 60px 0 95px;
  background: #fffaf1;
}

.wishlist-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.wishlist-head h2 {
  margin: 0;
  color: #0F3D34;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.wishlist-empty {
  display: none;
  text-align: center;
  padding: 42px 20px;
  border-radius: 30px;
  border: 1px solid rgba(15, 61, 52, .12);
  background: rgba(255, 250, 241, .9);
  box-shadow: 0 20px 50px rgba(15, 61, 52, .1);
}

.wishlist-empty.show {
  display: block;
}

.wishlist-empty h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  color: #0F3D34;
  font-size: 2.35rem;
}

.wishlist-remove {
  width: 100%;
  margin-top: 10px;
  background: #fff;
  color: #0F3D34;
  border: 1px solid rgba(15, 61, 52, .16);
}

.clear-wishlist-btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .compact-product-detail .product-detail-grid {
    grid-template-columns: 1fr;
  }


  .wishlist-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .premium-card>.wishlist-btn {
    top: 21px;
    right: 20px;
    height: 39px;
    min-width: 39px;
    padding: 0 10px;
  }

  .premium-card>.wishlist-btn .wishlist-text {
    display: none;
  }

  .product-page-hero.page-hero {
    padding: 100px 0 30px;
  }

  .product-detail.compact-product-detail {
    padding: 30px 0 50px;
  }

  .compact-product-detail .detail-image {
    border-radius: 22px;
  }

  .compact-product-detail .detail-info {
    padding: 22px;
    border-radius: 22px;
  }

  .compact-product-detail .detail-info p {
    max-height: none;
  }

  .product-detail-actions .product-btn,
  .product-detail-actions .wishlist-detail-btn {
    width: 100%;
  }
}

/* === End wishlist and compact product detail patch === */
/* === Product page final size fix: only product details page === */
.product-page-hero.page-hero {
  display: none;
  min-height: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.product-page-hero.page-hero::before,
.product-page-hero.page-hero::after {
  display: none;
  content: none;
}

.product-detail.compact-product-detail {
  padding: 125px 0 42px;
  min-height: auto;
}

.compact-product-detail .product-detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(250px, 360px) minmax(300px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.compact-product-detail .detail-image {
  min-height: 0;
  padding: 0;
  border-radius: 24px;
}

.compact-product-detail .detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compact-product-detail .detail-info {
  min-height: 360px;
  padding: 26px 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compact-product-detail .detail-info h1 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1;
  margin: 6px 0 10px;
}

.compact-product-detail .detail-info .price {
  font-size: 1.4rem;
  margin: 6px 0 0;
}

.compact-product-detail .detail-info p {
  margin: 14px 0 0;
  line-height: 1.55;
  max-height: 105px;
  overflow-y: auto;
}

.product-detail-actions {
  margin-top: 18px;
}

.product-detail-actions .product-btn,
.product-detail-actions .wishlist-detail-btn {
  min-height: 46px;
  padding: 0 22px;
}

/* Make sure old premium-card pseudo logo/star never appears */
.premium-card::after,
.premium-card:after,
.product-card::after,
.product-card:after {
  display: none;
  content: none;
}

@media (max-width: 900px) {
  .product-detail.compact-product-detail {
    padding: 105px 0 36px;
  }

  .compact-product-detail .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .compact-product-detail .detail-info {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .product-detail.compact-product-detail {
    padding: 92px 0 30px;
  }

  .compact-product-detail .detail-info p {
    max-height: none;
  }
}

/* === End product page final size fix === */

/* === Account wishlist popup (DB saved) === */
.wishlist-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.wishlist-modal.is-open {
  display: block;
}

.wishlist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 25, 0.58);
  backdrop-filter: blur(8px);
}

.wishlist-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 42px));
  overflow: auto;
  transform: translate(-50%, -50%);
  background: #fffaf0;
  border: 1px solid rgba(213, 151, 30, 0.35);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(8, 30, 24, 0.28);
  padding: 28px;
}

.wishlist-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #0b4b3d;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.wishlist-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-right: 38px;
  margin-bottom: 20px;
}

.wishlist-modal-head p {
  margin: 0 0 4px;
  color: #c98d16;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.wishlist-modal-head h2 {
  margin: 0;
  color: #0b4b3d;
  font-size: clamp(28px, 4vw, 46px);
}

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

.wishlist-popup-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 75, 61, 0.12);
  border-radius: 20px;
  padding: 12px;
}

.wishlist-popup-img {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #f7e8c8;
}

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

.wishlist-popup-info h3 {
  margin: 0 0 4px;
  color: #103e35;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.wishlist-popup-info p {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
  color: rgba(16, 62, 53, 0.72);
  font-size: 13px;
}

.wishlist-popup-info strong {
  display: block;
  color: #d59612;
  font-size: 18px;
  margin-bottom: 10px;
}

.wishlist-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wishlist-popup-actions .product-btn,
.wishlist-remove,
.clear-wishlist-btn {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 75, 61, 0.14);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.wishlist-remove,
.clear-wishlist-btn {
  background: #fff;
  color: #0b4b3d;
}

.wishlist-remove:hover,
.clear-wishlist-btn:hover {
  background: #0b4b3d;
  color: #fff;
}

.wishlist-login-box,
.wishlist-empty {
  display: none;
  text-align: center;
  padding: 36px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(11, 75, 61, 0.2);
  border-radius: 20px;
}

.wishlist-login-box:not([hidden]),
.wishlist-empty.show {
  display: block;
}

.wishlist-login-box h3,
.wishlist-empty h3 {
  margin: 0 0 8px;
  color: #0b4b3d;
  font-size: 24px;
}

.wishlist-login-box p,
.wishlist-empty p {
  max-width: 540px;
  margin: 0 auto 18px;
  color: rgba(16, 62, 53, 0.72);
}

.wishlist-modal-open {
  overflow: hidden;
}

.wishlist-btn:disabled,
.wishlist-remove:disabled {
  opacity: 0.62;
  cursor: wait;
}

@media (max-width: 760px) {
  .wishlist-modal-panel {
    padding: 22px 16px;
    border-radius: 22px;
    top: 61%;
  }

  .wishlist-modal-head {
    display: block;
    padding-right: 48px;
  }

  .clear-wishlist-btn {
    margin-top: 14px;
  }

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

  .wishlist-popup-item {
    grid-template-columns: 92px 1fr;
  }
}

/* === End account wishlist popup === */


/* Ecommerce extension */
.cart-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px
}

.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.card-actions form {
  margin: 0
}

.inline-cart-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.qty-input {
  width: 76px;
  border: 1px solid rgba(191, 138, 54, .35);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, .8);
  color: #3b2813;
  font-weight: 700
}

.ecom-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(255, 249, 233, .9), rgba(255, 255, 255, .96))
}

.ecom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start
}

.checkout-grid {
  grid-template-columns: minmax(0, 1fr) 390px
}

.ecom-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(191, 138, 54, .2);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(88, 57, 13, .12);
  padding: 26px
}

.cart-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 90px 110px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(191, 138, 54, .16)
}

.cart-row img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 20px;
  background: #fff8df
}

.cart-info h3 {
  margin: 0 0 4px
}

.cart-info p {
  margin: 0 0 8px;
  color: #7d6846
}

.line-total {
  font-weight: 900;
  color: #5f3f12
}

.cart-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px
}

.ghost-btn {
  background: transparent;
  color: #5f3f12;
  border: 1px solid rgba(191, 138, 54, .35)
}

.order-summary {
  position: sticky;
  top: 110px
}

.order-summary h2,
.checkout-form h2 {
  margin-top: 0
}

.order-summary>div,
.mini-order-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(191, 138, 54, .25)
}

.order-summary .grand {
  font-size: 1.2rem;
  border-bottom: 0
}

.checkout-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 16px
}

.empty-cart {
  text-align: center;
  padding: 38px 10px
}

.cart-popup-empty h2 {
  margin-bottom: 15px;
}

.cart-popup-empty p {
  margin-bottom: 15px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0
}

.payment-methods label {
  border: 1px solid rgba(191, 138, 54, .25);
  border-radius: 18px;
  padding: 14px;
  background: #fffaf0;
  cursor: pointer;
  font-weight: 800
}

.payment-box {
  border: 1px solid rgba(191, 138, 54, .2);
  border-radius: 22px;
  background: rgba(255, 250, 237, .74);
  padding: 18px;
  margin: 16px 0
}

.payment-box input,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 138, 54, .28);
  border-radius: 14px;
  padding: 12px;
  margin: 7px 0 12px;
  background: #fff
}

.orders-card .order-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(191, 138, 54, .14);
  border-radius: 20px;
  margin-bottom: 14px;
  background: #fffaf0
}

.order-status {
  display: block;
  margin-top: 8px;
  border-radius: 999px;
  background: #f4ca64;
  color: #3a2505;
  padding: 6px 12px;
  text-align: center;
  font-weight: 900
}

.success-card {
  text-align: center;
  max-width: 760px;
  margin: auto
}

.admin-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.admin-total-box {
  text-align: right;
  margin-top: 20px
}

.small {
  font-size: .85rem;
  opacity: .75
}

@media(max-width:900px) {

  .ecom-grid,
  .checkout-grid,
  .admin-order-grid {
    grid-template-columns: 1fr
  }

  .order-summary {
    position: static
  }

  .cart-row {
    grid-template-columns: 74px 1fr;
  }

  .cart-row .qty-input,
  .line-total {
    grid-column: 2
  }

  .payment-methods {
    grid-template-columns: 1fr
  }

  .cart-row img {
    width: 74px;
    height: 74px
  }
}


/* === Cart popup-style page (matches wishlist / orders popup look) === */
.cart-popup-page {
  min-height: 70vh;
  padding: 70px 0;
  background: radial-gradient(circle at 12% 10%, rgba(213, 151, 30, .16), transparent 35%), linear-gradient(180deg, rgba(255, 249, 233, .9), rgba(255, 255, 255, .97));
}

.cart-popup-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  background: #fffaf0;
  border: 1px solid rgba(213, 151, 30, 0.35);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(8, 30, 24, 0.18);
  padding: 28px;
  position: relative;
}

.cart-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-right: 52px;
}

.cart-popup-head p {
  margin: 0 0 4px;
  color: #c98d16;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.cart-popup-head h2 {
  margin: 0;
  color: #0b4b3d;
  font-size: clamp(28px, 4vw, 46px);
}

.cart-popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b4b3d;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  font-weight: 400;
}

.cart-popup-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cart-popup-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 75, 61, 0.12);
  border-radius: 20px;
  padding: 12px;
}

.cart-popup-img {
  display: block;
  height: 118px;
  border-radius: 16px;
  overflow: hidden;
  background: #f7e8c8;
}

.cart-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-popup-info h3 {
  margin: 0 0 4px;
  color: #103e35;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.cart-popup-info p {
  margin: 0 0 6px;
  color: rgba(16, 62, 53, 0.72);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
  font-size: 13px;
}

.cart-popup-info strong {
  display: block;
  color: #d59612;
  font-size: 18px;
  margin-bottom: 10px;
}

.cart-popup-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cart-popup-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #0b4b3d;
}

.cart-popup-controls .qty-input {
  width: 68px;
  padding: 9px 10px;
  border-radius: 999px;
}

.cart-popup-summary {
  margin: 22px 0 0 auto;
  background: rgba(255, 255, 255, .74);
  border: 1px dashed rgba(11, 75, 61, .18);
  border-radius: 22px;
  padding: 14px 18px;
}

.cart-popup-summary>div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(191, 138, 54, .22);
}

.cart-popup-summary .grand {
  border-bottom: 0;
  font-size: 1.18rem;
  color: #0b4b3d;
}

.cart-popup-actions {
  justify-content: flex-end;
}

.cart-popup-empty {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(11, 75, 61, 0.2);
  border-radius: 20px;
}

.notice.success {
  background: rgba(11, 75, 61, .08);
  border: 1px solid rgba(11, 75, 61, .18);
  color: #0b4b3d;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .cart-popup-panel {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .cart-popup-head {
    display: block;
    padding-right: 48px;
  }

  .cart-popup-list {
    grid-template-columns: 1fr;
  }

  .cart-popup-item {
    grid-template-columns: 92px 1fr;
  }

  .cart-popup-img {
    height: 92px;
  }

  .cart-popup-actions {
    justify-content: stretch;
  }

  .cart-popup-actions .product-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* === End cart popup-style page === */

/* === Real cart popup modal (not a cart page) === */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.cart-modal.is-open {
  display: block;
}

.cart-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 25, 0.58);
  backdrop-filter: blur(8px);
}

.cart-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100vw - 28px));
  max-height: min(740px, calc(100vh - 42px));
  overflow: auto;
  transform: translate(-50%, -50%);
  background: #fffaf0;
  border: 1px solid rgba(213, 151, 30, 0.35);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(8, 30, 24, 0.28);
  padding: 28px;
}

.cart-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #0b4b3d;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.cart-modal-open {
  overflow: hidden;
}

.cart-modal .cart-popup-summary {
  margin-left: auto;
}

.cart-modal .checkout-btn {
  width: auto;
  margin-top: 0;
}

.cart-modal-content .cart-popup-empty {
  margin: 0;
}

@media (max-width: 760px) {
  .cart-modal-panel {
    padding: 22px 16px;
    border-radius: 22px;
    top: 61%;
  }

  .cart-modal .checkout-btn {
    width: 100%;
  }
}

/* === End real cart popup modal === */

/* === Customer orders popup modal === */
.orders-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: none;
}

.orders-modal.is-open {
  display: block;
}

.orders-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 25, 0.62);
  backdrop-filter: blur(9px);
}

.orders-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1040px, calc(100vw - 28px));
  max-height: min(780px, calc(100vh - 42px));
  overflow: auto;
  transform: translate(-50%, -50%);
  background: #fffaf0;
  border: 1px solid rgba(213, 151, 30, 0.35);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(8, 30, 24, 0.32);
  padding: 28px;
}

.orders-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #0b4b3d;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.orders-modal-open {
  overflow: hidden;
}

.orders-modal-head,
.orders-popup-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.orders-modal-head {
  margin-bottom: 20px;
  padding-right: 52px;
}

.orders-modal-head p,
.orders-popup-kicker {
  margin: 0 0 5px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .74rem;
  font-weight: 900;
}

.orders-modal-head h2,
.orders-popup-top h3 {
  margin: 0;
  color: #0F3D34;
}

.orders-popup-list {
  display: grid;
  gap: 18px;
}

.orders-popup-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(191, 138, 54, .2);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(88, 57, 13, .08);
}

.orders-popup-price {
  text-align: right;
}

.orders-popup-price strong {
  display: block;
  color: #0F3D34;
  font-size: 1.25rem;
}

.order-status.danger {
  background: #f2b3a8;
  color: #6f1d12;
}

.order-status.status-pending {
  background: #fff1b8;
  color: #6a4700;
  border: 1px solid rgba(174, 125, 0, .22);
}

.order-status.status-confirmed {
  background: #d9f3ff;
  color: #07516c;
  border: 1px solid rgba(7, 81, 108, .18);
}

.order-status.status-processing {
  background: #eadcff;
  color: #4b237b;
  border: 1px solid rgba(75, 35, 123, .18);
}

.order-status.status-shipped {
  background: #d9e8ff;
  color: #163d74;
  border: 1px solid rgba(22, 61, 116, .18);
}

.order-status.status-delivered {
  background: #d9f7df;
  color: #11652b;
  border: 1px solid rgba(17, 101, 43, .18);
}

.order-status.status-cancelled {
  background: #f2b3a8;
  color: #6f1d12;
  border: 1px solid rgba(111, 29, 18, .18);
}

.orders-products-grid {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.orders-product-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 250, 237, .9);
  border: 1px solid rgba(191, 138, 54, .14);
}

.orders-product-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  background: #f6e6c9;
}

.orders-product-row p {
  margin: 4px 0 0;
  color: #7d6846;
}

.orders-product-row b {
  color: #5f3f12;
}

.cancel-order-box {
  border: 1px solid rgba(190, 57, 41, .18);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 244, 240, .75);
}

.cancel-order-box summary {
  cursor: pointer;
  font-weight: 900;
}

.cancel-order-form {
  margin-top: 12px;
}

.cancel-order-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 57, 41, .22);
  border-radius: 14px;
  padding: 12px;
  margin: 8px 0 12px;
  background: #fff;
}

.danger-btn {
  background: #9b2b1f;
  color: #fff;
}

.cancel-info-box {
  border-radius: 18px;
  background: rgba(242, 179, 168, .28);
  border: 1px solid rgba(155, 43, 31, .18);
  padding: 12px 14px;
  color: #6f1d12;
  line-height: 1.55;
}

@media(max-width: 760px) {
  .orders-modal-panel {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .orders-modal-head,
  .orders-popup-top {
    display: block;
  }

  .orders-popup-price {
    text-align: left;
    margin-top: 10px;
  }

  .orders-product-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .orders-product-row img {
    width: 64px;
    height: 64px;
  }

  .orders-product-row b {
    grid-column: 2;
  }
}

.orders-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ghost-danger-btn {
  background: #fff;
  color: #9b2b1f;
  border: 1px solid rgba(155, 43, 31, .28);
}

.light-btn {
  background: #fff;
  color: #0F3D34;
  border: 1px solid rgba(15, 61, 52, .16);
}

.order-action-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: none;
}

.order-action-modal.is-open {
  display: block;
}

.order-action-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 25, 0.68);
  backdrop-filter: blur(10px);
}

.order-action-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, calc(100vw - 28px));
  transform: translate(-50%, -50%);
  background: #fffaf0;
  border: 1px solid rgba(213, 151, 30, 0.35);
  border-radius: 28px;
  box-shadow: 0 32px 95px rgba(8, 30, 24, .35);
  padding: 28px;
}

.order-action-panel h3 {
  margin: 0 46px 8px 0;
  color: #0F3D34;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.order-action-message {
  color: #7d6846;
  margin: 0 0 18px;
  line-height: 1.55;
}

.order-action-reason label {
  display: block;
  font-weight: 900;
  color: #0F3D34;
  margin-bottom: 8px;
}

.order-action-reason textarea {
  width: 100%;
  border: 1px solid rgba(190, 57, 41, .22);
  border-radius: 16px;
  padding: 13px 14px;
  min-height: 116px;
  resize: vertical;
  background: #fff;
  color: #0F3D34;
}

.order-action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 560px) {
  .order-action-panel {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .order-action-buttons .product-btn {
    width: 100%;
  }
}

/* === End customer orders popup modal === */

.copy-upi-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  margin-left: 8px;
  background: #0F3D34;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.payment-box[hidden] {
  display: none;
}


/* === Login-based cart + pincode autofill === */
.cart-login-required .product-btn {
  margin-top: 14px
}

.pincode-grid {
  grid-template-columns: 1fr 1fr 1fr
}

.checkout-form input[readonly] {
  background: #fff7df;
  color: #6a4a17;
  cursor: not-allowed;
  border-style: dashed
}

.pincode-status {
  display: block;
  margin-top: -6px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #7d6846
}

.pincode-status[data-type="success"] {
  color: #278047
}

.pincode-status[data-type="error"] {
  color: #b42318
}

.pincode-status[data-type="loading"] {
  color: #9a6b10
}

@media(max-width:900px) {
  .pincode-grid {
    grid-template-columns: 1fr
  }
}

/* === End login-based cart + pincode autofill === */

/* Checkout live payment proof validation */
.payment-proof-error {
  display: none;
  color: #b3261e;
  font-weight: 800;
  font-size: .86rem;
  margin: -7px 0 12px;
  line-height: 1.35
}

.payment-proof-error.show {
  display: block
}

.payment-box input.payment-invalid {
  border-color: #d93b30;
  box-shadow: 0 0 0 4px rgba(217, 59, 48, .12)
}

.payment-box input.payment-valid {
  border-color: #2e9b5d;
  box-shadow: 0 0 0 4px rgba(46, 155, 93, .10)
}

/* Compact product cards: smaller cards, name/category one line, buttons one line */
#shop .products-grid,
.shop-section .products-grid {
  gap: 18px;
}

#shop .product-card,
.shop-section .product-card {
  padding: 8px;
  border-radius: 4px;
}

#shop .product-image,
.shop-section .product-image {
  height: 220px;
  min-height: 220px;
  flex-basis: 260px;
  border-radius: 25px;
}

#shop .product-info,
.shop-section .product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 10px;
  row-gap: 8px;
  align-items: center;
  padding: 14px 8px 8px;
  flex: 0 0 auto;
}

#shop .product-info h3,
.shop-section .product-info h3 {
  grid-column: 1;
  font-size: 1.28rem;
  line-height: 1.05;
  min-height: 0;
  margin: 0;
  -webkit-line-clamp: 1;
}

#shop .product-info .cat,
.shop-section .product-info .cat {
  grid-column: 2;
  min-height: 0;
  margin: 0;
  font-size: .72rem;
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
  justify-content: flex-end;
}

#shop .price,
.shop-section .price {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 1.05rem;
}

#shop .card-actions,
.shop-section .card-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: stretch;
  align-items: center;
}

#shop .card-actions>a,
.shop-section .card-actions>a,
#shop .card-actions form,
.shop-section .card-actions form {
  flex: 1 1 0;
  min-width: 0;
}

#shop .product-info .product-btn,
.shop-section .product-info .product-btn {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  font-size: .64rem;
  letter-spacing: 1px;
}

@media (max-width: 1180px) {

  #shop .product-image,
  .shop-section .product-image {
    height: 205px;
    min-height: 271px;
    flex-basis: 270px;
  }
}

@media (max-width: 768px) {

  #shop .product-card,
  .shop-section .product-card {
    max-width: 360px;
  }

  #shop .product-image,
  .shop-section .product-image {
    height: 210px;
    min-height: 210px;
    flex-basis: 210px;
  }

  #shop .product-info h3,
  .shop-section .product-info h3 {
    font-size: 1.16rem;
  }
}

@media (max-width: 420px) {

  #shop .product-image,
  .shop-section .product-image {
    height: 190px;
    min-height: 190px;
    flex-basis: 190px;
  }

  #shop .product-info,
  .shop-section .product-info {
    grid-template-columns: 1fr;
    row-gap: 7px;
  }

  #shop .product-info .cat,
  .shop-section .product-info .cat {
    grid-column: 1;
    justify-content: flex-start;
  }
}

/* Targeted responsive fixes: keep user-side product cards two per row on mobile and prevent horizontal sticking */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

.container,
.products-grid,
.premium-products,
.product-card,
.premium-card,
.product-info,
.card-actions {
  min-width: 0;
}

@media (max-width: 768px) {

  #shop .products-grid,
  .shop-section .products-grid,
  .shop-showcase .products-grid,
  .shop-showcase .premium-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #shop .product-card,
  .shop-section .product-card,
  .shop-showcase .product-card,
  .shop-showcase .premium-card {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 8px;
    border-radius: 20px;
  }

  #shop .product-image,
  .shop-section .product-image,
  .shop-showcase .product-image {
    height: 155px;
    min-height: 155px;
    flex-basis: 255px;
    border-radius: 16px;
  }

  #shop .product-info,
  .shop-section .product-info,
  .shop-showcase .product-info {
    padding: 10px 4px 4px;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 6px;
    row-gap: 7px;
  }

  #shop .product-info h3,
  .shop-section .product-info h3,
  .shop-showcase .product-info h3 {
    font-size: .98rem;
    line-height: 1.08;
    grid-column: 1;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
    display: block;
  }

  #shop .product-info .cat,
  .shop-section .product-info .cat,
  .shop-showcase .product-info .cat {
    grid-column: 2;
    font-size: .58rem;
    max-width: 62px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: flex-end;
  }

  #shop .price,
  .shop-section .price,
  .shop-showcase .price {
    font-size: .92rem;
    grid-column: 1 / -1;
  }

  #shop .card-actions,
  .shop-section .card-actions,
  .shop-showcase .card-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
  }

  #shop .card-actions>a,
  .shop-section .card-actions>a,
  .shop-showcase .card-actions>a,
  #shop .card-actions form,
  .shop-section .card-actions form,
  .shop-showcase .card-actions form {
    flex: 1 1 0;
    min-width: 0;
  }

  #shop .product-info .product-btn,
  .shop-section .product-info .product-btn,
  .shop-showcase .product-info .product-btn {
    min-height: 36px;
    padding: 0 6px;
    font-size: .56rem;
    letter-spacing: .5px;
  }
}

@media (max-width: 420px) {

  #shop .products-grid,
  .shop-section .products-grid,
  .shop-showcase .products-grid,
  .shop-showcase .premium-products {
    gap: 10px;
  }

  #shop .product-image,
  .shop-section .product-image,
  .shop-showcase .product-image {
    height: 130px;
    min-height: 130px;
    flex-basis: 180px;
  }

  #shop .product-info h3,
  .shop-section .product-info h3,
  .shop-showcase .product-info h3 {
    font-size: .88rem;
  }

  #shop .product-info .cat,
  .shop-section .product-info .cat,
  .shop-showcase .product-info .cat {
    max-width: 50px;
    font-size: .52rem;
  }
}

/* === Product card tag/wishlist overlap fix === */
.product-card.premium-card,
.premium-card {
  position: relative;
}

.product-image {
  position: relative;
}

.product-image .tag {
  z-index: 4;
  max-width: calc(100% - 92px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.premium-card>.wishlist-btn {
  z-index: 8;
}

@media (max-width: 768px) {
  .premium-card>.wishlist-btn {
    top: 14px;
    right: 14px;
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
  }

  .premium-card>.wishlist-btn .wishlist-text {
    display: none;
  }

  .product-image .tag {
    top: 4px;
    left: 4px;
    max-width: calc(100% - 58px);
    min-height: 24px;
    padding: 5px 8px;
    font-size: .48rem;
    letter-spacing: .7px;
  }
}

@media (max-width: 420px) {
  .premium-card>.wishlist-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .premium-card>.wishlist-btn .wishlist-icon {
    font-size: 16px;
  }

  .product-image .tag {
    top: 3px;
    left: 3px;
    max-width: calc(100% - 48px);
    min-height: 21px;
    padding: 4px 7px;
    font-size: .42rem;
    letter-spacing: .5px;
  }
}

/* === End product card tag/wishlist overlap fix === */

/* === Targeted fixes: user order search/filter, mobile shop filters, profile scroll === */
.orders-filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 210px auto auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(191, 138, 54, .16);
}

.orders-search-field,
.orders-status-field {
  display: grid;
  gap: 7px;
}

.orders-filter-bar label {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.orders-filter-bar input,
.orders-filter-bar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 61, 52, .16);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--ink);
  padding: 0 16px;
  outline: none;
  font: inherit;
}

.orders-filter-bar input:focus,
.orders-filter-bar select:focus {
  border-color: rgba(215, 154, 30, .75);
  box-shadow: 0 0 0 4px rgba(215, 154, 30, .14);
}

.orders-filter-bar .product-btn {
  min-height: 48px;
  white-space: nowrap;
  margin: 0;
}


@media (max-width: 768px) {
  .shop-showcase .category-toggle {
    display: none;
  }

  .shop-showcase .category-tabs,
  .shop-showcase .shop-filter.is-open .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .shop-showcase .category-tabs .btn {
    width: auto;
    flex: 1 1 calc(50% - 10px);
    min-width: 135px;
    border-radius: 999px;
  }

  .orders-filter-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .orders-filter-bar .product-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .shop-showcase .category-tabs .btn {
    flex-basis: 100%;
  }

  .orders-filter-bar input,
  .orders-filter-bar select {
    border-radius: 16px;
  }
}

/* === Only change: keep shop filters in one line === */
.shop-showcase .category-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  white-space: nowrap;
}

.shop-showcase .category-tabs .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 768px) {

  .shop-showcase .category-tabs,
  .shop-showcase .shop-filter.is-open .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .shop-showcase .category-tabs .btn {
    width: auto;
    flex: 0 0 auto;
    min-width: max-content;
  }
}

@media (max-width: 480px) {
  .shop-showcase .category-tabs .btn {
    flex-basis: auto;
  }
}


/* === Mobile cart/wishlist popup overlap fix === */
.cart-modal,
.wishlist-modal {
  z-index: 10060;
}

.cart-modal-backdrop,
.wishlist-modal-backdrop {
  z-index: 0;
}

.cart-modal-panel,
.wishlist-modal-panel {
  z-index: 1;
}

@media (max-width: 760px) {

  .cart-modal-panel,
  .wishlist-modal-panel {
    top: 50%;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 32px);
    padding: 20px 14px;
  }
}

/* === End mobile cart/wishlist popup overlap fix === */


/* === Narrow button color fix: cart + logout only === */
.card-actions form .product-btn,
.inline-cart-form .product-btn,
.cart-login-required .product-btn,
.cart-modal .checkout-btn,
.cart-popup-actions .checkout-btn,
.cart-popup-actions .product-btn:not(.ghost-btn),
button[name="add_to_cart"],
.add-to-cart-btn {
  background: linear-gradient(135deg, #17694f, #2f8f68);
  border-color: #17694f;
  color: #fffaf1;
  box-shadow: 0 12px 24px rgba(23, 105, 79, .22);
}

.card-actions form .product-btn:hover,
.inline-cart-form .product-btn:hover,
.cart-login-required .product-btn:hover,
.cart-modal .checkout-btn:hover,
.cart-popup-actions .checkout-btn:hover,
.cart-popup-actions .product-btn:not(.ghost-btn):hover,
button[name="add_to_cart"]:hover,
.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #0f4e3a, #17694f);
  color: #fffaf1;
}

.user-logout-link,
.logout-link,
.mobile-logout-link {
  background: linear-gradient(135deg, #8b2d22, #b44732);
  border-color: #8b2d22;
  color: #fffaf1;
}

.user-logout-link:hover,
.logout-link:hover,
.mobile-logout-link:hover {
  background: linear-gradient(135deg, #6f2018, #963325);
  color: #fffaf1;
}

/* === End narrow button color fix === */

/* Product page size selection - matched with shop filter pills only */
.product-detail .product-size-filter {
  width: 100%;
  margin: 22px 0 4px;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 230, 201, .72));
  border: 1px solid rgba(15, 61, 52, .12);
  box-shadow: 0 18px 46px rgba(15, 61, 52, .09);
}

.product-detail .size-filter-title {
  margin: 0 0 14px 4px;
  color: var(--clay);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-detail .size-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-detail .size-filter-btn {
  min-height: 44px;
  margin: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 61, 52, .12);
  color: var(--ink);
  box-shadow: none;
  font: inherit;
  font-size: .70rem;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .24s ease;
}

.product-detail .size-filter-btn small {
  font-size: .68rem;
  font-weight: 900;
  opacity: .72;
}

.product-detail .size-filter-btn:hover:not(:disabled) {
  background: rgba(15, 61, 52, .08);
  color: var(--ink);
  border-color: rgba(15, 61, 52, .18);
  transform: translateY(-2px);
}

.product-detail .size-filter-btn.active {
  background: linear-gradient(135deg, var(--clay), #f6c659);
  border-color: transparent;
  color: #0F3D34;
  box-shadow: 0 14px 30px rgba(215, 154, 30, .22);
}

.product-detail .size-filter-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.product-detail .product-size-filter .small {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

@media(max-width:720px) {
  .product-detail .product-size-filter {
    padding: 14px;
    border-radius: 26px;
  }

  .product-detail .size-filter-title {
    margin-left: 2px;
    text-align: center;
  }

  .product-detail .size-filter-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-detail .size-filter-btn {
    width: 100%;
    min-height: 48px;
  }
}

/* Lock page behind user popups only */
html.no-page-scroll,
body.no-page-scroll,
body.cart-modal-open,
body.wishlist-modal-open,
body.orders-modal-open,
body.order-action-modal-open,
body.logout-popup-open,
body.review-modal-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

body.no-page-scroll .cart-modal-panel,
body.no-page-scroll .wishlist-modal-panel,
body.no-page-scroll .orders-modal-panel,
body.no-page-scroll .order-action-panel {
  touch-action: auto;
}


/* Password visibility toggle - login/profile only */
.password-toggle-wrap {
  position: relative;
  width: 100%;
}

.password-toggle-wrap input {
  padding-right: 52px;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(215, 154, 30, .12);
  color: var(--clay);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
}

.password-toggle-btn:hover {
  background: rgba(215, 154, 30, .22);
}

.change-password-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.change-password-open {
  width: 100%;
}

.change-password-form {
  margin-top: 14px;
}

.change-password-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 22px;
}

.change-password-modal.show {
  display: grid;
}

.change-password-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 52, .45);
  backdrop-filter: blur(8px);
}

.change-password-panel {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  background: #fffaf1;
  border: 1px solid rgba(15, 61, 52, .14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.change-password-panel .orders-modal-head {
  margin-bottom: 16px;
}

/* === Checkout phone, village and UPI QR updates === */
.field-help {
  display: block;
  margin-top: -6px;
  margin-bottom: 10px;
  font-size: .84rem;
  font-weight: 800;
  color: #846a3d;
}

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

.upi-qr-wrap {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 248, 222, .96), rgba(255, 255, 255, .92));
  border: 1px solid rgba(207, 149, 42, .28);
  box-shadow: 0 14px 32px rgba(74, 45, 9, .08);
}

.upi-qr-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(86, 54, 14, .12);
}

.upi-open-btn {
  display: inline-flex;
  width: auto;
  margin-top: 8px;
  padding: 10px 16px;
  font-size: .9rem;
}

[data-payment-section][hidden] {
  display: none;
}


/* About page */
.about-premium {
  --honey: #d99119;
  --honey-deep: #9a5b08;
  --honey-soft: #fff2cf;
  --forest: #123f35;
  --forest-2: #0b2b24;
  --cream: #fffaf0;
  --ink: #182923;
  --muted: rgba(24, 41, 35, .68);
  --line: rgba(217, 145, 25, .18);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 42%, #fff9eb 100%);
  overflow: hidden;
}

.about-premium .reveal {
  opacity: 1;
  transform: none;
}

.about-premium * {
  box-sizing: border-box;
}

.ap-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ap-section {
  padding: clamp(56px, 8vw, 105px) 0;
  position: relative;
}

.ap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(217, 145, 25, .11);
  border: 1px solid rgba(217, 145, 25, .2);
  color: var(--honey-deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ap-kicker i {
  color: var(--honey);
}

.ap-title {
  margin: 16px 0 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-size: clamp(2.7rem, 6.8vw, 6.7rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.ap-subtitle {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.9;
}

.ap-hero {
  min-height: 94vh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 203, 91, .35), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(18, 63, 53, .16), transparent 32%),
    linear-gradient(140deg, #fff8e7 0%, #fffdf8 48%, #f6edd9 100%);
  position: relative;
}

.ap-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 63, 53, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 63, 53, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}

.ap-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, .98fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.ap-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ap-btn,
.ap-btn-outline {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.ap-btn {
  color: white;
  background: var(--forest);
  box-shadow: 0 18px 36px rgba(18, 63, 53, .22);
}

.ap-btn-outline {
  color: var(--forest);
  border: 1px solid rgba(18, 63, 53, .18);
  background: rgba(255, 255, 255, .56);
  backdrop-filter: blur(10px);
}

.ap-btn:hover,
.ap-btn-outline:hover {
  transform: translateY(-3px);
}

.ap-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 34px;
  max-width: 690px;
}

.ap-trust-item {
  padding: 18px;
  border: 1px solid rgba(18, 63, 53, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 20px 55px rgba(18, 63, 53, .07);
}

.ap-trust-item strong {
  display: block;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.ap-trust-item span {
  display: block;
  margin-top: 7px;
  color: rgba(24, 41, 35, .62);
  font-size: .82rem;
  font-weight: 700;
}

.ap-showcase {
  position: relative;
  min-height: 590px;
}

.ap-showcase-main {
  position: absolute;
  inset: 25px 0 0 40px;
  border-radius: 46px;
  overflow: hidden;
  background: var(--forest-2);
  box-shadow: 0 38px 90px rgba(18, 63, 53, .22);
}

.ap-showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .9;
  transform: scale(1.04);
}

.ap-showcase-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(8, 37, 31, .74) 100%);
}

.ap-float-card {
  position: absolute;
  left: 0;
  bottom: 19px;
  width: min(330px, 82%);
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 28px 70px rgba(18, 63, 53, .18);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.ap-float-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 14px 34px rgba(18, 63, 53, .1);
}

.ap-float-card h3 {
  margin: 16px 0 6px;
  color: var(--forest);
  font-size: 1.25rem;
}

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

.ap-seal {
  position: absolute;
  right: -12px;
  top: 0;
  z-index: 2;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle, #ffe3a2 0%, #d99119 72%);
  color: #5b3100;
  font-weight: 900;
  box-shadow: 0 24px 55px rgba(217, 145, 25, .32);
  border: 8px solid rgba(255, 255, 255, .72);
  transform: rotate(8deg);
}

.ap-seal span {
  display: block;
  max-width: 110px;
  line-height: 1.12;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ap-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.ap-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ap-section-head .ap-title {
  font-size: clamp(2.35rem, 5vw, 5.25rem);
}

.ap-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.ap-story-image {
  border-radius: 38px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 30px 70px rgba(18, 63, 53, .13);
  position: relative;
}

.ap-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 63, 53, .05), rgba(18, 63, 53, .38));
}

.ap-story-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 38px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(217, 145, 25, .16);
  box-shadow: 0 28px 75px rgba(18, 63, 53, .09);
}

.ap-story-card h2,
.ap-license-card h2,
.ap-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.04em;
  margin: 12px 0 18px;
}

.ap-story-card p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 16px;
}

.ap-mini-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 26px;
}

.ap-mini-point {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff8e8, #ffffff);
  border: 1px solid rgba(217, 145, 25, .15);
}

.ap-mini-point i {
  color: var(--honey);
  margin-bottom: 9px;
  display: inline-block;
}

.ap-mini-point strong {
  display: block;
  color: var(--forest);
  margin-bottom: 5px;
}

.ap-mini-point span {
  color: rgba(24, 41, 35, .62);
  font-size: .9rem;
  line-height: 1.5;
}

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

.ap-promise-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 246, 225, .86));
  border: 1px solid rgba(217, 145, 25, .16);
  box-shadow: 0 22px 60px rgba(18, 63, 53, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ap-promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 78px rgba(18, 63, 53, .13);
}

.ap-promise-card::before {
  content: '';
  position: absolute;
  inset: -45px -55px auto auto;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(217, 145, 25, .12);
}

.ap-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--honey-soft);
  color: var(--honey-deep);
  font-size: 1.35rem;
  margin-bottom: 28px;
}

.ap-promise-card h3 {
  color: var(--forest);
  font-size: 1.28rem;
  margin: 0 0 10px;
}

.ap-promise-card p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.ap-process {
  background: linear-gradient(135deg, var(--forest-2), #165044);
  color: #fff;
}

.ap-process .ap-title,
.ap-process .ap-section-head .ap-title {
  color: #fff6e4;
}

.ap-process .ap-subtitle {
  color: rgba(255, 255, 255, .72);
}

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

.ap-process-step {
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 246, 225, .86));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .16);
}

.ap-process-step img {
  width: 100%;
  height: 174px;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, .06);
}

.ap-process-step div {
  padding: 21px;
}

.ap-process-step strong {
  color: #ffdb8d;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ap-process-step h3 {
  color: var(--forest);
  margin: 8px 0 8px;
  font-size: 1.16rem;
}

.ap-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.62;
  font-size: .95rem;
}

.ap-license-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(28px, 4.5vw, 54px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 145, 25, .18), transparent 36%),
    linear-gradient(145deg, #ffffff, #fff8e8);
  border: 1px solid rgba(217, 145, 25, .17);
  box-shadow: 0 30px 82px rgba(18, 63, 53, .1);
}

.ap-license-card p {
  color: var(--muted);
  line-height: 1.8;
}

.ap-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 18px;
  background: var(--forest);
  color: #fff6e4;
  box-shadow: 0 18px 42px rgba(18, 63, 53, .18);
  font-weight: 800;
}

.ap-license-badge i {
  color: #ffdc8a;
}

.ap-license-table {
  display: grid;
  gap: 11px;
}

.ap-license-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(18, 63, 53, .06);
}

.ap-license-table strong {
  color: var(--forest);
  font-weight: 900;
}

.ap-license-table span {
  color: rgba(24, 41, 35, .72);
  overflow-wrap: anywhere;
}

.ap-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(46px, 7vw, 80px) clamp(22px, 4vw, 56px);
  border-radius: 44px;
  background:
    linear-gradient(rgba(18, 63, 53, .78), rgba(18, 63, 53, .82)),
    url('<?= e(url(' uploads/background-image/image-2.png')) ?>') center/cover;
  color: #fff;
  box-shadow: 0 34px 90px rgba(18, 63, 53, .2);
}

.ap-cta h2 {
  margin-top: 0;
}

.ap-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.8;
  color: var(--forest);
}

.ap-cta .ap-btn {
  background: linear-gradient(135deg, #ffd36e, #d99119);
  color: #4c2a00;
  box-shadow: 0 18px 42px rgba(217, 145, 25, .24);
}

@media (max-width: 1020px) {

  .ap-hero-grid,
  .ap-story-grid,
  .ap-license-card {
    grid-template-columns: 1fr;
  }

  .ap-showcase {
    min-height: 520px;
  }

  .ap-showcase-main {
    inset: 20px 0 0 20px;
  }

  .ap-promise-grid,
  .ap-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ap-container {
    width: min(100% - 24px, 1180px);
  }

  .ap-hero {
    min-height: auto;
    padding: 122px 0 54px;
  }

  .ap-title {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .ap-hero-actions,
  .ap-trust-row,
  .ap-mini-points,
  .ap-promise-grid,
  .ap-process-grid {
    grid-template-columns: 1fr;
  }

  .ap-hero-actions {
    display: grid;
  }

  .ap-btn,
  .ap-btn-outline {
    width: 100%;
  }

  .ap-trust-row {
    display: grid;
  }

  .ap-showcase {
    min-height: 430px;
  }

  .ap-showcase-main {
    inset: 44px 0 0 0;
    border-radius: 34px;
  }

  .ap-seal {
    width: 122px;
    height: 122px;
    right: 8px;
    top: 0;
  }

  .ap-seal span {
    font-size: .72rem;
    max-width: 85px;
  }

  .ap-float-card {
    left: 12px;
    bottom: 16px;
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .ap-story-image {
    min-height: 340px;
    border-radius: 30px;
  }

  .ap-story-card,
  .ap-license-card,
  .ap-cta {
    border-radius: 30px;
  }

  .ap-license-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media(max-width:1100px) {
  .pincode-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {

  .pincode-grid,
  .upi-qr-wrap {
    grid-template-columns: 1fr;
  }

  .upi-qr-img {
    width: 100%;
    max-width: 230px;
    height: auto;
    justify-self: center;
  }

  .upi-open-btn,
  .copy-upi-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
}

/* === End checkout phone, village and UPI QR updates === */

/* Small UX fix: hide visible scrollbars while keeping page scroll working */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ap-pdf-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 246, 225, .86));
  border: 1px solid rgba(191, 138, 54, .20);
  box-shadow: 0 24px 70px rgba(73, 44, 14, .12);
  position: relative;
  overflow: hidden;
}

.ap-pdf-card::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .16);
  pointer-events: none;
}

.ap-pdf-copy {
  position: relative;
  z-index: 1;
}

.ap-pdf-copy h2 {
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .95;
  margin: 14px 0 14px;
}

.ap-pdf-copy p {
  color: var(--clay);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 0 18px;
}

.ap-pdf-copy .ap-license-badge {
  width: max-content;
  margin-bottom: 18px;
}

.ap-pdf-preview {
  position: relative;
  display: block;
  border-radius: 30px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(15, 61, 52, .10);
  box-shadow: 0 24px 55px rgba(15, 61, 52, .16);
  overflow: hidden;
  transform: rotate(1.4deg);
  transition: .28s ease;
  z-index: 1;
}

.ap-pdf-preview:hover {
  transform: translateY(-5px) rotate(0deg);
  box-shadow: 0 34px 75px rgba(15, 61, 52, .20);
}

.ap-pdf-preview img {
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(15, 61, 52, .10);
}

.ap-pdf-preview span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(15, 61, 52, .92);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(15, 61, 52, .22);
}

.policy-page {
  min-height: 100vh;
  padding-top: 118px;
  color: var(--ink);
}

.policy-container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

.policy-hero {
  padding: 54px 0 24px;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: stretch;
}

.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(215, 154, 30, .14);
  color: #9b6812;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.policy-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: .9;
  margin: 18px 0 16px;
  max-width: 850px;
}

.policy-hero p {
  color: var(--clay);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 730px;
  margin: 0;
}

.policy-mini-card,
.policy-card,
.track-card,
.track-result-card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(191, 138, 54, .18);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(73, 44, 14, .09);
}

.policy-mini-card {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.policy-mini-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
}

.policy-mini-card span {
  color: var(--clay);
  line-height: 1.65;
}

.policy-mini-card a,
.policy-link-btn {
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0F3D34;
  color: #fff;
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.policy-section {
  padding: 22px 0 80px;
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-card {
  padding: 28px;
}

.policy-card.wide {
  grid-column: 1 / -1;
}

.policy-card h2,
.track-card h2,
.track-result-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1;
  margin: 0 0 12px;
}

.policy-card p {
  color: var(--clay);
  line-height: 1.82;
  margin: 0 0 10px;
}

.track-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.track-card,
.track-result-card {
  padding: 28px;
}

.track-card label {
  display: block;
  margin: 14px 0 7px;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.track-card input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(15, 61, 52, .14);
  border-radius: 18px;
  background: #fffaf0;
  padding: 0 16px;
  color: var(--ink);
  outline: none;
  font: inherit;
}

.track-card input:focus {
  border-color: rgba(215, 154, 30, .76);
  box-shadow: 0 0 0 4px rgba(215, 154, 30, .13);
}

.track-card .ap-btn {
  width: 100%;
  border: 0;
  color: white !important;
  background: #0f4e3a;
  margin-top: 18px;
  cursor: pointer;
}

.track-card .ap-btn:hover {
  color: white !important;
  background: #d79a1e;
}

.policy-notice {
  padding: 13px 15px;
  border-radius: 16px;
  margin: 12px 0;
  font-weight: 800;
}

.policy-notice.error {
  background: rgba(190, 54, 40, .10);
  color: #9d261c;
}

.track-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin: 18px 0;
  border-radius: 20px;
  background: rgba(215, 154, 30, .10);
}

.track-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #0F3D34;
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.track-status.status-cancelled {
  background: #9d261c;
}

.track-details-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.track-details-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 61, 52, .09);
}

.track-details-list strong {
  color: var(--ink);
}

.track-details-list span,
.track-steps span {
  color: var(--clay);
}

.track-items {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.track-items h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.track-item-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(15, 61, 52, .08);
  border-radius: 18px;
  background: #fffaf0;
}

.track-item-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
}

.track-item-row strong,
.track-item-row span {
  display: block;
}

.track-item-row span {
  color: var(--clay);
  font-size: .9rem;
}

.track-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.track-steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: #fffaf0;
  border: 1px solid rgba(15, 61, 52, .08);
}

.track-steps b {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 154, 30, .18);
  color: #9b6812;
}

@media (max-width: 900px) {

  .ap-pdf-card,
  .policy-hero-grid,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .policy-page {
    padding-top: 78px;
  }
}

@media (max-width: 640px) {

  .ap-pdf-card,
  .policy-card,
  .track-card,
  .track-result-card,
  .policy-mini-card {
    border-radius: 24px;
    padding: 20px;
  }

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

  .ap-pdf-preview {
    transform: none;
  }

  .track-details-list div,
  .track-item-row {
    grid-template-columns: 1fr;
  }

  .track-item-row img {
    width: 100%;
    height: 150px;
  }
}

/* === End requested update === */

/* === Requested refinement: better policy pages + mobile all links === */
.mobile-only-nav-link {
  display: none;
}

@media (max-width: 768px) {
  #nav-links .nav-more-dropdown {
    display: none;
  }

  #nav-links .mobile-only-nav-link {
    display: block;
  }
}

.beautiful-policy-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 154, 30, .18), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(15, 61, 52, .12), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #fff3df 52%, #fffaf2 100%);
  overflow: hidden;
}

.beautiful-policy-hero {
  padding: 74px 0 34px;
  position: relative;
}

.beautiful-policy-hero::before {
  content: '';
  position: absolute;
  inset: 28px auto auto -140px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, rgba(215, 154, 30, .10) 0 10px, transparent 10px 20px);
  opacity: .8;
  pointer-events: none;
}

.beautiful-policy-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 245, 224, .72));
  border: 1px solid rgba(191, 138, 54, .20);
  box-shadow: 0 30px 90px rgba(73, 44, 14, .12);
  backdrop-filter: blur(14px);
}

.beautiful-policy-copy {
  padding: 18px 8px 18px 10px;
}

.beautiful-policy-copy h1 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  max-width: 860px;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

.beautiful-policy-copy p {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  max-width: 760px;
}

.beautiful-policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.policy-link-btn.light {
  background: #fff;
  color: #0F3D34;
  border: 1px solid rgba(15, 61, 52, .14);
}

.beautiful-policy-panel {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  padding: 30px;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  color: #fffaf2;
  background:
    linear-gradient(140deg, rgba(15, 61, 52, .96), rgba(15, 61, 52, .78)),
    radial-gradient(circle at 70% 18%, rgba(215, 154, 30, .40), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 26px 70px rgba(15, 61, 52, .23);
  overflow: hidden;
}

.beautiful-policy-panel::before {
  content: '';
  position: absolute;
  right: -64px;
  top: -64px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .24);
  z-index: -1;
}

.policy-panel-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #ffd981;
  font-size: 2rem;
  margin-bottom: auto;
}

.beautiful-policy-panel strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.45rem;
  line-height: .95;
}

.beautiful-policy-panel span {
  color: rgba(255, 250, 242, .84);
  line-height: 1.75;
}

.beautiful-policy-section {
  padding-top: 10px;
}

.policy-step-grid,
.terms-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.policy-step-card,
.terms-feature-grid article,
.privacy-flow-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(191, 138, 54, .18);
  border-radius: 30px;
  box-shadow: 0 18px 52px rgba(73, 44, 14, .08);
}

.policy-step-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
}

.policy-step-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .13);
}

.policy-step-card span,
.privacy-flow-number {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(215, 154, 30, .16);
  color: #9b6812;
  font-weight: 900;
  letter-spacing: 1px;
}

.policy-step-card h2,
.terms-feature-grid h2,
.privacy-flow-card h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1;
  margin: 22px 0 12px;
}

.policy-step-card p,
.terms-feature-grid p,
.privacy-flow-card p {
  color: var(--clay);
  line-height: 1.78;
  margin: 0;
}

.policy-highlight-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15, 61, 52, .96), rgba(15, 61, 52, .82));
  color: #fffaf2;
  box-shadow: 0 22px 60px rgba(15, 61, 52, .16);
}

.policy-highlight-strip div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
}

.policy-highlight-strip i {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(215, 154, 30, .20);
  color: #ffd981;
  font-size: 1.35rem;
}

.policy-highlight-strip strong {
  font-size: 1.03rem;
}

.policy-highlight-strip p {
  color: rgba(255, 250, 242, .76);
  margin: 0;
}

.policy-highlight-strip .policy-link-btn {
  flex: 0 0 auto;
  background: #fffaf2;
  color: #0F3D34;
}

.beautiful-card-grid {
  gap: 20px;
}

.fancy-policy-card {
  position: relative;
  min-height: 235px;
  padding: 30px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fancy-policy-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #d79a1e, #f0cf78, #0F3D34);
  opacity: .95;
}

.fancy-policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 75px rgba(73, 44, 14, .13);
  border-color: rgba(215, 154, 30, .34);
}

.fancy-policy-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(215, 154, 30, .14);
  color: #9b6812;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.fancy-policy-card.wide {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
  min-height: auto;
}

.fancy-policy-card.wide .fancy-policy-icon {
  grid-row: span 2;
  margin-bottom: 0;
}

.fancy-policy-card.wide h2,
.fancy-policy-card.wide p {
  grid-column: 2;
}

.privacy-flow-card {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px;
  margin-bottom: 22px;
}

.privacy-flow-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0F3D34;
  color: #fffaf2;
}

.terms-feature-grid article {
  padding: 26px;
}

.terms-feature-grid i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #0F3D34;
  color: #ffd981;
  font-size: 1.5rem;
}

@media (max-width: 980px) {

  .beautiful-policy-shell,
  .policy-step-grid,
  .terms-feature-grid,
  .privacy-flow-card {
    grid-template-columns: 1fr;
  }

  .privacy-flow-card>i {
    transform: rotate(90deg);
    margin: -4px auto;
  }
}

@media (max-width: 640px) {
  .beautiful-policy-hero {
    padding: 34px 0 18px;
  }

  .beautiful-policy-shell {
    width: min(100% - 22px, 1180px);
    padding: 18px;
    border-radius: 28px;
  }

  .beautiful-policy-copy {
    padding: 8px 2px 0;
  }

  .beautiful-policy-copy h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .beautiful-policy-actions,
  .policy-highlight-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .beautiful-policy-actions .policy-link-btn,
  .policy-highlight-strip .policy-link-btn {
    width: 100%;
  }

  .beautiful-policy-panel {
    min-height: 230px;
    border-radius: 26px;
    padding: 22px;
  }

  .policy-step-card,
  .terms-feature-grid article,
  .privacy-flow-card,
  .fancy-policy-card {
    border-radius: 24px;
    padding: 22px;
  }

  .policy-highlight-strip div {
    grid-template-columns: 1fr;
  }

  .policy-highlight-strip i {
    grid-row: auto;
  }

  .fancy-policy-card.wide {
    display: block;
  }

  .fancy-policy-card.wide .fancy-policy-icon {
    margin-bottom: 18px;
  }
}

/* === End requested refinement === */

.about-premium .ap-hero {
  min-height: auto;
  padding: clamp(104px, 12vw, 128px) 0 clamp(42px, 6vw, 64px);
}

.about-premium .ap-section {
  padding: clamp(38px, 5vw, 72px) 0;
}

.about-premium .ap-title {
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: .96;
}

.about-premium .ap-subtitle {
  margin-top: 16px;
  line-height: 1.7;
}

.about-premium .ap-hero-actions,
.about-premium .ap-trust-row {
  margin-top: 22px;
}

.about-premium .ap-showcase {
  min-height: 455px;
}

.about-premium .ap-showcase-main {
  inset: 16px 0 0 28px;
  border-radius: 34px;
}

.about-premium .ap-seal {
  width: 122px;
  height: 122px;
  border-width: 6px;
}

.about-premium .ap-seal span {
  font-size: .78rem;
  max-width: 88px;
}

.about-premium .ap-float-card {
  width: min(179px, 82%);
  padding: 17px;
  border-radius: 24px;
}

.about-premium .ap-float-card img {
  width: 58px;
  height: 58px;
}

.about-premium .ap-section-head {
  margin-bottom: 24px;
}

.about-premium .ap-section-head .ap-title,
.about-premium .ap-story-card h2,
.about-premium .ap-license-card h2,
.about-premium .ap-cta h2,
.about-premium .ap-pdf-copy h2 {
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1;
}

.about-premium .ap-story-image {
  min-height: 350px;
  border-radius: 30px;
}

.about-premium .ap-story-card,
.about-premium .ap-license-card,
.about-premium .ap-pdf-card {
  border-radius: 30px;
  padding: clamp(22px, 3vw, 36px);
}

.about-premium .ap-promise-card {
  min-height: 218px;
  padding: 22px;
  border-radius: 24px;
}

.about-premium .ap-icon {
  margin-bottom: 18px;
}

.about-premium .ap-process-step {
  border-radius: 24px;
}

.about-premium .ap-process-step img {
  height: 140px;
}

.about-premium .ap-process-step div {
  padding: 17px;
}

.about-premium .ap-cta {
  border-radius: 32px;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 3vw, 38px);
}

@media (max-width: 640px) {
  .about-premium .ap-hero {
    padding: 88px 0 34px;
  }

  .about-premium .ap-title {
    font-size: clamp(2.28rem, 10.5vw, 3.45rem);
  }

  .about-premium .ap-showcase {
    min-height: 330px;
  }

  .about-premium .ap-showcase-main {
    inset: 34px 0 0 0;
    border-radius: 26px;
  }

  .about-premium .ap-seal {
    width: 92px;
    height: 92px;
    right: 8px;
  }

  .about-premium .ap-seal span {
    font-size: .62rem;
  }

  .about-premium .ap-float-card {
    width: 240px;
    bottom: 14px;
  }

  .about-premium .ap-trust-item {
    padding: 14px;
  }
}

footer.site-footer .footer-grid {
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, .7fr) minmax(210px, .9fr) minmax(180px, .75fr);
  gap: 28px;
}

footer.site-footer .footer-support-col .footer-links a {
  line-height: 1.35;
}

@media (max-width: 920px) {
  footer.site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  footer.site-footer {
    padding: 48px 0 22px;
  }

  footer.site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  footer.site-footer .footer-brand {
    font-size: 2.55rem;
  }
}

/* === End final responsive polish === */


/* =========================================================
   USER NAVBAR FINAL STICKY FIX
   Source of truth for the user-side navbar only.
   This block intentionally comes last to beat older rules in
   luxury.css and earlier page-utilities.css sections.
   ========================================================= */
:root {
  --dv-user-nav-desktop-h: 130px;
  --dv-user-nav-mobile-h: 70px;
}

html {
  scroll-padding-top: var(--dv-user-nav-desktop-h);
}

body {
  padding-top: var(--dv-user-nav-desktop-h);
}

#navbar,
#navbar.dv-site-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  transform: none;
  translate: none;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: rgba(255, 250, 242, .97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(64, 40, 12, .08);
  z-index: 2147483000;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .28s ease, background .25s ease, box-shadow .25s ease;
}

#navbar.nav-hidden,
#navbar.dv-site-nav.nav-hidden {
  transform: translateY(-100%);
  translate: none;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

body.menu-open #navbar,
body.menu-open #navbar.dv-site-nav {
  transform: none;
  translate: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#navbar.dv-site-nav *,
#navbar.dv-site-nav *::before,
#navbar.dv-site-nav *::after {
  box-sizing: border-box;
}

#navbar.dv-site-nav .dv-nav-top {
  height: 82px;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 0 clamp(22px, 4vw, 56px);
  border-bottom: 1px solid rgba(15, 61, 52, .10);
  background: linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(255, 247, 235, .94));
}

#navbar.dv-site-nav .menu-toggle {
  display: none;
}

#navbar.dv-site-nav .dv-nav-quicklinks,
#navbar.dv-site-nav .dv-nav-actions {
  display: flex;
  align-items: center;
}

#navbar.dv-site-nav .dv-nav-quicklinks {
  justify-self: start;
  gap: clamp(16px, 0.4vw, 36px);
}

#navbar.dv-site-nav .dv-nav-quicklinks a {
  position: relative;
  padding: 8px 11px;
  color: #101010;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: .7px;
  border-radius: 14px;
  text-transform: none;
  white-space: nowrap;
}

#navbar.dv-site-nav .dv-nav-quicklinks a:hover {
  background: #fff0d7;
  color: #5e3a00;
  transform: translateY(-1px);
  outline: none;
}

#navbar.dv-site-nav .dv-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

#navbar.dv-site-nav .brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#navbar.dv-site-nav .nav-logo-img,
#navbar.dv-site-nav .mobile-logo-img {
  display: block;
  width: 154px;
  height: 74px;
  max-width: 154px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(74, 47, 11, .08));
}

#navbar.dv-site-nav .dv-nav-actions {
  justify-self: end;
  gap: 10px;
}

#navbar.dv-site-nav .dv-icon-link {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(15, 61, 52, .12);
  background: rgba(255, 255, 255, .72);
  color: #101010;
  box-shadow: 0 10px 24px rgba(73, 44, 14, .06);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

#navbar.dv-site-nav .dv-icon-link:hover {
  transform: translateY(-2px);
  background: #0f3d34;
  border-color: #0f3d34;
  color: #fffaf2;
}

#navbar.dv-site-nav .dv-icon-link img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  object-fit: cover;
}

#navbar.dv-site-nav .dv-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #d79a1e;
  color: #fff;
  border: 2px solid #fffaf2;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

#navbar.dv-site-nav .dv-nav-bottom {
  height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 54px);
  border-bottom: 1px solid rgba(15, 61, 52, .08);
  background: rgba(255, 250, 242, .88);
}

#navbar.dv-site-nav #nav-links.nav-links {
  position: static;
  width: auto;
  height: auto;
  max-height: none;
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 34px);
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  list-style: none;
}

#navbar.dv-site-nav #nav-links>li {
  width: auto;
  border: 0;
}

#navbar.dv-site-nav #nav-links .mobile-drawer-head,
#navbar.dv-site-nav #nav-links .mobile-utility-link,
#navbar.dv-site-nav #nav-links .mobile-only-nav-link {
  display: none;
}

#navbar.dv-site-nav #nav-links>li>a,
#navbar.dv-site-nav #nav-links>li>span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 8px 11px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  color: #101010;
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: .5px;
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

#navbar.dv-site-nav #nav-links>li>a:hover,
#navbar.dv-site-nav #nav-links>li>span:hover,
#navbar.dv-site-nav #nav-links>li>a:focus-visible,
#navbar.dv-site-nav #nav-links>li>span:focus-visible {
  background: #fff0d7;
  color: #5e3a00;
  transform: translateY(-1px);
  outline: none;
}

#navbar.dv-site-nav .nav-dropdown {
  position: relative;
}

#navbar.dv-site-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(10px);
  min-width: 245px;
  max-width: 320px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(215, 154, 30, .18);
  background: rgba(255, 250, 242, .98);
  box-shadow: 0 24px 70px rgba(64, 40, 12, .14);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

#navbar.dv-site-nav .nav-dropdown:hover .dropdown-menu,
#navbar.dv-site-nav .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

#navbar.dv-site-nav .nav-more-dropdown .dropdown-menu {
  left: auto;
  right: 0;
  transform: translateY(10px);
  min-width: 290px;
}

#navbar.dv-site-nav .nav-more-dropdown:hover .dropdown-menu,
#navbar.dv-site-nav .nav-more-dropdown:focus-within .dropdown-menu {
  transform: translateY(0);
}

#navbar.dv-site-nav .dropdown-menu a {
  width: 100%;
  min-height: 40px;
  justify-content: flex-start;
  padding: 10px 13px;
  border-radius: 14px;
  color: #0f3d34;
  background: transparent;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .3px;
  text-transform: none;
  white-space: normal;
}

#navbar.dv-site-nav .dropdown-menu a:hover {
  background: #0f3d34;
  color: #fffaf2;
}

@media (min-width: 769px) and (max-width: 1120px) {
  #navbar.dv-site-nav .dv-nav-top {
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    padding: 0 18px;
  }

  #navbar.dv-site-nav .dv-nav-quicklinks {
    gap: 12px;
  }

  #navbar.dv-site-nav .dv-nav-quicklinks a,
  #navbar.dv-site-nav #nav-links>li>a,
  #navbar.dv-site-nav #nav-links>li>span {
    font-size: .78rem;
  }

  #navbar.dv-site-nav #nav-links.nav-links {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  :root {
    --dv-user-nav-mobile-h: 70px;
  }

  html {
    scroll-padding-top: var(--dv-user-nav-mobile-h);
  }

  body {
    padding-top: var(--dv-user-nav-mobile-h);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: auto;
  }

  #navbar,
  #navbar.dv-site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: var(--dv-user-nav-mobile-h);
    min-height: var(--dv-user-nav-mobile-h);
    padding: 0;
    border-radius: 0;
    overflow: visible;
    background: #fffaf2;
    box-shadow: 0 7px 22px rgba(0, 0, 0, .09);
    z-index: 2147483000;
  }

  #navbar.dv-site-nav .dv-nav-top {
    height: var(--dv-user-nav-mobile-h);
    min-height: var(--dv-user-nav-mobile-h);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid rgba(15, 61, 52, .10);
    background: #fffaf2;
  }

  #navbar.dv-site-nav .menu-toggle {
    grid-column: 1;
    display: inline-flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(15, 61, 52, .12);
    border-radius: 50%;
    background: #fff;
    color: #101010;
    box-shadow: 0 8px 22px rgba(73, 44, 14, .08);
    justify-self: start;
    z-index: 2147483003;
    cursor: pointer;
  }

  #navbar.dv-site-nav .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
  }

  #navbar.dv-site-nav .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #navbar.dv-site-nav .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  #navbar.dv-site-nav .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #navbar.dv-site-nav .dv-nav-quicklinks {
    display: none;
  }

  #navbar.dv-site-nav .dv-logo {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    max-width: 118px;
    overflow: hidden;
    padding: 0;
  }

  #navbar.dv-site-nav .nav-logo-img,
  #navbar.dv-site-nav .mobile-logo-img {
    display: block;
    width: min(112px, 34vw);
    height: 58px;
    max-width: 112px;
    object-fit: contain;
  }

  #navbar.dv-site-nav .dv-nav-actions {
    grid-column: 3;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    min-width: 0;
    gap: 5px;
  }

  #navbar.dv-site-nav .dv-icon-link {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
    box-shadow: none;
  }

  #navbar.dv-site-nav .dv-icon-link:hover {
    transform: none;
    background: #fff6e8;
    color: #111;
    border-color: rgba(215, 154, 30, .24);
  }

  #navbar.dv-site-nav .dv-icon-link img {
    width: 28px;
    height: 28px;
  }

  #navbar.dv-site-nav .dv-count {
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border: 0;
    font-size: 10px;
  }

  #navbar.dv-site-nav .dv-nav-bottom {
    display: block;
    height: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  #navbar.dv-site-nav #nav-links.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: min(90vw, 350px);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    box-sizing: border-box;
    padding: 0 0 calc(84px + env(safe-area-inset-bottom));
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #fffaf2;
    box-shadow: 18px 0 45px rgba(0, 0, 0, .18);
    z-index: 2147483002;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-105%);
    transition: transform .28s ease;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(215, 154, 30, .55) rgba(255, 246, 234, .95);
  }

  #navbar.dv-site-nav #nav-links.nav-links.active {
    transform: translateX(0);
  }

  #navbar.dv-site-nav #nav-links .mobile-drawer-head,
  #navbar.dv-site-nav #nav-links .mobile-utility-link,
  #navbar.dv-site-nav #nav-links .nav-more-dropdown {
    display: block;
  }

  #navbar.dv-site-nav #nav-links .mobile-drawer-head {
    position: relative;
    width: 100%;
    padding: 20px 66px 17px 20px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    border-radius: 0;
    background: #fffaf2;
  }

  #navbar.dv-site-nav #nav-links .mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #111;
    font-size: 26px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  }

  #navbar.dv-site-nav #nav-links .mobile-user-card {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-direction: row-reverse;
  }

  #navbar.dv-site-nav #nav-links .mobile-user-card img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
  }

  #navbar.dv-site-nav #nav-links .mobile-user-card strong {
    display: block;
    color: #111;
    font-size: 15px;
    letter-spacing: .4px;
    text-transform: none;
  }

  #navbar.dv-site-nav #nav-links .mobile-user-card a {
    display: inline-flex;
    min-height: 0;
    margin-top: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #d79a1e;
    background: transparent;
    font-size: 11px;
    letter-spacing: .9px;
    text-transform: uppercase;
    font-weight: 800;
  }

  #navbar.dv-site-nav #nav-links .mobile-logout-link {
    min-height: 40px;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    background: #141016;
    color: #fff;
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  #navbar.dv-site-nav #nav-links>li:not(.mobile-drawer-head) {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    text-align: left;
  }

  #navbar.dv-site-nav #nav-links>li:not(.mobile-drawer-head)>a,
  #navbar.dv-site-nav #nav-links>li:not(.mobile-drawer-head)>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    padding: 14px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .85px;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.35;
    cursor: pointer;
  }

  #navbar.dv-site-nav #nav-links>li:not(.mobile-drawer-head)>a:hover,
  #navbar.dv-site-nav #nav-links>li:not(.mobile-drawer-head)>span:hover {
    transform: none;
    background: rgba(215, 154, 30, .08);
    color: #111;
  }

  #navbar.dv-site-nav #nav-links .nav-dropdown>.dropdown-toggle::after {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-left: auto;
    border-radius: 50%;
    background: rgba(215, 154, 30, .13);
    color: #9b6812;
    font-size: 18px;
    line-height: 1;
  }

  #navbar.dv-site-nav #nav-links .nav-dropdown.open>.dropdown-toggle::after {
    content: '−';
  }

  #navbar.dv-site-nav #nav-links .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 4px 0 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff6ea;
  }

  #navbar.dv-site-nav #nav-links .nav-dropdown.open>.dropdown-menu {
    display: block;
  }

  #navbar.dv-site-nav #nav-links .dropdown-menu li {
    border-top: 1px solid rgba(0, 0, 0, .06);
  }

  #navbar.dv-site-nav #nav-links .dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 12px 32px;
    color: #222;
    background: transparent;
    border-radius: 0;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.35;
  }

  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }

  body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  main,
  .hero:first-of-type {
    margin-top: 0;
  }
}

@media (max-width: 390px) {

  #navbar.dv-site-nav .nav-logo-img,
  #navbar.dv-site-nav .mobile-logo-img {
    width: min(104px, 32vw);
    max-width: 104px;
  }

  #navbar.dv-site-nav .dv-icon-link {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 28px, 940px);
  }

  .hero h1,
  .section-title,
  .page-title {
    text-wrap: balance;
  }

  .product-grid,
  .blog-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  body {
    line-height: 1.55;
  }

  nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    border-radius: 22px;
    padding: 10px 12px;
  }

  .logo span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 78vh;
    padding: 110px 0 54px;
  }

  .hero-content,
  .page-hero-content {
    padding-inline: 12px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.35rem, 13vw, 4.6rem);
    line-height: .92;
  }

  .section {
    padding: 58px 0;
  }

  .product-grid,
  .blog-grid,
  .benefits-grid,
  .process-grid,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .blog-card,
  .benefit-card,
  .process-card,
  .cart-modal-panel,
  .wishlist-modal-panel {
    border-radius: 24px;
  }

  .cart-modal-panel,
  .wishlist-modal-panel {
    width: calc(100vw - 18px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
  }

  .site-toast,
  .divy-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    text-align: center;
  }

  .divy-scroll-top {
    right: 12px;
    bottom: 72px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .mobile-nav-actions {
    gap: 6px;
  }

  .mobile-nav-actions a {
    width: 36px;
    height: 36px;
  }

  .product-card-content,
  .blog-card-content,
  .benefit-card,
  .process-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: .01ms;
  }
}

/* === Requested small update: bigger logo, founder story, popup navbar hidden === */
#navbar.dv-site-nav .dv-logo {
  max-width: 210px !important;
  overflow: visible !important;
}

#navbar.dv-site-nav .nav-logo-img,
#navbar.dv-site-nav .mobile-logo-img {
  width: 198px !important;
  height: 90px !important;
  max-width: 198px !important;
  object-fit: contain !important;
}

body.no-page-scroll #navbar,
body.review-modal-open #navbar,
body.no-page-scroll #navbar.dv-site-nav,
body.cart-modal-open #navbar,
body.wishlist-modal-open #navbar,
body.orders-modal-open #navbar,
body.order-action-modal-open #navbar,
body.logout-popup-open #navbar,
body.change-password-open #navbar {
  display: none !important;
}

.ap-founder-section {
  padding-top: clamp(24px, 4vw, 54px);
}

.ap-founder-card {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 211, 110, .30), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fff5dd 100%);
  border: 1px solid rgba(217, 145, 25, .18);
  box-shadow: 0 30px 84px rgba(18, 63, 53, .10);
  overflow: hidden;
  position: relative;
}

.ap-founder-card::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(217, 145, 25, .12);
  pointer-events: none;
}

.ap-founder-photo {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 222, 152, .68), transparent 46%),
    linear-gradient(180deg, #fffaf0 0%, #f0d8a0 100%);
  box-shadow: inset 0 -34px 70px rgba(106, 65, 8, .13), 0 24px 60px rgba(18, 63, 53, .12);
  overflow: hidden;
  z-index: 1;
}

.ap-founder-photo img {
  max-height: 475px;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 24px 32px rgba(18, 63, 53, .16));
}

.ap-founder-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(18, 63, 53, .92);
  color: #fff8e7;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  box-shadow: 0 16px 32px rgba(18, 63, 53, .18);
}

.ap-founder-copy {
  position: relative;
  z-index: 1;
}

.ap-founder-copy h2 {
  margin: 14px 0 18px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-size: clamp(2.05rem, 3.8vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.ap-founder-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.85;
}

.ap-founder-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ap-founder-values span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(217, 145, 25, .16);
  color: var(--forest);
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(18, 63, 53, .07);
}

.ap-founder-values i {
  color: var(--honey);
}

@media (max-width: 768px) {
  #navbar.dv-site-nav .dv-logo {
    max-width: 150px !important;
  }

  #navbar.dv-site-nav .nav-logo-img,
  #navbar.dv-site-nav .mobile-logo-img {
    width: min(142px, 38vw) !important;
    height: 69px !important;
    max-width: 142px !important;
  }

  .ap-founder-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 20px;
  }

  .ap-founder-photo {
    min-height: 355px;
    border-radius: 24px;
  }

  .ap-founder-photo img {
    max-height: 340px;
  }
}

@media (max-width: 390px) {

  #navbar.dv-site-nav .nav-logo-img,
  #navbar.dv-site-nav .mobile-logo-img {
    width: min(132px, 40vw) !important;
    height: 69px !important;
    max-width: 132px !important;
  }
}

/* === End requested small update === */



/* === Targeted button hover/color and desktop section fixes === */
.product-btn:not(:disabled):hover,
.btn:not(:disabled):hover,
.checkout-btn:not(:disabled):hover,
.wa-btn:not(:disabled):hover,
.copy-upi-btn:hover,
.policy-mini-card a:hover,
.policy-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 61, 52, .18);
}

.wa-btn,
.checkout-form .checkout-btn,
.upi-open-btn {
  background: linear-gradient(135deg, #17694f, #2f8f68);
  border-color: #17694f;
  color: #fffaf1;
}

.wa-btn:hover,
.checkout-form .checkout-btn:hover,
.upi-open-btn:hover,
.copy-upi-btn:hover {
  background: linear-gradient(135deg, #0f4e3a, #17694f);
  border-color: #0f4e3a;
  color: #fffaf1;
}

.light-btn.product-btn,
.product-btn.light-btn {
  background: #fff;
  color: #0F3D34;
  border: 1px solid rgba(15, 61, 52, .16);
}

.light-btn.product-btn:hover,
.product-btn.light-btn:hover {
  background: #0F3D34;
  color: #fff;
  border-color: #0F3D34;
}

.danger-btn.product-btn,
.product-btn.danger-btn,
.ghost-danger-btn.product-btn,
.product-btn.ghost-danger-btn {
  background: #9b2b1f;
  color: #fff;
  border-color: #9b2b1f;
}

.danger-btn.product-btn:hover,
.product-btn.danger-btn:hover,
.ghost-danger-btn.product-btn:hover,
.product-btn.ghost-danger-btn:hover {
  background: #6f2018;
  color: #fff;
  border-color: #6f2018;
}

.ghost-btn.product-btn,
.product-btn.ghost-btn {
  background: transparent;
  color: #5f3f12;
  border: 1px solid rgba(191, 138, 54, .35);
}

.ghost-btn.product-btn:hover,
.product-btn.ghost-btn:hover {
  background: rgba(191, 138, 54, .14);
  color: #5f3f12;
  border-color: rgba(191, 138, 54, .45);
}

.ap-btn:hover {
  color: var(--forest);
  background: var(--honey);
  box-shadow: 0 22px 44px rgba(18, 63, 53, .24);
}

.ap-btn-outline:hover {
  background: #fff7e6;
  color: var(--forest);
  border-color: rgba(217, 145, 25, .34);
  box-shadow: 0 18px 36px rgba(18, 63, 53, .12);
}

.policy-mini-card a:hover,
.policy-link-btn:hover {
  background: #D79A1E;
  color: #0F3D34;
}

.product-btn:disabled,
.btn:disabled,
.checkout-btn:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
  box-shadow: none;
}

@media (min-width: 769px) and (max-width: 1180px) {

  .shop-showcase .product-card,
  .shop-showcase .premium-card {
    min-height: 0;
  }

  .shop-showcase .product-info {
    min-height: auto;
  }
}

@media (min-width: 1025px) {

  .why-choose-grid,
  .story-grid,
  .faq-layout,
  .journey-hero,
  .checkout-grid {
    min-width: 0;
  }

  .benefit-card,
  .journey-step,
  .site-blog-card {
    height: 100%;
  }
}

/* === End targeted button hover/color and desktop section fixes === */
/* === Premium remake: policy pages (Returns, Privacy, Terms) === */
.policy-redesign {
  --policy-forest: #0F3D34;
  --policy-forest-2: #145344;
  --policy-honey: #D79A1E;
  --policy-honey-2: #F0C76A;
  --policy-cream: #FFF8EB;
  --policy-soft: #F8E9CC;
  --policy-text: #243B35;
  --policy-muted: #6C7B72;
  --policy-line: rgba(15, 61, 52, .12);
  --policy-shadow: 0 28px 95px rgba(76, 45, 9, .14);
  position: relative;
  padding-top: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 154, 30, .20), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(15, 61, 52, .12), transparent 28%),
    radial-gradient(circle at 70% 86%, rgba(240, 199, 106, .22), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f8e8ca 48%, #fffaf0 100%);
  color: var(--policy-text);
}

.policy-redesign::before,
.policy-redesign::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.policy-redesign::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 61, 52, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 52, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .62), transparent 70%);
}

.policy-redesign::after {
  top: 140px;
  right: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, rgba(215, 154, 30, .10) 0 12px, transparent 12px 24px);
  transform: rotate(10deg);
}

.policy-redesign-container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

.policy-redesign-hero {
  position: relative;
  padding: clamp(145px, 14vw, 178px) 0 clamp(38px, 6vw, 70px);
}

.policy-redesign-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.policy-redesign-copy {
  position: relative;
  min-height: 560px;
  padding: clamp(26px, 4.4vw, 58px);
  border-radius: clamp(30px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 246, 229, .72)),
    radial-gradient(circle at 18% 24%, rgba(240, 199, 106, .22), transparent 32%);
  border: 1px solid rgba(215, 154, 30, .23);
  box-shadow: var(--policy-shadow);
  overflow: hidden;
}

.policy-redesign-copy::before {
  content: '';
  position: absolute;
  left: -70px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(15, 61, 52, .07);
}

.policy-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(15, 61, 52, .62);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.policy-breadcrumb a {
  color: var(--policy-forest);
}

.policy-redesign-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(215, 154, 30, .14);
  border: 1px solid rgba(215, 154, 30, .23);
  color: #99620a;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.policy-redesign-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 22px 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.1rem, 7.6vw, 7.8rem);
  line-height: .84;
  letter-spacing: -.055em;
  color: var(--policy-forest);
}

.policy-redesign-copy p {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 0;
  color: var(--policy-muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.85;
}

.policy-redesign-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.policy-primary-btn,
.policy-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.policy-primary-btn {
  color: #fffaf0;
  background: linear-gradient(135deg, var(--policy-forest), var(--policy-forest-2));
  box-shadow: 0 15px 34px rgba(15, 61, 52, .20);
}

.policy-secondary-btn {
  color: var(--policy-forest);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(15, 61, 52, .14);
  box-shadow: 0 12px 30px rgba(76, 45, 9, .07);
}

.policy-primary-btn:hover,
.policy-secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(76, 45, 9, .16);
}

.policy-secondary-btn:hover {
  background: var(--policy-honey);
  color: var(--policy-forest);
  border-color: rgba(215, 154, 30, .45);
}

.policy-hero-card {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: 34px;
  border-radius: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fffaf0;
  background:
    linear-gradient(160deg, rgba(15, 61, 52, .98), rgba(11, 44, 38, .91)),
    radial-gradient(circle at 70% 14%, rgba(240, 199, 106, .50), transparent 34%);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 34px 90px rgba(15, 61, 52, .22);
}

.policy-hero-card::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  z-index: -1;
}

.policy-hero-card::after {
  content: '';
  position: absolute;
  top: -94px;
  right: -94px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .26);
  z-index: -1;
}

.policy-hero-card img {
  position: absolute;
  top: 34px;
  left: 34px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.policy-hero-glow {
  position: absolute;
  right: -50px;
  bottom: 72px;
  width: 190px;
  height: 190px;
  border-radius: 50% 50% 48% 52%;
  background: linear-gradient(135deg, rgba(215, 154, 30, .64), rgba(240, 199, 106, .14));
  filter: blur(.2px);
  opacity: .9;
  z-index: -1;
}

.policy-hero-card span {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .13);
  color: var(--policy-honey-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.policy-hero-card h2 {
  margin: 18px 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.15rem, 3.1vw, 3.45rem);
  line-height: .96;
  letter-spacing: -.025em;
}

.policy-hero-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 250, 240, .78);
  line-height: 1.75;
}

.policy-redesign-section {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(70px, 9vw, 112px);
}

.policy-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.policy-quick-grid article {
  position: relative;
  min-height: 236px;
  padding: 28px;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, .77);
  border: 1px solid rgba(215, 154, 30, .22);
  box-shadow: 0 18px 56px rgba(76, 45, 9, .08);
}

.policy-quick-grid article::after {
  content: '';
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .12);
}

.policy-quick-grid span,
.policy-process-strip b {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 17px;
  background: rgba(215, 154, 30, .15);
  color: #9b6812;
  font-weight: 900;
  letter-spacing: 1px;
}

.policy-quick-grid h2 {
  margin: 24px 0 12px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--policy-forest);
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: .98;
}

.policy-quick-grid p {
  position: relative;
  z-index: 1;
  color: var(--policy-muted);
  line-height: 1.78;
  margin: 0;
}

.policy-process-strip {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(215, 154, 30, .22);
  box-shadow: 0 18px 56px rgba(76, 45, 9, .08);
}

.policy-process-strip div {
  display: grid;
  gap: 10px;
}

.policy-process-strip strong {
  font-family: 'Cormorant Garamond', serif;
  color: var(--policy-forest);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1;
}

.policy-process-strip span {
  color: var(--policy-muted);
  line-height: 1.65;
}

.policy-process-strip>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--policy-forest);
  box-shadow: 0 14px 34px rgba(15, 61, 52, .18);
}

.policy-sticky-card {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 20px;
  border-radius: 28px;
  background: rgba(15, 61, 52, .95);
  box-shadow: 0 20px 54px rgba(15, 61, 52, .18);
  border: 1px solid rgba(255, 255, 255, .12);
}

.policy-sticky-card::-webkit-scrollbar {
  width: 4px;
}

.policy-sticky-card::-webkit-scrollbar-thumb {
  background: rgba(240, 199, 106, .65);
  border-radius: 999px;
}

.policy-side-label {
  color: var(--policy-honey-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.policy-sticky-card a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  color: rgba(255, 250, 240, .86);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 800;
  transition: .22s ease;
}

.policy-sticky-card a:hover {
  color: var(--policy-forest);
  background: var(--policy-honey-2);
  transform: translateX(4px);
}

.policy-detail-stack {
  display: grid;
  gap: 18px;
}

.policy-detail-card {
  scroll-margin-top: 132px;
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(15, 61, 52, .10);
  box-shadow: 0 18px 58px rgba(76, 45, 9, .09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.policy-detail-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--policy-honey), var(--policy-forest));
}

.policy-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 30, .30);
  box-shadow: 0 28px 76px rgba(76, 45, 9, .13);
}

.policy-detail-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #9b6812;
  background: linear-gradient(135deg, rgba(215, 154, 30, .18), rgba(240, 199, 106, .09));
  border: 1px solid rgba(215, 154, 30, .20);
  font-size: 1.7rem;
}

.policy-detail-label {
  display: inline-flex;
  color: #9b6812;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.policy-detail-card h2 {
  margin: 8px 0 12px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--policy-forest);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: .95;
  letter-spacing: -.025em;
}

.policy-detail-card p {
  color: var(--policy-muted);
  line-height: 1.85;
  margin: 0;
}

.policy-alert-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--policy-forest);
  background: rgba(215, 154, 30, .12);
  border: 1px solid rgba(215, 154, 30, .18);
}

.policy-alert-line i {
  color: #9b6812;
}

.policy-check-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.policy-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--policy-muted);
  line-height: 1.58;
}

.policy-check-list i {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--policy-forest);
  font-size: .76rem;
}

.policy-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 36px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 154, 30, .30), transparent 28%),
    linear-gradient(135deg, #0F3D34, #0a2924);
  box-shadow: 0 26px 76px rgba(15, 61, 52, .20);
  overflow: hidden;
}

.policy-bottom-cta span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--policy-honey-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.policy-bottom-cta h2 {
  max-width: 700px;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.025em;
}

.policy-bottom-cta .policy-primary-btn {
  flex: 0 0 auto;
  background: #fffaf0;
  color: var(--policy-forest);
  box-shadow: none;
}

.privacy-policy-page .policy-redesign-copy,
.privacy-policy-page .policy-hero-card,
.privacy-policy-page .policy-detail-card::before {
  --policy-honey: #E0A63A;
}

.terms-policy-page .policy-redesign-copy,
.terms-policy-page .policy-hero-card,
.terms-policy-page .policy-detail-card::before {
  --policy-honey: #C89125;
}

@media (max-width: 1020px) {

  .policy-redesign-hero-grid,
  .policy-content-layout {
    grid-template-columns: 1fr;
  }

  .policy-redesign-copy,
  .policy-hero-card {
    min-height: auto;
  }

  .policy-hero-card {
    padding-top: 150px;
  }

  .policy-sticky-card {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-side-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {

  .policy-quick-grid,
  .policy-process-strip {
    grid-template-columns: 1fr;
  }

  .policy-process-strip>i {
    transform: rotate(90deg);
    margin: -2px auto;
  }

  .policy-bottom-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .policy-bottom-cta .policy-primary-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .policy-redesign-container {
    width: min(100% - 22px, 1180px);
  }

  .policy-redesign-hero {
    padding: 112px 0 28px;
  }

  .policy-redesign-copy,
  .policy-hero-card,
  .policy-quick-grid article,
  .policy-process-strip,
  .policy-detail-card,
  .policy-bottom-cta {
    border-radius: 25px;
  }

  .policy-redesign-copy {
    padding: 24px;
  }

  .policy-redesign-copy h1 {
    font-size: clamp(2.65rem, 15vw, 4.65rem);
    letter-spacing: -.04em;
  }

  .policy-redesign-actions {
    flex-direction: column;
  }

  .policy-primary-btn,
  .policy-secondary-btn {
    width: 100%;
  }

  .policy-hero-card {
    min-height: 360px;
    padding: 142px 24px 24px;
  }

  .policy-hero-card img {
    top: 24px;
    left: 24px;
    width: 84px;
    height: 84px;
  }

  .policy-sticky-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .policy-detail-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .policy-detail-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 1.35rem;
  }

  .policy-alert-line {
    align-items: flex-start;
  }
}

/* === End premium remake: policy pages === */

/* === Expanded reference-style policy content blocks === */
.policy-wide-card {
  position: relative;
  margin: 24px 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(215, 154, 30, .16), transparent 28%),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(215, 154, 30, .22);
  box-shadow: 0 22px 70px rgba(76, 45, 9, .10);
}

.policy-wide-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(15, 61, 52, .07);
  pointer-events: none;
}

.policy-section-title {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 24px;
}

.policy-section-title span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9b6812;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.policy-section-title h2 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--policy-forest);
  font-size: clamp(2.25rem, 4.3vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.032em;
}

.policy-section-title p,
.policy-muted-para {
  color: var(--policy-muted);
  line-height: 1.82;
  margin: 0;
}

.policy-detail-card .policy-muted-para {
  margin-top: 12px;
}

.compact-title {
  max-width: 900px;
}

.policy-mini-grid,
.policy-info-grid,
.policy-faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.policy-mini-grid.four-grid,
.policy-info-grid,
.policy-faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-mini-grid article,
.policy-info-grid div,
.policy-faq-grid article {
  position: relative;
  min-height: 154px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 248, 235, .76);
  border: 1px solid rgba(15, 61, 52, .10);
  box-shadow: 0 14px 42px rgba(76, 45, 9, .06);
  overflow: hidden;
}

.policy-mini-grid article::after,
.policy-faq-grid article::after {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(215, 154, 30, .10);
}

.policy-mini-grid i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fffaf0;
  background: linear-gradient(135deg, var(--policy-forest), var(--policy-forest-2));
  box-shadow: 0 12px 26px rgba(15, 61, 52, .14);
}

.policy-mini-grid strong,
.policy-info-grid strong,
.policy-faq-grid h3 {
  display: block;
  position: relative;
  z-index: 1;
  color: var(--policy-forest);
  font-weight: 900;
}

.policy-mini-grid strong,
.policy-info-grid strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.policy-mini-grid span,
.policy-info-grid span,
.policy-faq-grid p {
  position: relative;
  z-index: 1;
  color: var(--policy-muted);
  line-height: 1.68;
  margin: 0;
}

.policy-info-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-info-grid div {
  min-height: 132px;
  background: rgba(255, 255, 255, .62);
}

.policy-info-grid div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--policy-honey), var(--policy-forest));
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.policy-check-list .fa-xmark {
  background: rgba(143, 55, 35, .13);
  color: #8f3723;
}

.policy-table-wrap {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 61, 52, .10);
  background: rgba(255, 248, 235, .68);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 61, 52, .08);
}

.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table th {
  width: 118px;
  color: var(--policy-forest);
  font-weight: 900;
  white-space: nowrap;
}

.policy-table td {
  color: var(--policy-muted);
  line-height: 1.65;
}

.policy-faq-section {
  scroll-margin-top: 132px;
}

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

.policy-faq-grid article {
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 255, 255, .70);
}

.policy-faq-grid h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.02;
}

.policy-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fffaf0;
  background: linear-gradient(135deg, var(--policy-forest), var(--policy-forest-2));
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 15px 34px rgba(15, 61, 52, .16);
}

.policy-inline-link:hover {
  color: #fffaf0;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .policy-mini-grid.four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {

  .policy-info-grid,
  .policy-faq-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .policy-wide-card {
    border-radius: 28px;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .policy-mini-grid.four-grid {
    grid-template-columns: 1fr;
  }

  .policy-section-title h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .policy-table th {
    padding-bottom: 4px;
  }

  .policy-table td {
    padding-top: 0;
    border-bottom: 1px solid rgba(15, 61, 52, .08);
  }
}

/* === End expanded reference-style policy content blocks === */

/* === Image based home sections: Uses + How We Proceed === */
.photo-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0;
}

.uses-photo-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 154, 30, .18), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(15, 61, 52, .18), transparent 30%),
    linear-gradient(135deg, #0f251f 0%, #1f150d 48%, #f2d391 100%);
}

.process-photo-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .18), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(122, 72, 14, .18), transparent 28%),
    linear-gradient(180deg, #fff0a8 0%, #f6ad08 42%, #f4a006 100%);
}

.photo-showcase::before,
.photo-showcase::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.photo-showcase::before {
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, .14) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, .14) 87.5%, rgba(255, 255, 255, .14)),
    linear-gradient(150deg, rgba(255, 255, 255, .14) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, .14) 87.5%, rgba(255, 255, 255, .14));
  background-size: 72px 42px;
}

.photo-showcase::after {
  width: 340px;
  height: 340px;
  right: -150px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255, 190, 52, .18);
  filter: blur(2px);
}

.photo-showcase .container {
  position: relative;
  z-index: 1;
}

.photo-showcase-card {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 44px);
  background: rgba(255, 250, 241, .88);
  border: 1px solid rgba(255, 255, 255, .46);
  box-shadow: 0 30px 90px rgba(8, 30, 24, .24);
}

.uses-photo-section .photo-showcase-card {
  max-width: 1240px;
}

.process-photo-section .photo-showcase-card {
  border-radius: clamp(22px, 3vw, 38px);
  box-shadow: 0 28px 78px rgba(113, 66, 9, .28);
}

.photo-showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .photo-showcase {
    padding: 34px 0;
  }

  .photo-showcase .container {
    width: min(100% - 22px, 1180px);
  }

  .photo-showcase-card {
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(8, 30, 24, .18);
  }
}

/* === End image based home sections === */

/* === MRP / sale price and cart quantity stepper update === */
.price,
.cart-price-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sell-price {
  color: #d59612;
  font-weight: 950;
}

.mrp-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(16, 62, 53, .62);
  font-size: .82em;
  font-weight: 800;
}

.mrp-price del,
.orders-product-row del {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(180, 77, 33, .55);
}

.save-price,
.summary-save,
.cart-line-save,
.saving-row strong {
  color: #0b704f;
  font-weight: 950;
}

.save-price {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(11, 112, 79, .10);
  font-size: .75rem;
  line-height: 1;
}

.summary-save,
.cart-line-save {
  display: block;
  font-size: .82rem;
  margin-top: 4px;
}

.size-filter-btn em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  color: #0b704f;
  font-size: .72rem;
  font-weight: 900;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(191, 138, 54, .35);
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.qty-stepper-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #0b4b3d;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.qty-stepper-btn:hover:not(:disabled) {
  background: rgba(213, 151, 30, .14);
}

.qty-stepper-btn:disabled {
  color: rgba(15, 61, 52, .26);
  cursor: not-allowed;
  opacity: .55;
}

.product-qty-stepper {
  flex: 0 0 auto;
  justify-content: space-between;
}

.qty-stepper .qty-input,
.cart-popup-controls .qty-stepper .qty-input {
  width: 42px;
  padding: 0;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  font-weight: 950;
  pointer-events: none;
  -moz-appearance: textfield;
}

.qty-stepper .qty-input::-webkit-outer-spin-button,
.qty-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-popup-summary .saving-row {
  color: #0b704f;
  background: rgba(11, 112, 79, .06);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 12px;
}

/* === End MRP / sale price and cart quantity stepper update === */

/* === Clean responsive product page gallery and text fix === */
.product-detail.compact-product-detail {
  padding: clamp(86px, 8vw, 108px) 0 clamp(28px, 5vw, 46px);
}


.compact-product-detail .product-detail-grid {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 658px) minmax(340px, 430px);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  justify-content: center;
}

.compact-product-detail .product-gallery {
  width: 100%;
  max-width: 658px;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 18px);
}

.compact-product-detail .product-gallery .detail-image,
.compact-product-detail .product-gallery .product-main-image {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  min-height: 485px;
  border-radius: 36px;
  background: linear-gradient(145deg, #fffdf8 0%, #fff7e8 100%);
  border: 1px solid rgba(90, 55, 23, .12);
  box-shadow: 0 22px 70px rgba(15, 61, 52, .10);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.compact-product-detail .product-gallery .detail-image img,
.compact-product-detail .product-gallery .product-main-image img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  transition: opacity .16s ease, transform .22s ease;
}

.compact-product-detail .product-gallery .detail-image img.is-switching,
.compact-product-detail .product-gallery .product-main-image img.is-switching {
  opacity: .25;
  transform: scale(.985);
}

.product-gallery-thumbs {
  order: -1;
  flex: 0 0 clamp(82px, 8vw, 100px);
  width: clamp(82px, 8vw, 100px);
  height: 485px;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 2px 2px 0;
  scroll-snap-type: y mandatory;
}

.product-gallery-thumbs::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 61, 52, .20);
}

.product-gallery-thumb {
  flex: 0 0 clamp(82px, 8vw, 100px);
  width: clamp(82px, 8vw, 100px);
  height: clamp(82px, 8vw, 100px);
  border-radius: 22px;
  padding: 6px;
  background: #fffdf8;
  border: 2px solid rgba(15, 61, 52, .08);
  box-shadow: 0 12px 26px rgba(15, 61, 52, .06);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
  transform: translateY(-2px);
  border-color: var(--clay);
  box-shadow: 0 14px 30px rgba(215, 154, 30, .20);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: #fffaf1;
}

.compact-product-detail .detail-info {
  width: 100%;
  max-width: 430px;
  min-height: auto;
  justify-self: start;
  justify-content: flex-start;
  overflow: hidden;
}

.compact-product-detail .detail-info h1,
.compact-product-detail .detail-info .price,
.compact-product-detail .detail-info .product-size-filter,
.compact-product-detail .detail-info .product-detail-actions {
  max-width: 100%;
}

.compact-product-detail .detail-info h1 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.compact-product-detail .detail-info p,
.compact-product-detail .detail-info .product-description {
  display: block;
  max-width: 100%;
  max-height: none;
  overflow: visible;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .compact-product-detail .product-detail-grid {
    max-width: 1040px;
    grid-template-columns: minmax(0, 610px) minmax(330px, 402px);
  }

  .compact-product-detail .detail-info {
    max-width: 402px;
  }
}

@media (max-width: 1040px) {
  .product-detail.compact-product-detail {
    padding-top: clamp(84px, 11vw, 104px);
  }

  .compact-product-detail .product-detail-grid {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .compact-product-detail .product-gallery {
    max-width: 720px;
    margin-inline: auto;
  }

  .compact-product-detail .product-gallery .detail-image,
  .compact-product-detail .product-gallery .product-main-image {
    height: clamp(430px, 78vw, 620px);
    min-height: 430px;
  }

  .product-gallery-thumbs {
    max-height: clamp(430px, 78vw, 620px);
  }

  .compact-product-detail .detail-info {
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .product-detail.compact-product-detail>.container {
    width: min(calc(100% - 24px), 560px);
  }

  .compact-product-detail .product-detail-grid {
    max-width: 560px;
    gap: 16px;
  }

  .compact-product-detail .product-gallery {
    flex-direction: column;
    gap: 12px;
  }

  .compact-product-detail .product-gallery .detail-image,
  .compact-product-detail .product-gallery .product-main-image {
    width: 100%;
    height: clamp(320px, 112vw, 470px);
    min-height: 320px;
    border-radius: 28px;
  }

  .product-gallery-thumbs {
    order: 2;
    flex: none;
    width: 100%;
    max-height: 85px;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 8px;
    scroll-snap-type: x mandatory;
  }

  .product-gallery-thumb {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    border-radius: 18px;
  }

  .product-gallery-thumb img {
    border-radius: 12px;
  }

  .compact-product-detail .detail-info {
    padding: 20px;
    border-radius: 22px;
  }

  .compact-product-detail .detail-info h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .product-detail .size-filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail .size-filter-btn {
    width: 100%;
    padding-inline: 10px;
  }
}

@media (max-width: 520px) {
  .product-detail.compact-product-detail {
    padding-top: 86px;
  }

  .product-detail.compact-product-detail>.container {
    width: min(calc(100% - 18px), 420px);
  }

  .compact-product-detail .product-gallery .detail-image,
  .compact-product-detail .product-gallery .product-main-image {
    height: clamp(292px, 114vw, 420px);
    min-height: 292px;
    border-radius: 24px;
  }

  .product-gallery-thumb {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .product-detail .size-filter-tabs {
    grid-template-columns: 1fr;
  }

  .product-detail-actions,
  .inline-cart-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-qty-stepper,
  .product-detail-actions .product-btn,
  .product-detail-actions .wishlist-detail-btn {
    width: 100%;
  }
}

/* === End clean responsive product page gallery and text fix === */

/* === Rajmudra-style login/signup rebuilt for Divy Bee theme === */
.auth-raj-page {
  min-height: 100vh;
  padding: 138px 18px 76px !important;
  background: #FAF6ED !important;
  position: relative;
  overflow: hidden;
}

.auth-raj-page::before,
.auth-raj-page::after {
  content: none !important;
}

.auth-raj-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .82fr);
  gap: 22px;
  align-items: stretch;
}

.auth-raj-brand-panel,
.auth-raj-card {
  border: 1px solid rgba(122, 72, 18, .14);
  box-shadow: 0 24px 70px rgba(90, 49, 9, .13);
}

.auth-raj-brand-panel {
  min-height: 640px;
  border-radius: 34px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(64, 31, 5, .94), rgba(145, 85, 10, .78)),
    url('../../uploads/login.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.auth-raj-brand-panel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 229, 165, .24);
  border-radius: 26px;
  pointer-events: none;
}

.auth-raj-brand-panel::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  right: -72px;
  top: -70px;
  background: rgba(255, 201, 89, .18);
  filter: blur(2px);
}

.auth-raj-logo {
  position: absolute;
  top: 34px;
  left: 38px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .90);
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .16);
  z-index: 2;
}

.auth-raj-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-raj-kicker,
.auth-raj-small,
.auth-raj-secure {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-raj-kicker {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #FFE8B0;
  padding: 10px 14px;
  font-size: .72rem;
  backdrop-filter: blur(12px);
  margin-bottom: 20px;
}

.auth-raj-brand-panel h1 {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: .88;
  letter-spacing: -.04em;
  max-width: 620px;
  color: #fff;
}

.auth-raj-brand-panel p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: rgba(255, 247, 225, .82);
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.auth-raj-feature-grid {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.auth-raj-feature-grid div {
  border-radius: 18px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 8px;
  min-height: 88px;
  backdrop-filter: blur(10px);
}

.auth-raj-feature-grid i {
  color: #FFD166;
  font-size: 1.15rem;
}

.auth-raj-feature-grid span {
  color: #fff4d8;
  font-size: .82rem;
  font-weight: 800;
}

.auth-raj-card {
  border-radius: 34px;
  background: rgba(255, 255, 255, .94) !important;
  padding: 34px !important;
  align-self: center;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.auth-raj-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #7A3F09, #D79A1E, #F2C45D);
}

.auth-raj-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 6px;
  background: #F7E8CA;
  border: 1px solid rgba(122, 72, 18, .12);
  border-radius: 999px;
  margin-bottom: 24px;
}

.auth-raj-tabs a {
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6F4A20;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.auth-raj-tabs a.active {
  background: #6B3508;
  color: #FFF6DC;
  box-shadow: 0 12px 28px rgba(107, 53, 8, .22);
}

.auth-raj-card-head {
  margin-bottom: 24px;
}

.auth-raj-small {
  background: rgba(215, 154, 30, .15);
  color: #8A5509;
  padding: 9px 12px;
  font-size: .68rem;
  margin-bottom: 14px;
}

.auth-raj-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  line-height: .95;
  color: #4E2607;
  margin: 0 0 10px;
}

.auth-raj-card-head p {
  color: #765B36;
  font-size: .98rem;
  margin: 0;
}

.auth-raj-secure {
  margin-top: 14px;
  gap: 8px;
  padding: 10px 12px;
  background: #FFF6DF;
  border: 1px solid rgba(122, 72, 18, .12);
  color: #5B330C;
  font-size: .72rem;
}

.auth-raj-form {
  display: grid;
  gap: 12px !important;
}

.auth-raj-form label {
  color: #4E2607 !important;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.auth-raj-form label em {
  color: #A07844;
  font-style: normal;
  font-weight: 700;
}

.auth-raj-input-wrap {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFDF7;
  border: 1px solid rgba(122, 72, 18, .16);
  border-radius: 17px;
  padding: 0 14px;
  transition: .22s ease;
}

.auth-raj-input-wrap:focus-within {
  border-color: rgba(215, 154, 30, .68);
  box-shadow: 0 0 0 4px rgba(215, 154, 30, .13);
  background: #fff;
}

.auth-raj-input-wrap>i {
  flex: 0 0 auto;
  color: #B77912;
  width: 19px;
  text-align: center;
}

.auth-raj-input-wrap input,
.auth-raj-form input {
  width: 100%;
  min-height: 52px;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #4E2607;
  font: inherit;
}

.auth-raj-input-wrap input::placeholder {
  color: rgba(91, 51, 12, .48);
}

.auth-raj-input-wrap .password-toggle-btn,
.auth-raj-input-wrap .signup-toggle-password {
  position: static !important;
  transform: none !important;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(215, 154, 30, .14);
  color: #6B3508;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auth-raj-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #765B36;
  font-size: .86rem;
  margin: 2px 0 4px;
}

.auth-raj-check {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
  margin: 0;
  color: #765B36 !important;
  font-size: .86rem !important;
}

.auth-raj-check input {
  width: 16px !important;
  min-height: 16px !important;
  accent-color: #D79A1E;
}

.auth-raj-help {
  color: #8A5509;
  font-weight: 800;
}

.auth-raj-submit.product-btn,
.auth-raj-submit {
  min-height: 54px;
  border-radius: 17px;
  margin-top: 8px !important;
  background: linear-gradient(135deg, #6B3508, #A7650E 48%, #D79A1E) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  box-shadow: 0 16px 32px rgba(107, 53, 8, .22);
  font-weight: 900;
  letter-spacing: .04em;
}

.auth-raj-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(107, 53, 8, .26);
}

.auth-raj-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #A07844;
  font-weight: 900;
  font-size: .78rem;
  margin: 24px 0 18px;
}

.auth-raj-divider::before,
.auth-raj-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(122, 72, 18, .14);
}

.auth-raj-switch {
  text-align: center;
  color: #765B36;
  font-weight: 700;
}

.auth-raj-switch a {
  color: #8A4A08;
  font-weight: 950;
  border-bottom: 1px solid rgba(138, 74, 8, .35);
}

.auth-raj-notice.notice {
  position: static;
  margin: 0 0 18px;
  border-radius: 16px;
}

.auth-raj-step-rail {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.auth-raj-step-rail div {
  min-height: 96px;
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  align-content: center;
  gap: 8px;
  color: rgba(255, 246, 220, .68);
}

.auth-raj-step-rail b,
.auth-raj-progress span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.auth-raj-step-rail .active,
.auth-raj-step-rail .done {
  background: rgba(255, 209, 102, .20);
  border-color: rgba(255, 209, 102, .38);
  color: #fff;
}

.auth-raj-step-rail .active b,
.auth-raj-step-rail .done b,
.auth-raj-progress span.active,
.auth-raj-progress span.done {
  background: #FFD166;
  color: #4E2607;
}

.auth-raj-progress.mobile-only-progress {
  display: none;
}

.auth-raj-upload.image-upload-box {
  min-height: 58px;
  padding: 10px 12px !important;
  border-radius: 17px !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
  background: #FFFDF7;
  border: 1px dashed rgba(122, 72, 18, .24);
}

.auth-raj-upload .upload-icon {
  display: inline-flex !important;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(215, 154, 30, .14);
  color: #8A5509;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.auth-raj-upload .signup-upload-copy {
  display: grid;
  min-width: 130px;
  height: auto;
  gap: 1px;
  padding: 0 8px;
  color: #4E2607;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.auth-raj-upload .upload-title {
  font-size: .82rem;
  font-weight: 950;
  white-space: nowrap;
}

.auth-raj-upload .upload-note {
  display: block;
  font-size: .68rem;
  color: #A07844;
}

.auth-raj-upload .upload-file-name {
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  color: #765B36;
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-raj-secondary-form {
  margin-top: 10px;
}

.auth-raj-light,
.auth-raj-text-btn {
  background: #FFF6DF !important;
  color: #6B3508 !important;
  border: 1px solid rgba(122, 72, 18, .15) !important;
  box-shadow: none !important;
}

.auth-raj-inline-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-raj-text-btn {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.auth-raj-page .field-hint {
  display: block;
  margin-top: -3px;
  color: #8B7552;
  font-size: .78rem;
}

.auth-raj-page .field-hint.ok {
  color: #1C7A3F;
  background: rgba(28, 122, 63, .08);
  padding: 9px 11px;
  border-radius: 12px;
  margin: 0;
}

@media (max-width: 980px) {
  .auth-raj-page {
    padding-top: 122px !important;
  }

  .auth-raj-wrap {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .auth-raj-brand-panel {
    min-height: 330px;
    padding: 34px;
  }

  .auth-raj-brand-panel h1 {
    font-size: clamp(2.65rem, 9vw, 4rem);
  }

  .auth-raj-feature-grid,
  .auth-raj-step-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .auth-raj-page {
    padding: 104px 12px 46px !important;
  }

  .auth-raj-brand-panel {
    display: none;
  }

  .auth-raj-card {
    padding: 24px 18px !important;
    border-radius: 26px;
  }

  .auth-raj-tabs a {
    min-height: 42px;
    font-size: .68rem;
    letter-spacing: .06em;
  }

  .auth-raj-card-head h2 {
    font-size: 2.35rem;
  }

  .auth-raj-progress.mobile-only-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 18px;
  }

  .auth-raj-progress span {
    justify-self: center;
    background: #F7E8CA;
    color: #8A5509;
    font-weight: 900;
  }

  .auth-raj-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .auth-raj-inline-actions {
    grid-template-columns: 1fr;
  }

  .auth-raj-upload .signup-upload-copy {
    min-width: 105px;
  }

  .auth-raj-upload .upload-note {
    display: none;
  }
}

@media (max-width: 390px) {
  .auth-raj-card {
    padding: 22px 14px !important;
  }

  .auth-raj-tabs {
    padding: 4px;
  }

  .auth-raj-upload .upload-icon {
    display: none !important;
  }
}


/* =========================================================
   FINAL COMPLETE UPDATE - Warm honey theme + premium process
   Base file: divy-honey-shop(3).zip auth-updated version.
   ========================================================= */
:root {
  --ink: #0f3d34;
  --paper: #FFF8E8;
  --paper-2: #FFF2CF;
  --sand: #F7E4B8;
  --clay: #D88916;
  --plum: #0f3d34;
  --acid: #E6A12A;
  --gold: #E6A12A;
  --muted: #765C45;
  --line: rgba(75, 42, 18, .14);
  --glass: rgba(255, 248, 232, .82);
  --shadow: 0 24px 70px rgba(75, 42, 18, .13);
}

html,
body {
  background: #FFF8E8 !important;
  color: #0f3d34 !important;
}

body::before,
body::after {
  display: none !important;
  content: none !important;
}

main,
.shop-section,
.category,
.story,
.blog-section,
.faq-section,
.photo-showcase,
.ap-section,
.auth-raj-page {
  background-image: none !important;
}

hr {
  border: 0 !important;
  height: 1px !important;
  background: rgba(75, 42, 18, .10) !important;
}

.section-title p,
.why-kicker,
.blog-title-ref p,
.faq-title-ref p,
.cat,
.site-blog-date,
.auth-raj-card-head p {
  color: #D88916 !important;
}

.section-title h2,
.display-title,
.story h2,
.faq-content h2,
.site-blog-content h3,
.product-info h3,
.ap-title,
.auth-raj-card-head h2 {
  color: #0f3d34 !important;
}

p,
.faq-lead,
.site-blog-content p,
.story p,
.why-item p,
.ap-subtitle,
.auth-raj-card-head span {
  color: #765C45 !important;
}

/* Warm hero overlay keeps image slider readable */
.hero {
  background: #0f3d34 !important;
}

.hero-quote {
  color: rgba(255, 248, 232, .88) !important;
}

.hero-buttons a,
.btn,
.product-btn,
.ap-btn,
.auth-raj-btn,
button.product-btn {
  background: #0f3d34 !important;
  color: #FFF8E8 !important;
  border-color: #0f3d34 !important;
  box-shadow: 0 14px 34px rgba(75, 42, 18, .16) !important;
}

.hero-buttons a:hover,
.btn:hover,
.product-btn:hover,
.site-blog-link:hover,
.ap-btn:hover,
.auth-raj-btn:hover,
button.product-btn:hover {
  background: #E6A12A !important;
  color: #0f3d34 !important;
  border-color: #E6A12A !important;
}

.hero-buttons a:last-child {
  background: rgba(255, 248, 232, .12) !important;
  color: #FFF8E8 !important;
  border-color: rgba(255, 248, 232, .42) !important;
}

.hero-buttons a:last-child:hover {
  background: #FFF8E8 !important;
  color: #0f3d34 !important;
}

/* Cards and sections aligned with simple single background */
/* .product-card, .premium-card, .category-card, .site-blog-card,.photo-showcase-card, .ap-promise-card, .ap-license-card, .ap-pdf-card, .auth-raj-card {
  background: #FFFFFF !important;
  border-color: rgba(75,42,18,.12) !important;
  box-shadow: 0 18px 52px rgba(75,42,18,.10) !important;
} */
.product-image img {
  object-fit: contain !important;
}

.wishlist-btn,
.tag,
.dv-count {
  background: #E6A12A !important;
  color: #0f3d34 !important;
  border-color: rgba(75, 42, 18, .10) !important;
}

.mrp-price,
.muted,
.field-hint {
  color: #8A725E !important;
}

/* Premium animated How We Proceed - photos removed */
.dv-proceed-premium {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  padding: clamp(72px, 8vw, 112px) 0 !important;
  background: #FFF8E8 !important;
  background-image: none !important;
  color: #0f3d34 !important;
}

.dv-proceed-premium::before,
.dv-proceed-premium::after {
  display: none !important;
  content: none !important;
}

.dv-proceed-premium .container,
.dv-proceed-premium .ap-container {
  position: relative !important;
  z-index: 1 !important;
}

.dv-proceed-head {
  max-width: 900px !important;
  margin: 0 auto clamp(34px, 5vw, 58px) !important;
  text-align: center !important;
}

.dv-proceed-head p,
.dv-proceed-head .ap-kicker {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 0 0 14px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(75, 42, 18, .13) !important;
  color: #D88916 !important;
  box-shadow: 0 12px 32px rgba(75, 42, 18, .08) !important;
  font-weight: 900 !important;
}

.dv-proceed-head p::before {
  content: '✦' !important;
  color: #E6A12A !important;
}

.dv-proceed-head h2 {
  max-width: 820px !important;
  margin: 0 auto !important;
  color: #0f3d34 !important;
  line-height: .98 !important;
  font-size: clamp(2.4rem, 5vw, 5rem) !important;
}

.dv-proceed-head>span,
.dv-proceed-head .ap-subtitle {
  display: block !important;
  max-width: 690px !important;
  margin: 18px auto 0 !important;
  color: #765C45 !important;
  font-size: clamp(.96rem, 1.6vw, 1.08rem) !important;
  font-weight: 700 !important;
  line-height: 1.65 !important;
}

.dv-proceed-stage {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.45vw, 18px) !important;
  align-items: stretch !important;
  min-height: 380px !important;
  padding: 28px 0 4px !important;
}

.dv-proceed-line {
  position: absolute !important;
  left: 6% !important;
  right: 6% !important;
  top: 76px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: rgba(75, 42, 18, .12) !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

.dv-proceed-line span {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: linear-gradient(90deg, #D88916, #E6A12A, #0f3d34) !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform 1.45s cubic-bezier(.19, 1, .22, 1) .18s !important;
}

.dv-proceed-step {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  gap: 18px !important;
  min-width: 0 !important;
  opacity: 0 !important;
  transform: translateY(54px) scale(.94) !important;
  transition: opacity .72s ease, transform .86s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 115ms) !important;
}

.dv-proceed-step:nth-child(even) {
  padding-top: 44px !important;
}

.dv-step-orb {
  width: 82px !important;
  height: 82px !important;
  margin: 0 auto !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 2px solid rgba(230, 161, 42, .42) !important;
  color: #0f3d34 !important;
  box-shadow: 0 18px 45px rgba(75, 42, 18, .13), inset 0 0 0 10px #FFF2CF !important;
  transform: scale(.82) rotate(-8deg) !important;
  transition: transform .88s cubic-bezier(.19, 1, .22, 1), box-shadow .88s cubic-bezier(.19, 1, .22, 1), border-color .88s ease !important;
  transition-delay: calc(var(--step-index) * 115ms + 120ms) !important;
}

.dv-step-orb i {
  font-size: 27px !important;
  color: #D88916 !important;
}

.dv-step-card {
  position: relative !important;
  height: 100% !important;
  min-height: 230px !important;
  padding: 26px 18px 22px !important;
  border-radius: 28px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(75, 42, 18, .13) !important;
  box-shadow: 0 18px 45px rgba(75, 42, 18, .10) !important;
  overflow: hidden !important;
}

.dv-step-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 5px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #E6A12A, #D88916) !important;
  transform: scaleY(0) !important;
  transform-origin: top center !important;
  transition: transform .72s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 115ms + 360ms) !important;
}

.dv-step-count {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  margin-bottom: 16px !important;
  border-radius: 16px !important;
  background: #FFF2CF !important;
  color: #D88916 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.dv-step-card h3 {
  margin: 0 0 10px !important;
  color: #0f3d34 !important;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem) !important;
  line-height: 1.15 !important;
}

.dv-step-card p {
  margin: 0 !important;
  color: #765C45 !important;
  font-size: .91rem !important;
  font-weight: 650 !important;
  line-height: 1.58 !important;
}

.dv-proceed-visible .dv-proceed-line span {
  transform: scaleX(1) !important;
}

.dv-proceed-visible .dv-proceed-step {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.dv-proceed-visible .dv-step-orb {
  transform: scale(1) rotate(0deg) !important;
  border-color: rgba(216, 137, 22, .72) !important;
  box-shadow: 0 22px 55px rgba(75, 42, 18, .16), 0 0 0 8px rgba(230, 161, 42, .10), inset 0 0 0 10px #FFF2CF !important;
}

.dv-proceed-visible .dv-step-card::before {
  transform: scaleY(1) !important;
}

.dv-proceed-visible .dv-step-card {
  animation: dvProceedFloat 4.8s ease-in-out infinite !important;
  animation-delay: calc(var(--step-index) * 230ms + 900ms) !important;
}

.dv-proceed-step:hover .dv-step-card {
  transform: translateY(-8px) !important;
  box-shadow: 0 26px 70px rgba(75, 42, 18, .14) !important;
}

.dv-proceed-step:hover .dv-step-orb {
  transform: translateY(-6px) scale(1.04) !important;
}

@keyframes dvProceedFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1280px) {
  .dv-proceed-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .dv-proceed-line {
    display: none !important;
  }

  .dv-proceed-step:nth-child(even) {
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .dv-proceed-premium {
    padding: 62px 0 !important;
  }

  .dv-proceed-head {
    margin-bottom: 28px !important;
  }

  .dv-proceed-head h2 {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
  }

  .dv-proceed-stage {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .dv-proceed-step {
    grid-template-columns: 68px 1fr !important;
    grid-template-rows: auto !important;
    gap: 14px !important;
    align-items: stretch !important;
    transform: translateX(-34px) scale(.98) !important;
  }

  .dv-proceed-step:nth-child(even) {
    transform: translateX(34px) scale(.98) !important;
  }

  .dv-proceed-visible .dv-proceed-step,
  .dv-proceed-visible .dv-proceed-step:nth-child(even) {
    transform: translateX(0) scale(1) !important;
  }

  .dv-step-orb {
    width: 62px !important;
    height: 62px !important;
    margin-top: 8px !important;
    border-radius: 22px !important;
  }

  .dv-step-orb i {
    font-size: 21px !important;
  }

  .dv-step-card {
    min-height: 0 !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  .dv-step-count {
    width: 42px !important;
    height: 42px !important;
    margin-bottom: 12px !important;
    border-radius: 14px !important;
    font-size: 1.35rem !important;
  }
}

@media (max-width: 430px) {
  .dv-proceed-step {
    grid-template-columns: 58px 1fr !important;
    gap: 10px !important;
  }

  .dv-step-orb {
    width: 52px !important;
    height: 52px !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 32px rgba(75, 42, 18, .12), inset 0 0 0 6px #FFF2CF !important;
  }

  .dv-step-card h3 {
    font-size: 1.08rem !important;
  }

  .dv-step-card p {
    font-size: .9rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dv-proceed-step,
  .dv-step-orb,
  .dv-step-card,
  .dv-step-card::before,
  .dv-proceed-line span {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Footer final warm tone */
footer.site-footer {
  background: #0f3d34 !important;
  color: #FFF8E8 !important;
  background-image: none !important;
}

footer.site-footer p,
footer.site-footer a,
footer.site-footer span {
  color: rgba(255, 248, 232, .82) !important;
}

footer.site-footer h3,
footer.site-footer strong,
footer.site-footer .footer-brand {
  color: #FFF8E8 !important;
}

footer.site-footer a:hover {
  color: #E6A12A !important;
}


/* =========================================================
   FINAL ROAD-STYLE HOW WE PROCEED UPDATE
   Same structure as the old process image, but fully animated.
   No process photos are used in this section.
   ========================================================= */
.dv-proceed-premium {
  background: #FFF8E8 !important;
  padding: clamp(70px, 7vw, 110px) 0 !important;
  overflow: hidden !important;
}

.dv-proceed-head {
  max-width: 920px !important;
  margin: 0 auto clamp(38px, 5vw, 66px) !important;
  text-align: center !important;
}

.dv-proceed-head h2,
.dv-proceed-head .ap-title {
  color: #0f3d34 !important;
  letter-spacing: -0.055em !important;
}

.dv-proceed-head>span,
.dv-proceed-head .ap-subtitle {
  color: #75573C !important;
  max-width: 720px !important;
}

.dv-road-proceed-stage,
.dv-proceed-stage.dv-road-proceed-stage {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 16px 0 28px !important;
  min-height: 0 !important;
}

.dv-road-proceed-stage::before {
  content: '' !important;
  position: absolute !important;
  top: 28px !important;
  bottom: 34px !important;
  left: 50% !important;
  width: 18px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .18), transparent 28%, transparent 72%, rgba(0, 0, 0, .08)),
    repeating-linear-gradient(to bottom, #7A4A1D 0 34px, #5A3217 34px 68px) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25), 0 18px 44px rgba(75, 42, 18, .15) !important;
  z-index: 0 !important;
}

.dv-road-proceed-stage::after {
  content: '' !important;
  position: absolute !important;
  top: 48px !important;
  bottom: 54px !important;
  left: 50% !important;
  width: 3px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: repeating-linear-gradient(to bottom, rgba(255, 248, 232, .92) 0 20px, transparent 20px 38px) !important;
  opacity: .92 !important;
  z-index: 1 !important;
}

.dv-road-proceed-stage .dv-proceed-line {
  display: block !important;
  position: absolute !important;
  top: 28px !important;
  bottom: 34px !important;
  left: 50% !important;
  right: auto !important;
  width: 18px !important;
  height: auto !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: rgba(75, 42, 18, .10) !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

.dv-road-proceed-stage .dv-proceed-line span {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  transform: scaleY(0) !important;
  transform-origin: top center !important;
  border-radius: inherit !important;
  background: linear-gradient(180deg, #F5C057 0%, #D88916 42%, #7A4A1D 100%) !important;
  transition: transform 1.65s cubic-bezier(.19, 1, .22, 1) .18s !important;
}

.dv-proceed-visible .dv-road-proceed-stage .dv-proceed-line span,
.dv-proceed-visible .dv-proceed-line span {
  transform: scaleY(1) !important;
}

.dv-road-proceed-stage .dv-proceed-step {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(18px, 3.2vw, 38px) !important;
  min-height: 174px !important;
  margin: -2px 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  transform: translateY(42px) scale(.98) !important;
  transition: opacity .7s ease, transform .85s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 140ms) !important;
}

.dv-proceed-visible .dv-road-proceed-stage .dv-proceed-step {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.dv-road-proceed-stage .dv-step-orb {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 82px !important;
  height: 82px !important;
  justify-self: center !important;
  align-self: center !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: radial-gradient(circle at 30% 25%, #FFF7DB 0 20%, #F6C761 21% 54%, #D88916 55% 100%) !important;
  border: 8px solid #FFF8E8 !important;
  box-shadow: 0 0 0 2px rgba(75, 42, 18, .18), 0 24px 56px rgba(75, 42, 18, .20), inset 0 0 0 6px rgba(255, 255, 255, .24) !important;
  color: #0f3d34 !important;
  transform: scale(.72) rotate(-12deg) !important;
  transition: transform .78s cubic-bezier(.19, 1, .22, 1), box-shadow .78s ease !important;
  transition-delay: calc(var(--step-index) * 140ms + 130ms) !important;
}

.dv-proceed-visible .dv-road-proceed-stage .dv-step-orb {
  transform: scale(1) rotate(0) !important;
  animation: dvRoadPulse 2.7s ease-in-out infinite !important;
  animation-delay: calc(var(--step-index) * 240ms + 800ms) !important;
}

.dv-road-proceed-stage .dv-step-orb i {
  font-size: 30px !important;
  line-height: 1 !important;
}

.dv-road-proceed-stage .dv-step-card {
  position: relative !important;
  width: min(100%, 430px) !important;
  min-height: 0 !important;
  padding: clamp(24px, 3vw, 34px) !important;
  border-radius: 30px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(75, 42, 18, .12) !important;
  color: #0f3d34 !important;
  box-shadow: 0 22px 60px rgba(75, 42, 18, .10) !important;
  overflow: visible !important;
  transform: translateX(-34px) !important;
  transition: transform .85s cubic-bezier(.19, 1, .22, 1), box-shadow .3s ease !important;
  transition-delay: calc(var(--step-index) * 140ms + 80ms) !important;
}

.dv-proceed-visible .dv-road-proceed-stage .dv-step-card {
  transform: translateX(0) !important;
}

.dv-road-proceed-stage .dv-proceed-step:nth-of-type(odd) .dv-step-card {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  text-align: right !important;
}

.dv-road-proceed-stage .dv-proceed-step:nth-of-type(even) .dv-step-card {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  text-align: left !important;
  transform: translateX(34px) !important;
}

.dv-proceed-visible .dv-road-proceed-stage .dv-proceed-step:nth-of-type(even) .dv-step-card {
  transform: translateX(0) !important;
}

.dv-road-proceed-stage .dv-step-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: linear-gradient(135deg, rgba(246, 199, 97, .20), transparent 46%, rgba(216, 137, 22, .10)) !important;
  transform: none !important;
  pointer-events: none !important;
}

.dv-road-proceed-stage .dv-step-card::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  width: clamp(26px, 3vw, 38px) !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #D88916, rgba(216, 137, 22, .22)) !important;
  transform: translateY(-50%) scaleX(0) !important;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 140ms + 320ms) !important;
}

.dv-road-proceed-stage .dv-proceed-step:nth-of-type(odd) .dv-step-card::after {
  right: calc(-1 * clamp(26px, 3vw, 38px)) !important;
  transform-origin: left center !important;
}

.dv-road-proceed-stage .dv-proceed-step:nth-of-type(even) .dv-step-card::after {
  left: calc(-1 * clamp(26px, 3vw, 38px)) !important;
  transform-origin: right center !important;
  background: linear-gradient(90deg, rgba(216, 137, 22, .22), #D88916) !important;
}

.dv-proceed-visible .dv-road-proceed-stage .dv-step-card::after {
  transform: translateY(-50%) scaleX(1) !important;
}

.dv-road-proceed-stage .dv-step-count {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  margin: 0 0 15px !important;
  border-radius: 18px !important;
  background: #FFF2CF !important;
  color: #D88916 !important;
  font-size: 1.45rem !important;
  font-weight: 1000 !important;
  letter-spacing: -.06em !important;
  box-shadow: inset 0 0 0 1px rgba(216, 137, 22, .18) !important;
}

.dv-road-proceed-stage .dv-step-card h3 {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 0 10px !important;
  color: #0f3d34 !important;
  font-size: clamp(1.28rem, 2.2vw, 1.9rem) !important;
  line-height: 1.08 !important;
}

.dv-road-proceed-stage .dv-step-card p {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
  color: #73573D !important;
  font-size: .98rem !important;
  line-height: 1.68 !important;
  font-weight: 700 !important;
}

.dv-road-proceed-stage .dv-proceed-step:hover .dv-step-card {
  transform: translateY(-7px) !important;
  box-shadow: 0 28px 75px rgba(75, 42, 18, .16) !important;
}

.dv-road-proceed-stage .dv-proceed-step:hover .dv-step-orb {
  box-shadow: 0 0 0 2px rgba(216, 137, 22, .32), 0 28px 70px rgba(75, 42, 18, .24), inset 0 0 0 6px rgba(255, 255, 255, .30) !important;
}

@keyframes dvRoadPulse {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(75, 42, 18, .18), 0 24px 56px rgba(75, 42, 18, .18), 0 0 0 0 rgba(216, 137, 22, .18), inset 0 0 0 6px rgba(255, 255, 255, .24);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(75, 42, 18, .18), 0 24px 56px rgba(75, 42, 18, .18), 0 0 0 16px rgba(216, 137, 22, 0), inset 0 0 0 6px rgba(255, 255, 255, .24);
  }
}

@media (max-width: 900px) {

  .dv-road-proceed-stage,
  .dv-proceed-stage.dv-road-proceed-stage {
    max-width: 680px !important;
    padding-left: 0 !important;
  }

  .dv-road-proceed-stage::before,
  .dv-road-proceed-stage::after,
  .dv-road-proceed-stage .dv-proceed-line {
    left: 39px !important;
    transform: none !important;
  }

  .dv-road-proceed-stage .dv-proceed-step {
    grid-template-columns: 82px minmax(0, 1fr) !important;
    gap: 18px !important;
    min-height: 0 !important;
    padding: 0 0 30px !important;
    align-items: start !important;
  }

  .dv-road-proceed-stage .dv-step-orb {
    grid-column: 1 !important;
    width: 70px !important;
    height: 70px !important;
    border-width: 7px !important;
    margin-top: 8px !important;
  }

  .dv-road-proceed-stage .dv-step-orb i {
    font-size: 25px !important;
  }

  .dv-road-proceed-stage .dv-proceed-step:nth-of-type(odd) .dv-step-card,
  .dv-road-proceed-stage .dv-proceed-step:nth-of-type(even) .dv-step-card {
    grid-column: 2 !important;
    justify-self: stretch !important;
    width: 100% !important;
    text-align: left !important;
    transform: translateX(24px) !important;
  }

  .dv-proceed-visible .dv-road-proceed-stage .dv-proceed-step:nth-of-type(odd) .dv-step-card,
  .dv-proceed-visible .dv-road-proceed-stage .dv-proceed-step:nth-of-type(even) .dv-step-card {
    transform: translateX(0) !important;
  }

  .dv-road-proceed-stage .dv-step-card::after {
    left: -22px !important;
    right: auto !important;
    width: 22px !important;
    background: linear-gradient(90deg, rgba(216, 137, 22, .22), #D88916) !important;
    transform-origin: right center !important;
  }
}

@media (max-width: 520px) {
  .dv-proceed-premium {
    padding: 56px 0 !important;
  }

  .dv-proceed-head {
    margin-bottom: 30px !important;
  }

  .dv-proceed-head h2,
  .dv-proceed-head .ap-title {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 1 !important;
  }

  .dv-road-proceed-stage::before,
  .dv-road-proceed-stage .dv-proceed-line {
    width: 14px !important;
    left: 29px !important;
  }

  .dv-road-proceed-stage::after {
    left: 36px !important;
  }

  .dv-road-proceed-stage .dv-proceed-step {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding-bottom: 22px !important;
  }

  .dv-road-proceed-stage .dv-step-orb {
    width: 58px !important;
    height: 58px !important;
    border-width: 5px !important;
  }

  .dv-road-proceed-stage .dv-step-orb i {
    font-size: 20px !important;
  }

  .dv-road-proceed-stage .dv-step-card {
    border-radius: 24px !important;
    padding: 20px 17px !important;
  }

  .dv-road-proceed-stage .dv-step-count {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    font-size: 1.22rem !important;
    margin-bottom: 12px !important;
  }

  .dv-road-proceed-stage .dv-step-card h3 {
    font-size: 1.18rem !important;
  }

  .dv-road-proceed-stage .dv-step-card p {
    font-size: .9rem !important;
    line-height: 1.58 !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dv-road-proceed-stage .dv-proceed-line span,
  .dv-road-proceed-stage .dv-proceed-step,
  .dv-road-proceed-stage .dv-step-orb,
  .dv-road-proceed-stage .dv-step-card,
  .dv-road-proceed-stage .dv-step-card::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   EXACT PHOTO-STYLE HOW WE PROCEED ROAD
   Matches the uploaded process image: yellow canvas, black dashed bee trail,
   hex number badges + title/description. No process image is used.
   ========================================================= */
.dv-photo-road-proceed.dv-proceed-premium {
  background: #F8BF2F !important;
  background-image: none !important;
  padding: clamp(64px, 7vw, 104px) 0 !important;
  color: #2D1B0D !important;
  overflow: hidden !important;
}

.dv-photo-road-proceed .dv-proceed-head {
  margin-bottom: clamp(20px, 3vw, 34px) !important;
}

.dv-photo-road-proceed .dv-proceed-head p,
.dv-photo-road-proceed .dv-proceed-head .ap-kicker {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 45px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  background: #0f3d34 !important;
  color: #FFE19B !important;
  border: 2px solid rgba(255, 226, 151, .35) !important;
  box-shadow: 0 12px 32px rgba(75, 42, 18, .18), inset 0 0 0 1px rgba(255, 255, 255, .10) !important;
  font-weight: 1000 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
}

.dv-photo-road-proceed .dv-proceed-head p::before,
.dv-photo-road-proceed .dv-proceed-head .ap-kicker::before {
  content: '💧' !important;
  color: #F8BF2F !important;
  font-size: 1.1em !important;
}

.dv-photo-road-proceed .dv-proceed-head h2,
.dv-photo-road-proceed .dv-proceed-head .ap-title {
  margin-top: 18px !important;
  color: #2D1B0D !important;
  text-shadow: 0 3px 0 rgba(255, 234, 167, .45), 0 14px 32px rgba(75, 42, 18, .12) !important;
  font-size: clamp(3rem, 7vw, 6.2rem) !important;
  letter-spacing: -.07em !important;
  line-height: .92 !important;
}

.dv-photo-road-proceed .dv-proceed-head>span,
.dv-photo-road-proceed .dv-proceed-head .ap-subtitle {
  color: #3B250F !important;
  font-size: clamp(1rem, 1.55vw, 1.25rem) !important;
  line-height: 1.55 !important;
  font-weight: 800 !important;
  max-width: 760px !important;
}

.dv-photo-road-stage {
  position: relative !important;
  max-width: 1120px !important;
  height: 1260px !important;
  margin: 0 auto !important;
  border-radius: 42px !important;
  overflow: hidden !important;
  background: #F8BF2F !important;
  isolation: isolate !important;
}

.dv-photo-road-stage::before,
.dv-photo-road-stage::after {
  content: '' !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.dv-photo-road-stage::before {
  left: -80px !important;
  top: -60px !important;
  width: 260px !important;
  height: 230px !important;
  border-radius: 0 0 90px 0 !important;
  background:
    radial-gradient(circle at 26px 26px, transparent 0 20px, rgba(146, 81, 9, .22) 21px 25px, transparent 26px),
    radial-gradient(circle at 82px 26px, transparent 0 20px, rgba(146, 81, 9, .22) 21px 25px, transparent 26px),
    radial-gradient(circle at 54px 75px, transparent 0 20px, rgba(146, 81, 9, .22) 21px 25px, transparent 26px) !important;
  background-size: 112px 96px !important;
  opacity: .42 !important;
  transform: rotate(-8deg) !important;
}

.dv-photo-road-stage::after {
  right: -58px !important;
  bottom: -36px !important;
  width: 360px !important;
  height: 130px !important;
  border-radius: 50% 50% 0 0 !important;
  background: linear-gradient(180deg, rgba(255, 207, 65, .55), rgba(210, 117, 2, .36)) !important;
  filter: blur(.2px) !important;
}

.dv-photo-road-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.dv-photo-road-svg path {
  fill: none !important;
  vector-effect: non-scaling-stroke !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.dv-photo-road-shadow {
  stroke: rgba(255, 239, 166, .35) !important;
  stroke-width: 10 !important;
  stroke-dasharray: 4 29 !important;
  opacity: .62 !important;
}

.dv-photo-road-base,
.dv-photo-road-draw {
  stroke: #3B250F !important;
  stroke-width: 4.8 !important;
  stroke-dasharray: 15 24 !important;
}

.dv-photo-road-base {
  opacity: .28 !important;
}

.dv-photo-road-draw {
  opacity: .90 !important;
  stroke-dashoffset: 900 !important;
  animation: none !important;
}

.dv-proceed-visible .dv-photo-road-draw {
  animation: dvPhotoRoadMove 9s linear infinite !important;
}

.dv-photo-road-step {
  position: absolute !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 26px !important;
  width: min(520px, 48%) !important;
  color: #271506 !important;
  opacity: 0 !important;
  transform: translateY(36px) scale(.98) !important;
  transition: opacity .72s ease, transform .9s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 140ms) !important;
}

.dv-proceed-visible .dv-photo-road-step {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.dv-photo-road-step.dv-side-left {
  left: clamp(28px, 6vw, 92px) !important;
  text-align: left !important;
}

.dv-photo-road-step.dv-side-right {
  right: clamp(20px, 5vw, 78px) !important;
  text-align: left !important;
}

.dv-photo-step-1 {
  top: 178px !important;
}

.dv-photo-step-2 {
  top: 404px !important;
}

.dv-photo-step-3 {
  top: 610px !important;
}

.dv-photo-step-4 {
  top: 795px !important;
}

.dv-photo-step-5 {
  top: 950px !important;
}

.dv-photo-step-6 {
  top: 1110px !important;
}

.dv-photo-step-badge {
  flex: 0 0 auto !important;
  width: 82px !important;
  height: 88px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%) !important;
  background: linear-gradient(145deg, #5A2F17 0%, #32180C 100%) !important;
  color: #FFC83D !important;
  border: 0 !important;
  font-size: clamp(2.05rem, 3vw, 2.7rem) !important;
  font-weight: 1000 !important;
  letter-spacing: -.08em !important;
  line-height: 1 !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .28) !important;
  box-shadow: 0 18px 34px rgba(72, 37, 13, .24) !important;
  transform: rotate(-1deg) scale(.86) !important;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 140ms + 80ms) !important;
}

.dv-proceed-visible .dv-photo-step-badge {
  transform: rotate(0deg) scale(1) !important;
}

.dv-photo-step-text {
  padding-top: 4px !important;
}

.dv-photo-step-text h3 {
  margin: 0 0 14px !important;
  color: #2B1607 !important;
  font-size: clamp(2.15rem, 4.2vw, 4rem) !important;
  font-weight: 1000 !important;
  letter-spacing: -.06em !important;
  line-height: .95 !important;
  text-shadow: 0 3px 0 rgba(255, 230, 135, .42) !important;
}

.dv-photo-step-text p {
  margin: 0 !important;
  max-width: 430px !important;
  color: #2E1C0B !important;
  font-size: clamp(1.02rem, 1.58vw, 1.34rem) !important;
  line-height: 1.42 !important;
  font-weight: 850 !important;
  text-shadow: 0 1px 0 rgba(255, 236, 164, .3) !important;
}

.dv-road-bee {
  position: absolute !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  filter: drop-shadow(0 8px 12px rgba(68, 37, 12, .18)) !important;
  pointer-events: none !important;
  opacity: .95 !important;
}

.dv-road-bee-one {
  top: 76px !important;
  right: 92px !important;
  animation: dvBeeFloatOne 5.6s ease-in-out infinite !important;
}

.dv-road-bee-two {
  top: 540px !important;
  left: 160px !important;
  animation: dvBeeFloatTwo 6.1s ease-in-out infinite !important;
}

.dv-road-bee-three {
  bottom: 134px !important;
  right: 168px !important;
  animation: dvBeeFloatThree 5.8s ease-in-out infinite !important;
}

@keyframes dvPhotoRoadMove {
  0% {
    stroke-dashoffset: 900;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dvBeeFloatOne {

  0%,
  100% {
    transform: translate(0, 0) rotate(14deg);
  }

  50% {
    transform: translate(-22px, 18px) rotate(-10deg);
  }
}

@keyframes dvBeeFloatTwo {

  0%,
  100% {
    transform: translate(0, 0) rotate(-12deg);
  }

  50% {
    transform: translate(24px, -14px) rotate(9deg);
  }
}

@keyframes dvBeeFloatThree {

  0%,
  100% {
    transform: translate(0, 0) rotate(10deg);
  }

  50% {
    transform: translate(-18px, -20px) rotate(-7deg);
  }
}

@media (max-width: 1080px) {
  .dv-photo-road-stage {
    max-width: 900px !important;
    height: 1180px !important;
  }

  .dv-photo-road-step {
    width: min(470px, 50%) !important;
    gap: 18px !important;
  }

  .dv-photo-step-badge {
    width: 70px !important;
    height: 76px !important;
  }

  .dv-photo-step-text h3 {
    font-size: clamp(1.9rem, 4vw, 3.2rem) !important;
  }

  .dv-photo-step-text p {
    font-size: clamp(.98rem, 1.6vw, 1.16rem) !important;
  }
}

@media (max-width: 760px) {
  .dv-photo-road-proceed.dv-proceed-premium {
    padding: 54px 0 !important;
  }

  .dv-photo-road-stage {
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    gap: 22px !important;
    padding: 10px 0 8px 54px !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  .dv-photo-road-stage::before,
  .dv-photo-road-stage::after,
  .dv-photo-road-svg {
    display: none !important;
  }

  .dv-photo-road-stage::before {
    display: block !important;
    left: 20px !important;
    top: 20px !important;
    bottom: 20px !important;
    width: 4px !important;
    height: auto !important;
    border-radius: 999px !important;
    background: repeating-linear-gradient(to bottom, #3B250F 0 14px, transparent 14px 26px) !important;
    opacity: .8 !important;
    transform: none !important;
  }

  .dv-photo-road-step,
  .dv-photo-road-step.dv-side-left,
  .dv-photo-road-step.dv-side-right,
  .dv-photo-step-1,
  .dv-photo-step-2,
  .dv-photo-step-3,
  .dv-photo-step-4,
  .dv-photo-step-5,
  .dv-photo-step-6 {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    gap: 14px !important;
    align-items: flex-start !important;
    padding: 0 0 0 0 !important;
    transform: translateX(26px) scale(.98) !important;
  }

  .dv-proceed-visible .dv-photo-road-step,
  .dv-proceed-visible .dv-photo-road-step.dv-side-left,
  .dv-proceed-visible .dv-photo-road-step.dv-side-right {
    transform: translateX(0) scale(1) !important;
  }

  .dv-photo-road-step::before {
    content: '' !important;
    position: absolute !important;
    left: -34px !important;
    top: 31px !important;
    width: 26px !important;
    border-top: 4px dashed #3B250F !important;
    opacity: .75 !important;
  }

  .dv-photo-step-badge {
    width: 58px !important;
    height: 64px !important;
    font-size: 1.62rem !important;
    margin-top: 0 !important;
  }

  .dv-photo-step-text h3 {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem) !important;
    margin-bottom: 8px !important;
  }

  .dv-photo-step-text p {
    font-size: .96rem !important;
    line-height: 1.48 !important;
  }

  .dv-road-bee {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .dv-photo-road-stage {
    padding-left: 44px !important;
  }

  .dv-photo-road-stage::before {
    left: 15px !important;
  }

  .dv-photo-road-step {
    gap: 10px !important;
  }

  .dv-photo-road-step::before {
    left: -28px !important;
    width: 21px !important;
  }

  .dv-photo-step-badge {
    width: 50px !important;
    height: 56px !important;
    font-size: 1.42rem !important;
  }

  .dv-photo-step-text p {
    font-size: .9rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dv-photo-road-draw,
  .dv-photo-road-step,
  .dv-photo-step-badge,
  .dv-road-bee {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* =========================================================
   FINAL ALIGNMENT FIX: badges locked to the photo-style road
   ========================================================= */
.dv-photo-road-stage {
  height: 1500px !important;
  max-width: 1100px !important;
  overflow: hidden !important;
}

.dv-photo-road-svg {
  inset: 0 !important;
}

.dv-photo-road-base,
.dv-photo-road-draw {
  stroke-width: 5.2 !important;
  stroke-dasharray: 16 22 !important;
}

.dv-photo-road-step,
.dv-photo-road-step.dv-side-left,
.dv-photo-road-step.dv-side-right {
  left: 0 !important;
  right: auto !important;
  top: 0 !important;
  width: 100% !important;
  height: 0 !important;
  display: block !important;
  gap: 0 !important;
  pointer-events: none !important;
  text-align: left !important;
  transform: translateY(34px) scale(.985) !important;
}

.dv-proceed-visible .dv-photo-road-step,
.dv-proceed-visible .dv-photo-road-step.dv-side-left,
.dv-proceed-visible .dv-photo-road-step.dv-side-right {
  transform: translateY(0) scale(1) !important;
}

.dv-photo-road-step .dv-photo-step-badge {
  position: absolute !important;
  left: var(--badge-x) !important;
  top: var(--badge-y) !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) rotate(-1deg) scale(.86) !important;
  pointer-events: auto !important;
  z-index: 4 !important;
}

.dv-proceed-visible .dv-photo-road-step .dv-photo-step-badge {
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
}

.dv-photo-road-step .dv-photo-step-text {
  position: absolute !important;
  left: var(--text-x) !important;
  top: var(--text-y) !important;
  width: var(--text-w, 410px) !important;
  max-width: var(--text-w, 410px) !important;
  padding: 0 !important;
  pointer-events: auto !important;
  z-index: 3 !important;
}

.dv-photo-road-step::after {
  content: '' !important;
  position: absolute !important;
  left: var(--dot-x) !important;
  top: var(--dot-y) !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  background: #3B250F !important;
  border: 4px solid #F8BF2F !important;
  box-shadow: 0 0 0 3px rgba(59, 37, 15, .15), 0 9px 18px rgba(59, 37, 15, .20) !important;
  transform: translate(-50%, -50%) scale(.6) !important;
  opacity: 0 !important;
  transition: opacity .5s ease, transform .7s cubic-bezier(.19, 1, .22, 1) !important;
  transition-delay: calc(var(--step-index) * 140ms + 160ms) !important;
  z-index: 2 !important;
}

.dv-proceed-visible .dv-photo-road-step::after {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

.dv-photo-step-1 {
  --badge-x: 610px;
  --badge-y: 350px;
  --text-x: 705px;
  --text-y: 295px;
  --text-w: 385px;
  --dot-x: 610px;
  --dot-y: 350px;
}

.dv-photo-step-2 {
  --badge-x: 145px;
  --badge-y: 610px;
  --text-x: 245px;
  --text-y: 558px;
  --text-w: 430px;
  --dot-x: 145px;
  --dot-y: 610px;
}

.dv-photo-step-3 {
  --badge-x: 610px;
  --badge-y: 850px;
  --text-x: 705px;
  --text-y: 800px;
  --text-w: 395px;
  --dot-x: 610px;
  --dot-y: 850px;
}

.dv-photo-step-4 {
  --badge-x: 145px;
  --badge-y: 1070px;
  --text-x: 245px;
  --text-y: 1018px;
  --text-w: 430px;
  --dot-x: 145px;
  --dot-y: 1070px;
}

.dv-photo-step-5 {
  --badge-x: 610px;
  --badge-y: 1245px;
  --text-x: 705px;
  --text-y: 1198px;
  --text-w: 395px;
  --dot-x: 610px;
  --dot-y: 1245px;
}

.dv-photo-step-6 {
  --badge-x: 150px;
  --badge-y: 1390px;
  --text-x: 245px;
  --text-y: 1342px;
  --text-w: 430px;
  --dot-x: 150px;
  --dot-y: 1390px;
}

.dv-road-bee-one {
  top: 90px !important;
  right: 70px !important;
}

.dv-road-bee-two {
  top: 725px !important;
  left: 238px !important;
}

.dv-road-bee-three {
  bottom: 190px !important;
  right: 310px !important;
}

@media (max-width: 1080px) {
  .dv-photo-road-stage {
    max-width: 900px !important;
    height: 1300px !important;
  }

  .dv-photo-step-1 {
    --badge-x: 500px;
    --badge-y: 305px;
    --text-x: 580px;
    --text-y: 258px;
    --text-w: 320px;
    --dot-x: 500px;
    --dot-y: 305px;
  }

  .dv-photo-step-2 {
    --badge-x: 120px;
    --badge-y: 535px;
    --text-x: 205px;
    --text-y: 492px;
    --text-w: 360px;
    --dot-x: 120px;
    --dot-y: 535px;
  }

  .dv-photo-step-3 {
    --badge-x: 500px;
    --badge-y: 740px;
    --text-x: 580px;
    --text-y: 696px;
    --text-w: 330px;
    --dot-x: 500px;
    --dot-y: 740px;
  }

  .dv-photo-step-4 {
    --badge-x: 120px;
    --badge-y: 940px;
    --text-x: 205px;
    --text-y: 894px;
    --text-w: 360px;
    --dot-x: 120px;
    --dot-y: 940px;
  }

  .dv-photo-step-5 {
    --badge-x: 500px;
    --badge-y: 1095px;
    --text-x: 580px;
    --text-y: 1052px;
    --text-w: 330px;
    --dot-x: 500px;
    --dot-y: 1095px;
  }

  .dv-photo-step-6 {
    --badge-x: 125px;
    --badge-y: 1220px;
    --text-x: 205px;
    --text-y: 1178px;
    --text-w: 360px;
    --dot-x: 125px;
    --dot-y: 1220px;
  }
}

@media (max-width: 760px) {
  .dv-photo-road-stage {
    height: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .dv-photo-road-step,
  .dv-photo-road-step.dv-side-left,
  .dv-photo-road-step.dv-side-right {
    height: auto !important;
    display: flex !important;
    width: 100% !important;
    pointer-events: auto !important;
  }

  .dv-photo-road-step .dv-photo-step-badge,
  .dv-photo-road-step .dv-photo-step-text {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .dv-photo-road-step .dv-photo-step-badge,
  .dv-proceed-visible .dv-photo-road-step .dv-photo-step-badge {
    transform: none !important;
  }

  .dv-photo-road-step::after {
    display: none !important;
  }
}

/* =========================================================
   FINAL CLEAN HOW WE PROCEED SECTION
   Container width on PC + mobile responsive + clear path around photos
   ========================================================= */
.dv-untitled-proceed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 5vw, 82px) 0;
}

.dv-untitled-proceed::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(75, 42, 18, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 42, 18, .03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  opacity: .62;
  z-index: -1;
}

.dv-untitled-proceed .container {
  width: min(1210px, calc(100% - 36px));
  max-width: 1210px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-untitled-proceed .scene {
  width: 100%;
  max-width: 1120px;
  aspect-ratio: 900 / 1600;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .22), transparent 32%),
    linear-gradient(180deg, #ffc828 0%, #f6b313 50%, #f19b08 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .32),
    0 30px 95px rgba(75, 42, 18, .16);
}

.dv-untitled-proceed svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dv-untitled-proceed .poster-bg {
  fill: url(#dvProceedBg);
}

.dv-untitled-proceed .honey-corner {
  fill: none;
  stroke: rgba(255, 152, 0, .72);
  stroke-width: 28;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 6px rgba(105, 47, 0, .16));
}

.dv-untitled-proceed .honey-corner-top {
  opacity: .50;
}

.dv-untitled-proceed .honey-corner-bottom {
  opacity: .72;
}

.dv-untitled-proceed .main-title {
  fill: #281206;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 73px;
  font-weight: 900;
  letter-spacing: -2px;
  text-anchor: middle;
}

.dv-untitled-proceed .sub-title {
  fill: #5a2d0a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 800;
  text-anchor: middle;
}

.dv-untitled-proceed .svg-pill {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff1b7;
  background: #4b250d;
  box-shadow: 0 7px 16px rgba(43, 19, 5, .22);
  font-family: Jost, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.dv-untitled-proceed .svg-pill i {
  color: #ffc727;
  font-size: 18px;
}

.dv-untitled-proceed .motion-path,
.dv-untitled-proceed .decor-path {
  fill: none;
  stroke: #3b1f0e;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 11;
  opacity: .9;
}

.dv-untitled-proceed .decor-path {
  opacity: .56;
  stroke-width: 3;
}

.dv-untitled-proceed .process-img {
  pointer-events: none;
  image-rendering: auto;
}

.dv-untitled-proceed .process-img-quality,
.dv-untitled-proceed .process-img-packaging {
  transform-box: fill-box;
  transform-origin: center;
}

.dv-untitled-proceed .badge {
  fill: #4b250d;
  filter: url(#dvBadgeShadow);
}

.dv-untitled-proceed .badge-text {
  fill: #ffd22f;
  font-family: Jost, Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
}

.dv-untitled-proceed .arrow-shape {
  fill: #281206;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .35));
}

.dv-untitled-proceed .step-title {
  fill: #231006;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.dv-untitled-proceed .step-desc {
  fill: #2d180b;
  font-family: Jost, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.dv-untitled-proceed .bottom-logo {
  filter: drop-shadow(0 8px 10px rgba(70, 31, 6, .22));
}

@media (min-width: 1024px) {
  .dv-untitled-proceed {
    padding: clamp(54px, 4.8vw, 90px) 0;
  }

  .dv-untitled-proceed .container {
    width: min(1210px, calc(100% - 36px));
  }

  .dv-untitled-proceed .scene {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 30px;
  }
}

@media (max-width: 1023px) {
  .dv-untitled-proceed {
    padding: 46px 0 58px;
  }

  .dv-untitled-proceed .container {
    width: 100%;
    max-width: none;
    padding: 0 10px;
  }

  .dv-untitled-proceed .scene {
    width: min(96vw, 760px);
    max-width: none;
    border-radius: 28px;
  }
}

@media (max-width: 540px) {
  .dv-untitled-proceed {
    padding: 38px 0 48px;
  }

  .dv-untitled-proceed .container {
    padding: 0 8px;
  }

  .dv-untitled-proceed .scene {
    width: 100%;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dv-untitled-proceed #arrow {
    display: none;
  }
}

/* =========================================================
   CLEAN FINAL USER NAVBAR + TOPBAR BEHAVIOR
   Desktop:
   - page top: offer topbar + navbar top + navbar bottom
   - scroll down: navbar bottom only
   - scroll up in middle: navbar top + navbar bottom
   - back to top: offer topbar returns
   Mobile:
   - links stay hidden until toggle click
   - on scroll: compact mobile navbar only, links do not auto-open
   ========================================================= */
:root {
  --hv-forest: #143f35;
  --hv-honey: #d99b20;
  --hv-cream: #fff8e8;
  --dv-auth-topbar-h: 38px;
  --dv-user-nav-desktop-h: 130px;
  --dv-user-nav-mobile-h: 70px;
}

.hv-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--dv-auth-topbar-h);
  z-index: 2147483001;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hv-honey);
  color: var(--hv-forest);
  border-bottom: 1px solid rgba(20, 63, 53, .14);
  box-shadow: 0 8px 22px rgba(20, 63, 53, .12);
  transition: height .24s ease, transform .24s ease, opacity .2s ease, visibility .2s ease;
}

.hv-topbar-track {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  white-space: nowrap;
  animation: hvMarquee 28s linear infinite;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.hv-topbar-track span {
  padding-left: 18px;
}

.hv-topbar-track b {
  color: rgba(20, 63, 53, .55);
}

@keyframes hvMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

html {
  scroll-padding-top: calc(var(--dv-user-nav-desktop-h) + var(--dv-auth-topbar-h));
}

body {
  padding-top: calc(var(--dv-user-nav-desktop-h) + var(--dv-auth-topbar-h));
}

#navbar.dv-site-nav {
  top: var(--dv-auth-topbar-h);
  background: rgba(255, 248, 232, .94);
  border-bottom: 1px solid rgba(75, 42, 18, .12);
  box-shadow: 0 18px 50px rgba(75, 42, 18, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#navbar.dv-site-nav .dv-nav-top,
#navbar.dv-site-nav .dv-nav-bottom {
  background: transparent;
}

#navbar.dv-site-nav .dv-logo,
#navbar.dv-site-nav .brand-text,
#navbar.dv-site-nav .dv-nav-quicklinks a,
#navbar.dv-site-nav #nav-links>li>a,
#navbar.dv-site-nav #nav-links>li>span,
#navbar.dv-site-nav .dropdown-menu a,
#navbar.dv-site-nav .dv-icon-link {
  color: #0f3d34;
}

#navbar.dv-site-nav .dv-nav-quicklinks a:hover,
#navbar.dv-site-nav #nav-links>li>a:hover,
#navbar.dv-site-nav #nav-links>li>span:hover,
#navbar.dv-site-nav .dropdown-menu a:hover,
#navbar.dv-site-nav .dv-icon-link:hover {
  background: #ffd58b7a;
  color: #0f3d34;
}

#navbar.dv-site-nav .menu-toggle span {
  background: #0f3d34;
}

#navbar.dv-site-nav .dv-icon-link,
#navbar.dv-site-nav #nav-links .mobile-menu-close {
  background: #fff;
  color: #0f3d34;
  border-color: rgba(75, 42, 18, .14);
}

#navbar.dv-site-nav .dv-count {
  background: #E6A12A;
  color: #0f3d34;
  border-color: rgba(75, 42, 18, .10);
}

.mobile-menu-backdrop {
  background: rgba(75, 42, 18, .44);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

body.no-page-scroll .hv-topbar,
body.review-modal-open .hv-topbar,
body.cart-modal-open .hv-topbar,
body.wishlist-modal-open .hv-topbar,
body.orders-modal-open .hv-topbar,
body.order-action-modal-open .hv-topbar,
body.logout-popup-open .hv-topbar,
body.change-password-open .hv-topbar,
body.dv-header-compact .hv-topbar,
body.dv-mobile-header-scrolled .hv-topbar {
  height: 0;
  min-height: 0;
  max-height: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-110%);
}

body.dv-header-compact .hv-topbar-track,
body.dv-mobile-header-scrolled .hv-topbar-track {
  display: none;
}

body.dv-header-compact #navbar.dv-site-nav,
body.dv-mobile-header-scrolled #navbar.dv-site-nav {
  top: 0;
  transform: none;
  pointer-events: auto;
}

body.dv-header-compact #navbar.dv-site-nav.nav-hidden,
body.dv-mobile-header-scrolled #navbar.dv-site-nav.nav-hidden {
  transform: none;
  pointer-events: auto;
}

@media (min-width: 769px) {
  body.dv-header-compact {
    padding-top: var(--dv-user-nav-desktop-h);
  }

  body.dv-header-bottom-only {
    padding-top: 48px;
  }

  body.dv-header-bottom-only #navbar.dv-site-nav {
    height: 48px;
    min-height: 48px;
    overflow: visible;
  }

  body.dv-header-bottom-only #navbar.dv-site-nav .dv-nav-top {
    height: 0;
    min-height: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-110%);
    overflow: hidden;
  }

  body.dv-header-bottom-only #navbar.dv-site-nav .dv-nav-bottom {
    display: flex;
    height: 48px;
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.dv-header-bottom-only #navbar.dv-site-nav #nav-links.nav-links {
    display: flex;
    align-items: center;
  }

  body.dv-header-scroll-up:not(.dv-header-bottom-only) #navbar.dv-site-nav .dv-nav-top,
  body.dv-header-scroll-up:not(.dv-header-bottom-only) #navbar.dv-site-nav .dv-nav-bottom {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  :root {
    --dv-auth-topbar-h: 32px;
    --dv-user-nav-mobile-h: 70px;
  }

  html {
    scroll-padding-top: calc(var(--dv-user-nav-mobile-h) + var(--dv-auth-topbar-h));
  }

  body {
    padding-top: calc(var(--dv-user-nav-mobile-h) + var(--dv-auth-topbar-h));
  }

  body.dv-mobile-header-scrolled {
    padding-top: var(--dv-user-nav-mobile-h);
  }

  .hv-topbar {
    height: var(--dv-auth-topbar-h);
  }

  .hv-topbar-track {
    gap: 13px;
    font-size: .66rem;
    letter-spacing: .55px;
    animation-duration: 22s;
  }

  .hv-topbar-track span {
    padding-left: 13px;
  }

  #navbar.dv-site-nav {
    top: var(--dv-auth-topbar-h);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: var(--dv-user-nav-mobile-h);
    min-height: var(--dv-user-nav-mobile-h);
    margin: 0;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: #fffaf2;
    box-shadow: 0 7px 22px rgba(0, 0, 0, .09);
    overflow: visible;
  }

  body.dv-mobile-header-scrolled #navbar.dv-site-nav {
    top: 0;
  }

  #navbar.dv-site-nav .dv-nav-top {
    height: var(--dv-user-nav-mobile-h);
    min-height: var(--dv-user-nav-mobile-h);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid rgba(15, 61, 52, .10);
    background: #fffaf2;
  }

  #navbar.dv-site-nav .dv-nav-bottom {
    display: block;
    height: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  #navbar.dv-site-nav #nav-links.nav-links:not(.active) {
    transform: translateX(-105%);
  }

  #navbar.dv-site-nav #nav-links.nav-links.active {
    transform: translateX(0);
  }

  #navbar.dv-site-nav .dv-logo {
    max-width: 118px;
    min-width: 0;
  }

  #navbar.dv-site-nav .nav-logo-img,
  #navbar.dv-site-nav .mobile-logo-img {
    width: min(112px, 34vw);
    height: 58px;
    max-width: 112px;
    object-fit: contain;
  }

  #navbar.dv-site-nav .dv-nav-actions {
    gap: 5px;
  }

  #navbar.dv-site-nav .dv-icon-link {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

/* === End clean final user navbar + topbar behavior === */



/* =========================================================
   PRODUCT DETAIL: weight image cards + reviews
   ========================================================= */
.compact-product-detail {
  background:
    radial-gradient(circle at 15% 12%, rgba(246, 198, 89, .24), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #fff4df 100%);
}

.compact-product-detail .product-detail-grid {
  grid-template-columns: minmax(290px, 520px) minmax(330px, 1fr);
  gap: clamp(26px, 4vw, 56px);
}

.compact-product-detail .detail-image {
  background: linear-gradient(135deg, #fff8ea, #f8e7c4);
  border: 1px solid rgba(191, 138, 54, .18);
  box-shadow: 0 26px 75px rgba(73, 44, 14, .14);
}

.compact-product-detail .detail-info {
  background: rgba(255, 252, 245, .88);
  border: 1px solid rgba(191, 138, 54, .18);
  box-shadow: 0 26px 75px rgba(73, 44, 14, .10);
}

.product-detail .product-weight-selector {
  margin-top: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-detail .product-weight-selector .size-filter-title {
  margin: 0 0 12px;
  color: #6f4a16;
  font-size: .86rem;
  letter-spacing: .6px;
  text-transform: none;
}

.product-detail .product-weight-selector .size-filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 12px;
}

.product-detail .product-weight-selector .weight-card {
  border-radius: 16px;
  border: 1px solid rgba(191, 138, 54, .42);
  background: #fffaf0;
  color: #20150c;
  box-shadow: 0 12px 28px rgba(73, 44, 14, .08);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  text-transform: none;
  letter-spacing: .3px;
}

.product-detail .product-weight-selector .weight-card:hover:not(:disabled) {
  background: #fff6e5;
  border-color: #d79a1e;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(73, 44, 14, .12);
}

.product-detail .product-weight-selector .weight-card.active {
  background: #fffaf0;
  color: #20150c;
  border: 2px solid #f05a28;
  box-shadow: 0 18px 40px rgba(240, 90, 40, .16);
}

.weight-card-label {
  font-weight: 900;
  font-size: .98rem;
  line-height: 1.05;
  text-align: center;
}

.weight-card-img {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}

.weight-card-img img {
  width: 100%;
  height: inherit;
  object-fit: contain;
  display: block;
}

.product-detail .product-weight-selector .weight-card small {
  color: #1f1710;
  font-size: 1rem;
  font-weight: 900;
  opacity: 1;
}

.product-reviews-section {
  padding: clamp(48px, 6vw, 92px) 0;
}

.product-reviews-card {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(260px, .9fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 34px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(191, 138, 54, .18);
  box-shadow: 0 28px 80px rgba(73, 44, 14, .12);
}

.reviews-kicker {
  margin: 0 0 10px;
  color: #d79a1e;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.reviews-summary h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: .95;
}

.reviews-score {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.reviews-score strong {
  color: #231006;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  line-height: 1;
}

.review-stars,
.review-head span {
  color: #f6a800;
  letter-spacing: 2px;
  font-size: 1rem;
}

.reviews-score small {
  color: #6f4a16;
  font-weight: 800;
}

.review-write-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #0F3D34;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.reviews-breakdown {
  display: grid;
  gap: 12px;
  padding: 8px 0;
}

.rating-row {
  display: grid;
  grid-template-columns: 46px 1fr 42px;
  gap: 10px;
  align-items: center;
  color: #0f3d34;
  font-weight: 900;
}

.rating-row div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1dfbd;
}

.rating-row b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #f6a800, #f05a28);
}

.rating-row small {
  color: #75501d;
  font-weight: 900;
  text-align: right;
}

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

.review-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #fffaf0;
  border: 1px solid rgba(191, 138, 54, .16);
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4b250d;
  color: #ffd22f;
  font-weight: 900;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.review-head strong {
  color: #231006;
}

.review-item h3 {
  margin: 6px 0 5px;
  color: #231006;
  font-size: 1rem;
}

.review-item p {
  margin: 0;
  color: #5b3b1a;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .compact-product-detail .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail .product-weight-selector .size-filter-tabs {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .product-reviews-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .compact-product-detail {
    padding-top: 30px;
  }

  .compact-product-detail .detail-info {
    padding: 22px;
  }

  .product-detail .product-weight-selector .size-filter-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .product-detail .product-weight-selector .weight-card {
    border-radius: 14px;
  }

  .weight-card-img {
    width: 52px;
    height: 52px;
  }

  .product-reviews-card {
    padding: 18px;
    border-radius: 24px;
  }

  .rating-row {
    grid-template-columns: 42px 1fr 34px;
  }
}

/* =========================================================
   Product review popup + dynamic customer reviews
   ========================================================= */
.review-message {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.review-message-success {
  color: #0F3D34;
  background: rgba(15, 61, 52, .10);
  border: 1px solid rgba(15, 61, 52, .18);
}

.review-message-error {
  color: #8c280d;
  background: rgba(240, 90, 40, .10);
  border: 1px solid rgba(240, 90, 40, .20);
}

.review-write-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.review-date {
  margin-top: 2px;
  color: #a17835;
  font-size: .78rem;
  font-weight: 800;
}

.review-empty-state {
  padding: 24px;
  border-radius: 24px;
  background: #fffaf0;
  border: 1px dashed rgba(191, 138, 54, .34);
  color: #5b3b1a;
}

.review-empty-state strong {
  display: block;
  color: #231006;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.review-empty-state p {
  margin: 0;
  line-height: 1.6;
}

.review-carousel-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
  padding-top: 8px;
}

.review-carousel-controls span {
  min-width: 72px;
  color: #5b3b1a;
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

.review-arrow-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #4b250d;
  color: #ffd22f;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(75, 37, 13, .18);
  transition: transform .2s ease, opacity .2s ease;
}

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

.review-arrow-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}

.review-item[hidden] {
  display: none;
}


.product-review-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-review-modal.active {
  display: flex;
}

.product-review-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 13, 5, .66);
  backdrop-filter: blur(8px);
}

.product-review-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 198, 89, .22), transparent 32%),
    #fffaf0;
  border: 1px solid rgba(191, 138, 54, .24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #4b250d;
  color: #ffd22f;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.product-review-dialog h2 {
  margin: 0 46px 18px 0;
  color: #231006;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: .95;
}

.product-review-form {
  display: grid;
  gap: 16px;
}

.review-form-label,
.product-review-form label span {
  display: block;
  margin-bottom: 8px;
  color: #0f3d34;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.review-star-field {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin-bottom: 2px;
}

.review-star-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-star-field label {
  margin: 0;
  color: #d7bd85;
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}

.review-star-field label:hover,
.review-star-field label:hover~label,
.review-star-field input:checked~label {
  color: #f6a800;
}

.review-star-field label:hover {
  transform: translateY(-2px) scale(1.06);
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-review-form input[type="text"],
.product-review-form input[type="email"],
.product-review-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 138, 54, .28);
  border-radius: 18px;
  background: #fff;
  color: #231006;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.product-review-form input[type="text"],
.product-review-form input[type="email"] {
  min-height: 48px;
  padding: 0 15px;
}

.product-review-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 14px 15px;
}

.product-review-form input[type="text"]:focus,
.product-review-form input[type="email"]:focus,
.product-review-form textarea:focus {
  border-color: #f05a28;
  box-shadow: 0 0 0 4px rgba(240, 90, 40, .12);
}

.review-submit-btn {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: #0F3D34;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

html.review-modal-open,
body.review-modal-open {
  overflow: hidden;
}

body.review-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media (max-width: 620px) {
  .product-review-modal {
    padding: 14px;
  }

  .product-review-dialog {
    border-radius: 24px;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .review-star-field label {
    font-size: 1.95rem;
  }
}


/* Review popup: hide full site header/tagline while modal is open */
body.review-modal-open .hv-topbar,
body.review-modal-open .hv-topbar-track,
body.review-modal-open #navbar,
body.review-modal-open #navbar.dv-site-nav,
body.review-modal-open .mobile-menu-backdrop {
  display: none;
}

/* === Product multiple photo gallery + mobile swipe update === */
.compact-product-detail .product-main-image {
  position: relative;
  overflow: hidden;
}

.compact-product-detail .product-image-track {
  width: 100%;
  height: 100%;
}

.compact-product-detail .product-image-slide {
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.compact-product-detail .product-image-slide.active {
  display: grid;
}

.compact-product-detail .product-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 680px) {
  .compact-product-detail .product-main-image {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .compact-product-detail .product-main-image::-webkit-scrollbar {
    display: none;
  }

  .compact-product-detail .product-image-track {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .compact-product-detail .product-image-slide,
  .compact-product-detail .product-image-slide.active {
    display: grid;
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .compact-product-detail .product-gallery-thumbs {
    pointer-events: none;
  }

  .compact-product-detail .product-gallery-thumb {
    opacity: .72;
  }

  .compact-product-detail .product-gallery-thumb.active {
    opacity: 1;
  }
}

/* === End product multiple photo gallery + mobile swipe update === */
@media (max-width: 680px) {
  .compact-product-detail .product-main-image {
    touch-action: pan-x;
  }
}

/* === Compact review section update === */
.product-reviews-section {
  padding: clamp(30px, 4vw, 56px) 0;
}

.product-reviews-card {
  grid-template-columns: minmax(260px, .95fr) minmax(230px, .75fr) minmax(320px, 1.15fr);
  gap: 20px;
  padding: clamp(18px, 3vw, 28px);
}

.compact-reviews-summary h2,
.reviews-summary h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
}

.reviews-score-action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.compact-reviews-score,
.reviews-score.compact-reviews-score {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fffaf0;
  border: 1px solid rgba(191, 138, 54, .18);
}

.compact-reviews-score strong,
.reviews-score.compact-reviews-score strong {
  font-size: 2rem;
}

.compact-reviews-score small,
.reviews-score.compact-reviews-score small {
  white-space: nowrap;
}

.reviews-score-action .review-write-btn {
  min-height: 42px;
  white-space: nowrap;
}

.compact-scroll-review-list {
  max-height: 292px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  align-content: start;
}

.compact-scroll-review-list::-webkit-scrollbar {
  width: 7px;
}

.compact-scroll-review-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(75, 37, 13, .32);
}

.compact-scroll-review-list .review-item {
  min-height: 134px;
}

@media (max-width: 1024px) {
  .product-reviews-card {
    grid-template-columns: 1fr;
  }

  .compact-scroll-review-list {
    max-height: 330px;
  }
}

@media (max-width: 540px) {
  .reviews-score-action {
    align-items: stretch;
  }

  .compact-reviews-score,
  .reviews-score.compact-reviews-score,
  .reviews-score-action .review-write-btn {
    width: 100%;
    justify-content: center;
  }

  .compact-scroll-review-list {
    max-height: 300px;
  }
}

/* === End compact review section update === */

/* === Final product gallery arrows + review button pagination === */
.product-main-image .product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  cursor: pointer;
  background: rgba(255, 250, 241, .92);
  color: #4b250d;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(75, 37, 13, .18);
  border: 1px solid rgba(191, 138, 54, .18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.product-main-image .product-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: #fff7de;
  box-shadow: 0 18px 42px rgba(75, 37, 13, .24);
}

.product-gallery-arrow-prev {
  left: 14px;
}

.product-gallery-arrow-next {
  right: 14px;
}

@media (max-width: 680px) {
  .compact-product-detail .product-gallery-thumbs {
    pointer-events: auto !important;
  }

  .compact-product-detail .product-main-image {
    position: relative;
  }

  .product-main-image .product-gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 30px;
    background: rgba(255, 250, 241, .88);
  }

  .product-gallery-arrow-prev {
    left: 10px;
  }

  .product-gallery-arrow-next {
    right: 10px;
  }
}

.review-filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

.review-filter-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #6f4b22;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.review-filter-toolbar select {
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(191, 138, 54, .22);
  background: #fffaf0;
  color: #4b250d;
  font-weight: 900;
  padding: 0 12px;
  outline: none;
}

.compact-button-review-list {
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
  align-content: start;
}

.compact-button-review-list .review-item {
  min-height: 134px;
}

.compact-review-carousel-controls {
  margin-top: 12px;
  justify-content: flex-end;
}

.review-filter-empty {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fffaf0;
  color: #6f4b22;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1024px) {

  .review-filter-toolbar,
  .compact-review-carousel-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .review-filter-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-filter-toolbar label,
  .review-filter-toolbar select {
    width: 100%;
  }

  .review-filter-toolbar label {
    justify-content: space-between;
  }

  .compact-review-carousel-controls {
    justify-content: center;
  }
}

/* === End final product gallery arrows + review button pagination === */

.review-list-panel {
  min-width: 0;
}

/* === Mobile product photo simple slider fix === */
@media (max-width: 680px) {
  .compact-product-detail .product-main-image {
    overflow: hidden !important;
    touch-action: pan-y;
  }

  .compact-product-detail .product-image-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    will-change: transform;
  }

  .compact-product-detail .product-image-slide,
  .compact-product-detail .product-image-slide.active {
    display: grid !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }
}

/* === End mobile product photo simple slider fix === */


/* === Requested update: WhatsApp header, eye-only product view, colourful shop filters, fixed About process classes === */
.dv-whatsapp-text-link,
.mobile-utility-link a .fa-whatsapp {
  color: #128C4B;
}

.dv-nav-actions .dv-whatsapp-link {
  background: linear-gradient(135deg, #25D366, #128C4B) !important;
  color: #fff !important;
  border-color: rgba(37, 211, 102, .45) !important;
  box-shadow: 0 14px 30px rgba(18, 140, 75, .24) !important;
}

.dv-nav-actions .dv-whatsapp-link i {
  font-size: 1.24rem;
}

.dv-nav-actions .dv-whatsapp-link:hover,
.dv-whatsapp-text-link:hover {
  transform: translateY(-2px);
}

.card-actions .view-icon-btn,
.wishlist-popup-actions .view-icon-btn,
.shop-showcase .product-info .view-icon-btn,
#shop .product-info .view-icon-btn,
.shop-section .product-info .view-icon-btn {
  width: 52px !important;
  min-width: 52px;
  flex: 0 0 52px;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 8px;
  background: linear-gradient(135deg, #0f3d34, #246b5b) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(15, 61, 52, .18) !important;
}

.card-actions .view-icon-btn:hover,
.wishlist-popup-actions .view-icon-btn:hover {
  background: linear-gradient(135deg, #d79a1e, #f6c659) !important;
  color: #0f3d34 !important;
  transform: translateY(-2px) scale(1.03);
}

.card-actions {
  align-items: center;
}

.card-actions .wa-btn {
  flex: 1 1 auto;
}

.about-premium .ap-process-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 22px 4px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
}

.about-premium .ap-process-timeline {
  position: relative;
}

.about-premium .ap-process-card {
  position: relative;
  isolation: isolate;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.about-premium .ap-process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .72;
  background: radial-gradient(circle at 18% 0%, rgba(255, 219, 141, .28), transparent 42%);
}

.about-premium .ap-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 219, 141, .38);
  box-shadow: 0 30px 68px rgba(0, 0, 0, .24);
}

.about-premium .ap-process-copy {
  min-height: 185px;
}

.about-premium .ap-process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 145, 25, .11);
  border: 1px solid rgba(217, 145, 25, .2);
  color: var(--honey-deep);
}

.shop-showcase .category-tabs .btn {
  position: relative;
  overflow: hidden;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(15, 61, 52, .12) !important;
}

.shop-showcase .category-tabs .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: translateX(-110%);
  transition: transform .45s ease;
}

.shop-showcase .category-tabs .btn:hover::after {
  transform: translateX(110%);
}

.shop-showcase .category-tabs .btn:nth-child(6n+1) {
  background: linear-gradient(135deg, #0f3d34, #2e7d63) !important;
}

.shop-showcase .category-tabs .btn:nth-child(6n+2) {
  background: linear-gradient(135deg, #d79a1e, #f6c659) !important;
  color: #123f35 !important;
}

.shop-showcase .category-tabs .btn:nth-child(6n+3) {
  background: linear-gradient(135deg, #8a4d13, #d48b22) !important;
}

.shop-showcase .category-tabs .btn:nth-child(6n+4) {
  background: linear-gradient(135deg, #713f12, #b96d24) !important;
}

.shop-showcase .category-tabs .btn:nth-child(6n+5) {
  background: linear-gradient(135deg, #1f6659, #50a06d) !important;
}

.shop-showcase .category-tabs .btn:nth-child(6n+6) {
  background: linear-gradient(135deg, #5f3b12, #d9a441) !important;
}

.shop-showcase .category-tabs .btn.active,
.shop-showcase .category-tabs .btn[aria-current="page"] {
  outline: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 16px 34px rgba(215, 154, 30, .26), 0 0 0 5px rgba(215, 154, 30, .16) !important;
  transform: translateY(-2px);
}

@media (max-width: 640px) {

  .card-actions .view-icon-btn,
  .wishlist-popup-actions .view-icon-btn,
  .shop-showcase .product-info .view-icon-btn,
  #shop .product-info .view-icon-btn,
  .shop-section .product-info .view-icon-btn {
    width: 48px !important;
    min-width: 48px;
    flex-basis: 48px;
  }

  .about-premium .ap-process-head {
    padding: 18px 14px 2px;
  }

  .about-premium .ap-process-copy {
    min-height: auto;
  }
}

/* === End requested update === */

/* === v13: single-colour shop filters + reference-style product description accordion === */
.shop-showcase .category-tabs .btn,
.shop-showcase .category-tabs .btn:nth-child(6n+1),
.shop-showcase .category-tabs .btn:nth-child(6n+2),
.shop-showcase .category-tabs .btn:nth-child(6n+3),
.shop-showcase .category-tabs .btn:nth-child(6n+4),
.shop-showcase .category-tabs .btn:nth-child(6n+5),
.shop-showcase .category-tabs .btn:nth-child(6n+6) {
  background: #fffaf0 !important;
  color: #0f3d34 !important;
  border: 1px solid rgba(15, 61, 52, .14) !important;
  box-shadow: 0 10px 24px rgba(15, 61, 52, .06) !important;
  outline: 0 !important;
}

.shop-showcase .category-tabs .btn:hover,
.shop-showcase .category-tabs .btn:nth-child(n):hover {
  background: #fff1cf !important;
  color: #0f3d34 !important;
  border-color: rgba(215, 154, 30, .38) !important;
  box-shadow: 0 14px 30px rgba(215, 154, 30, .14) !important;
  transform: translateY(-2px);
}

.shop-showcase .category-tabs .btn.active,
.shop-showcase .category-tabs .btn[aria-current="page"],
.shop-showcase .category-tabs .btn:nth-child(n).active {
  background: linear-gradient(135deg, #0f3d34, #246b5b) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 16px 34px rgba(15, 61, 52, .24) !important;
  outline: 0 !important;
}

.shop-showcase .category-tabs .btn::after {
  opacity: .65;
}

.product-info-accordion {
  margin-top: 18px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(73, 44, 14, .22);
  border-bottom: 0;
  background: #fffaf2;
  box-shadow: 0 20px 50px rgba(73, 44, 14, .08);
  overflow: hidden;
}

.product-info-panel {
  border-bottom: 1px solid rgba(73, 44, 14, .22);
  background: rgba(255, 250, 242, .96);
}

.product-info-panel summary {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  color: #2a241e;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.2;
  user-select: none;
}

.product-info-panel summary::-webkit-details-marker {
  display: none;
}

.product-info-title {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.product-info-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #ef6b28;
  font-size: 1.1rem;
}

.product-info-icon .fa-whatsapp,
.product-info-icon .fa-heart,
.product-info-icon .fa-house-chimney,
.product-info-icon .fa-jar,
.product-info-icon .fa-clipboard-list,
.product-info-icon .fa-hand-holding-heart,
.product-info-icon .fa-circle-info {
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, .10));
}

.product-info-arrow {
  flex: 0 0 auto;
  color: #111;
  font-size: .92rem;
  transition: transform .22s ease;
}

.product-info-panel[open]>summary .product-info-arrow {
  transform: rotate(180deg);
}

.product-info-panel-body {
  padding: 1px 23px 25px 23px;
  color: #5d554d;
  font-size: .98rem;
  line-height: 1.62;
  background: rgba(255, 250, 242, .75);
}

.product-info-panel-body p {
  margin: 0 0 12px;
  color: #5d554d !important;
  font-size: .98rem !important;
  line-height: 1.62 !important;
}

.product-info-panel-body p:last-child {
  margin-bottom: 0;
}

.product-info-panel-body a {
  color: #0f3d34;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.product-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-info-list li {
  display: grid;
  grid-template-columns: minmax(112px, .7fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.product-info-list strong {
  color: #392614;
  font-weight: 900;
}

.product-info-list span {
  color: #61564b;
  overflow-wrap: anywhere;
}

.compact-product-detail .detail-info .product-info-accordion p,
.compact-product-detail .detail-info .product-info-panel-body p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

@media (max-width: 680px) {
  .product-info-panel summary {
    min-height: 56px;
    padding: 0 14px;
    font-size: .98rem;
  }

  .product-info-panel-body {
    padding: 18px 16px 22px 48px;
  }

  .product-info-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* === End v13 requested update === */


/* === v15: Reference-style weight cards + eye icon on image === */
.product-detail .product-weight-selector {
  margin-top: 22px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.product-detail .product-weight-selector .size-filter-title {
  margin: 0 0 12px !important;
  color: #5f5a55 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .2px !important;
  text-transform: none !important;
}

.product-detail .product-weight-selector .weight-card {
  min-height: 150px !important;
  padding: 12px 8px 10px !important;
  border-radius: 9px !important;
  border: 1.5px solid #d6b98b !important;
  background: #fff8ec !important;
  color: #161616 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  text-transform: none !important;
  cursor: pointer !important;
  transition: .22s ease !important;
}

.product-detail .product-weight-selector .weight-card:hover:not(:disabled) {
  border-color: #f05a28 !important;
  background: #fffaf2 !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.product-detail .product-weight-selector .weight-card.active {
  border: 2px solid #f05a28 !important;
  background: #fffaf2 !important;
  box-shadow: none !important;
}

.product-detail .product-weight-selector .weight-card:disabled {
  opacity: .45 !important;
  cursor: not-allowed !important;
}

.weight-card-label {
  min-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  text-align: center !important;
}

.weight-card-img {
  width: 58px !important;
  height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.weight-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.product-detail .product-weight-selector .weight-card small {
  color: #111 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  opacity: 1 !important;
}

.product-card .product-image,
.wishlist-popup-image.product-image,
.wishlist-popup-img.product-image {
  position: relative !important;
  display: block !important;
}

.product-card .product-image .tag {
  position: absolute !important;
  left: 12px;
  top: 12px;
  z-index: 5 !important;
}

.product-card .card-eye-icon,
.wishlist-popup-image .card-eye-icon,
.wishlist-popup-img .card-eye-icon {
  position: absolute !important;
  right: 12px;
  top: 12px;
  z-index: 6 !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .95) !important;
  color: #1b1b1b !important;
  border: 1px solid rgba(0, 0, 0, .08) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  transition: .22s ease !important;
}

.product-card .product-image:hover .card-eye-icon,
.wishlist-popup-image:hover .card-eye-icon,
.wishlist-popup-img:hover .card-eye-icon {
  background: #0F3D34 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.product-card .card-actions .view-icon-btn,
.wishlist-popup-actions .view-icon-btn {
  display: none !important;
}

.product-card .card-actions .wa-btn {
  width: 100% !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .product-detail .product-weight-selector .weight-card {
    min-height: 140px !important;
  }

  .product-card .card-eye-icon,
  .wishlist-popup-image .card-eye-icon,
  .wishlist-popup-img .card-eye-icon {
    width: 34px !important;
    height: 34px !important;
    right: 10px;
    top: 10px;
    font-size: 14px !important;
  }
}

/* === v16: Full-width user product page container like reference === */
.product-detail.compact-product-detail {
  padding-top: clamp(34px, 4vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 58px) !important;
}

.product-detail.compact-product-detail>.container {
  width: min(1500px, calc(100% - 34px)) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.compact-product-detail .product-detail-grid {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 430px) !important;
  gap: clamp(32px, 5vw, 86px) !important;
  align-items: start !important;
  justify-content: stretch !important;
}

.compact-product-detail .product-gallery {
  width: 100% !important;
  max-width: none !important;
  justify-content: stretch !important;
  align-items: stretch !important;
}

.compact-product-detail .product-gallery .detail-image,
.compact-product-detail .product-gallery .product-main-image {
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(520px, 43vw, 700px) !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  background: #fffaf1 !important;
  border: 1px solid rgba(90, 55, 23, .10) !important;
}

.compact-product-detail .product-gallery .detail-image img,
.compact-product-detail .product-gallery .product-main-image img {
  height: clamp(552px, 55vw, 658px) !important;
  width: 100% !important;
  object-fit: cover !important;
}

.product-gallery-thumbs {
  flex: 0 0 86px !important;
  width: 86px !important;
  height: clamp(520px, 43vw, 700px) !important;
}

.product-gallery-thumb {
  flex: 0 0 82px !important;
  width: 82px !important;
  height: 82px !important;
  border-radius: 15px !important;
  background: #fffaf1 !important;
}

.product-gallery-thumb img {
  border-radius: 0 !important;
}

.compact-product-detail .detail-info {
  width: 100% !important;
  max-width: 430px !important;
  justify-self: start !important;
  padding-top: 2px !important;
}

@media (min-width: 1500px) {
  .compact-product-detail .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 440px) !important;
    gap: clamp(48px, 6vw, 104px) !important;
  }

  .compact-product-detail .detail-info {
    max-width: 440px !important;
  }
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .product-detail.compact-product-detail>.container {
    width: min(1120px, calc(100% - 28px)) !important;
  }

  .compact-product-detail .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 410px) !important;
    gap: clamp(24px, 3vw, 42px) !important;
  }

  .compact-product-detail .detail-info {
    max-width: 410px !important;
  }
}

@media (max-width: 1040px) {
  .product-detail.compact-product-detail>.container {
    width: min(760px, calc(100% - 24px)) !important;
  }

  .compact-product-detail .product-detail-grid {
    grid-template-columns: 1fr !important;
    max-width: none !important;
    gap: 24px !important;
  }

  .compact-product-detail .product-gallery {
    max-width: none !important;
  }

  .compact-product-detail .detail-info {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 680px) {
  .product-detail.compact-product-detail {
    padding-top: 22px !important;
  }

  .product-detail.compact-product-detail>.container {
    width: min(100% - 18px, 560px) !important;
  }

  .compact-product-detail .product-gallery .detail-image,
  .compact-product-detail .product-gallery .product-main-image {
    min-height: clamp(310px, 112vw, 470px) !important;
    height: clamp(310px, 124vw, 470px) !important;
  }

  .compact-product-detail .product-gallery .detail-image img,
  .compact-product-detail .product-gallery .product-main-image img {
    height: clamp(406px, 102vw, 622px) !important;
  }

  .product-gallery-thumbs {
    width: 100% !important;
    height: auto !important;
    max-height: 86px !important;
  }

  .product-gallery-thumb {
    flex: 0 0 74px !important;
    width: 74px !important;
    height: 74px !important;
  }
}

/* === End v16 full-width product page update === */

/* === Sachet-only quantity counter on product page === */
.sachet-quantity-card {
  display: grid;
  gap: 10px;
  width: min(320px, 100%);
  margin: 18px 0 8px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 250, 232, .96), rgba(255, 236, 184, .78));
  border: 1px solid rgba(146, 91, 24, .14);
  box-shadow: 0 18px 44px rgba(90, 55, 23, .10);
}

.sachet-quantity-title {
  color: #21483d;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}

.sachet-quantity-stepper {
  display: grid;
  grid-template-columns: 46px minmax(70px, 1fr) 46px;
  gap: 8px;
  align-items: center;
}

.sachet-quantity-stepper button,
.sachet-quantity-stepper input {
  min-height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(146, 91, 24, .18);
  font-weight: 950;
  text-align: center;
}

.sachet-quantity-stepper button {
  cursor: pointer;
  background: linear-gradient(135deg, #d89b22, #f6c659);
  color: #123f35;
  box-shadow: 0 10px 22px rgba(216, 155, 34, .22);
}

.sachet-quantity-stepper input {
  background: #fffdf7;
  color: #123f35;
  font-size: 17px;
  outline: none;
}

.sachet-quantity-card small {
  color: #6d5633;
  font-weight: 800;
}

/* === End sachet-only quantity counter === */

/* === Follow-up product detail scroll + compact sachet quantity === */
@media (min-width: 901px) {
  .compact-product-detail .detail-info {
    position: sticky;
    top: 92px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
  }
}

.sachet-quantity-card {
  display: inline-grid !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 10px 0 6px !important;
  padding: 9px 10px !important;
  gap: 6px !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 24px rgba(90, 55, 23, .08) !important;
}

.sachet-quantity-title {
  font-size: 10px !important;
  letter-spacing: .05em !important;
}

.sachet-quantity-stepper {
  grid-template-columns: 32px 50px 32px !important;
  gap: 5px !important;
}

.sachet-quantity-stepper button,
.sachet-quantity-stepper input {
  min-height: 32px !important;
  height: 32px !important;
  border-radius: 11px !important;
  font-size: 13px !important;
}

.sachet-quantity-stepper input {
  font-size: 14px !important;
  padding: 0 4px !important;
}

/* === End follow-up product changes === */


/* === Unified storefront refinements: logo, cards and homepage storytelling === */
.site-toast--corner {
  left: 20px;
  right: auto;
  bottom: 20px;
}

/* A larger logo is contained inside the existing header height. */
#navbar.dv-site-nav .dv-logo {
  width: 190px;
  height: 82px;
  display: flex;
  align-items: center;
  flex: 0 0 190px;
  overflow: visible;
}
#navbar.dv-site-nav .dv-logo img {
  width: 186px !important;
  height: 128px !important;
  max-width: 186px !important;
  object-fit: contain;
  object-position: left center;
}

/* Cleaner product cards with clear labels and product-story copy. */
.honey-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(68, 83, 39, .18) !important;
  background: #fffdf8 !important;
  border-radius: 22px !important;
  box-shadow: 0 11px 28px rgba(55, 45, 21, .09) !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.honey-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(203, 143, 37, .54) !important;
  box-shadow: 0 20px 38px rgba(61, 46, 18, .16) !important;
}
.honey-product-card .product-image {
  min-height: 252px;
  padding: 16px !important;
  overflow: hidden;
  background: #f6f0e5 !important;
  isolation: isolate;
}
.honey-product-card .product-image::before,
.honey-product-card .product-image::after {
  display: none !important;
  content: none !important;
}
.honey-product-card .product-image img {
  width: 100%;
  height: 238px;
  display: block;
  object-fit: contain;
  transition: transform .45s ease;
}
.honey-product-card:hover .product-image img { transform: scale(1.045); }
.honey-product-card .tag,
.honey-product-card .product-badge {
  background: #35512f !important;
  color: #fffdf7 !important;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 4px 12px rgba(22, 48, 25, .19);
}
.honey-product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 19px 18px 18px;
}
.honey-product-info h3 {
  margin: 0;
  color: #26351f;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.25vw, 29px);
  line-height: .95;
}
.honey-product-info h3 a { color: inherit; text-decoration: none; }
.honey-product-info h3 a:hover { color: #9e6414; }
.honey-product-type {
  margin: 1px 0 0;
  color: #976721;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.honey-product-flavour,
.honey-product-benefit {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.honey-product-flavour { color: #5d654d; }
.honey-product-benefit {
  color: #2f522f;
  font-weight: 600;
}
.honey-product-benefit i { color: #c08019; margin-right: 5px; }
.honey-product-info .product-meta {
  margin: 3px 0 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(64, 75, 41, .13);
}
.honey-product-info .product-meta strong { color: #2d4027; font-size: 20px; }
.honey-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: auto;
  padding-top: 3px;
}
.honey-product-actions .buy-now,
.honey-product-actions .enquire-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 999px;
  padding: 9px 11px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.honey-product-actions .buy-now {
  background: #304d2d;
  color: #fffdf7;
  border: 1px solid #304d2d;
}
.honey-product-actions .enquire-now {
  background: transparent;
  color: #304d2d;
  border: 1px solid rgba(48, 77, 45, .45);
}
.honey-product-actions .buy-now:hover,
.honey-product-actions .enquire-now:hover { transform: translateY(-2px); }
.honey-product-actions .buy-now:hover { background: #203b20; }
.honey-product-actions .enquire-now:hover { background: #eef4e9; border-color: #304d2d; }

/* Hive to Bottle. */
.hive-bottle-section {
  padding: 88px 0;
  overflow: hidden;
}
.hive-bottle-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hive-bottle-copy .eyebrow,
.home-section-eyebrow {
  margin: 0 0 10px;
  color: #e3b95b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hive-bottle-copy h2,
.home-reviews-head h2,
.impact-copy h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 67px);
  line-height: .92;
  letter-spacing: -.025em;
}
.hive-bottle-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 253, 246, .78);
  font-size: 16px;
  line-height: 1.65;
}
.hive-bottle-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.hive-bottle-step {
  position: relative;
  min-height: 225px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 19px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 10px 24px rgba(0,0,0,.14);
}
.hive-bottle-step img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .66;
  filter: saturate(.88);
}
.hive-bottle-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,13,.05) 16%, rgba(12,33,18,.87) 100%);
}
.hive-bottle-step > * { position: relative; z-index: 1; }
.hive-step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edbb4d;
  color: #1e3a20;
  font-weight: 800;
  font-size: 13px;
}
.hive-bottle-step h3 { margin: 0; font-size: 19px; }
.hive-bottle-step p { margin: 6px 0 0; color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.45; }

/* Reels-style brand stories. */
.home-reels-section { padding: 90px 0 74px;}
.home-section-heading { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
.home-section-heading h2 { margin: 0; color: #2d4328; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(40px, 5vw, 61px); line-height: .92; }
.home-section-heading > p:last-child { max-width: 380px; margin: 0; color: #61705b; line-height: 1.55; }
.home-reel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.home-reel-card {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  border-radius: 20px;
  background: #3b5b31;
  color: #fffdf6;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 12px 26px rgba(62,51,27,.13);
}
.home-reel-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.home-reel-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,30,17,.06) 32%, rgba(13,35,18,.88) 100%); z-index: -1; }
.home-reel-card:hover img { transform: scale(1.07); }
.home-reel-card > *:not(img) { position: relative; z-index: 1; }
.home-reel-card .reel-play { position: absolute; top: 18px; left: 18px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,253,246,.92); color: #2b502b; box-shadow: 0 5px 14px rgba(0,0,0,.16); }
.home-reel-card .reel-play i { margin-left: 2px; }
.home-reel-card .reel-copy { position: absolute; right: 18px; bottom: 18px; left: 18px; }
.home-reel-card small { color: #e7c265; font-size: 10px; letter-spacing: .14em; font-weight: 800; text-transform: uppercase; }
.home-reel-card h3 { margin: 8px 0 0; color: #fffdf6; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 29px; line-height: .95; }

/* Combined homepage review wall. */
.home-reviews-section { padding: 85px 0;}
.home-reviews-wrap { border-radius: 28px; padding: clamp(28px, 4.5vw, 62px); background: linear-gradient(145deg, #fff9e8, #f5eddd); border: 1px solid rgba(167,120,30,.15); }
.home-reviews-head { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 32px; color: #293c27; }
.home-reviews-head .eyebrow { color: #9d671b; }
.home-review-summary { min-width: 138px; text-align: right; }
.home-review-summary strong { display: block; color: #2b4a2c; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 49px; line-height: .8; }
.home-review-summary span { color: #96691f; font-size: 12px; font-weight: 700; }
.home-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.home-review-card { padding: 21px; border-radius: 16px; background: rgba(255,255,255,.73); border: 1px solid rgba(82,92,51,.12); }
.home-review-card .home-review-stars { color: #c98318; font-size: 15px; letter-spacing: .08em; }
.home-review-card h3 { margin: 15px 0 7px; color: #30462c; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 23px; line-height: 1; }
.home-review-card p { margin: 0; color: #53604e; font-size: 13px; line-height: 1.55; }
.home-review-card footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; color: #756f5a; font-size: 11px; }
.home-review-card footer a { color: #31522f; font-weight: 700; text-decoration: none; }
.home-review-empty { padding: 24px; text-align: center; border: 1px dashed rgba(48,80,47,.28); border-radius: 16px; color: #5d6754; }

/* Purpose-led impact section. */
.our-impact-section { padding: 90px 0; overflow: hidden; }
.impact-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(330px, 1.12fr); gap: clamp(32px, 6vw, 82px); align-items: center; }
.impact-copy { color: #24381f; }
.impact-copy .eyebrow { color: #654309; }
.impact-copy h2 { color: #263b22; }
.impact-copy > p:not(.eyebrow) { max-width: 500px; margin: 20px 0 0; color: rgba(43,57,25,.84); line-height: 1.63; }
.impact-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.impact-stat { padding: 23px 20px; min-height: 168px; border-radius: 18px; background: rgba(255,253,246,.86); box-shadow: 0 12px 24px rgba(107,70,9,.12); }
.impact-stat i { color: #a46b10; font-size: 23px; }
.impact-stat strong { display: block; margin-top: 22px; color: #2e4a2d; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 27px; line-height: .94; }
.impact-stat span { display: block; margin-top: 7px; color: #5a674d; font-size: 12px; line-height: 1.45; }

@media (max-width: 1050px) {
  .home-reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hive-bottle-grid, .impact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  #navbar.dv-site-nav .dv-logo {
    width: min(156px, 44vw);
    height: var(--dv-user-nav-mobile-h, 70px);
    flex-basis: min(156px, 44vw);
  }
  #navbar.dv-site-nav .dv-logo img {
    width: min(154px, 44vw) !important;
    height: 104px !important;
    max-width: min(154px, 44vw) !important;
  }
  .honey-product-card .product-image { min-height: 218px; }
  .honey-product-card .product-image img { height: 204px; }
  .hive-bottle-section, .home-reels-section, .home-reviews-section, .our-impact-section { padding: 64px 0; }
  .home-section-heading, .home-reviews-head { display: block; }
  .home-section-heading > p:last-child { margin-top: 16px; }
  .home-review-summary { text-align: left; margin-top: 20px; }
  .home-review-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 26px 16px !important;
  }
  .site-footer .footer-main,
  .site-footer .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .site-footer .footer-support-col { grid-column: 2; }
}
@media (max-width: 560px) {
  .honey-product-actions { grid-template-columns: 1fr; }
  .hive-bottle-steps, .impact-stat-grid { grid-template-columns: 1fr; }
  .hive-bottle-step { min-height: 195px; }
  .home-reel-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-reel-card { min-height: 270px; border-radius: 15px; }
  .home-reel-card .reel-copy { right: 12px; bottom: 13px; left: 12px; }
  .home-reel-card h3 { font-size: 22px; }
  .home-reel-card .reel-play { top: 12px; left: 12px; width: 35px; height: 35px; font-size: 12px; }
  .home-reviews-wrap { border-radius: 20px; }
  .site-toast--corner { left: 12px; right: 12px; bottom: 12px; }
}
/* === End unified storefront refinements === */

/* Homepage markup alignment for the unified storefront refinements. */
.honey-product-info .honey-product-taste {
  margin: 1px 0 0;
  color: #5d654d;
  font-size: 13px;
  line-height: 1.45;
}
.honey-product-info .honey-product-taste i { color: #c08019; margin-right: 5px; }
.honey-product-info .honey-product-price {
  margin: 3px 0 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(64, 75, 41, .13);
}
.honey-product-info .honey-product-price .current-price,
.honey-product-info .honey-product-price strong { color: #2d4027; font-size: 20px; }
.honey-product-actions .product-card-buy,
.honey-product-actions .product-card-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 999px;
  padding: 9px 11px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.honey-product-actions .product-card-buy { background: #304d2d !important; color: #fffdf7 !important; border: 1px solid #304d2d !important; }
.honey-product-actions .product-card-inquiry { background: transparent !important; color: #304d2d !important; border: 1px solid rgba(48,77,45,.45) !important; }
.honey-product-actions .product-card-buy:hover,
.honey-product-actions .product-card-inquiry:hover { transform: translateY(-2px); }
.honey-product-actions .product-card-inquiry:hover { background: #eef4e9 !important; border-color: #304d2d !important; }

.hive-bottle-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .78fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}
.hive-bottle-intro .hive-kicker { margin: 0 0 9px; color: #e3b95b; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hive-bottle-intro h2 { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(40px, 5vw, 67px); line-height: .92; letter-spacing: -.025em; }
.hive-bottle-intro > p { max-width: 520px; margin: 0; color: rgba(255,253,246,.78); font-size: 16px; line-height: 1.65; }
.hive-bottle-step > div:last-child { position: relative; z-index: 1; }
.hive-bottle-step > div:last-child > span { display: block; color: #e7c265; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.home-section-heading > p:first-child { margin: 0 0 10px; color: #9d671b; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-section-heading h2 { grid-column: 1 / 2; }
.home-heading-link { margin-left: auto; padding: 10px 0; color: #31522f; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.home-heading-link:hover { color: #9e6414; }
.home-heading-link i { margin-left: 5px; }
.home-reels-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.home-reel-card .home-reel-shade { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(15,30,17,.06) 32%, rgba(13,35,18,.88) 100%); }
.home-reel-card .home-reel-play { position: absolute; top: 18px; left: 18px; z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,253,246,.92); color: #2b502b; box-shadow: 0 5px 14px rgba(0,0,0,.16); }
.home-reel-card .home-reel-play i { margin-left: 2px; }
.home-reel-card .home-reel-copy { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 1; }
.home-reel-card .home-reel-copy small { display: block; color: #e7c265; font-size: 10px; letter-spacing: .14em; font-weight: 800; text-transform: uppercase; }
.home-reel-card .home-reel-copy strong { display: block; margin-top: 8px; color: #fffdf6; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 29px; line-height: .95; }

.home-reviews-head > div:first-child > .reviews-kicker { margin: 0 0 10px; color: #9d671b; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-reviews-head > div:first-child > p:last-child { max-width: 500px; margin: 16px 0 0; color: #62705b; line-height: 1.55; }
.home-review-score { min-width: 150px; text-align: right; }
.home-review-score strong { display: block; color: #2b4a2c; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 49px; line-height: .8; }
.home-review-score span { display: block; margin-top: 7px; color: #c98318; font-size: 15px; letter-spacing: .08em; }
.home-review-score small { color: #756f5a; font-size: 11px; }
.home-review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.home-review-avatar { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: #dfe8d8; color: #31522f; font-size: 13px; font-weight: 800; }
.home-review-empty { display: grid; justify-items: center; gap: 8px; padding: 30px 20px; text-align: center; border: 1px dashed rgba(48,80,47,.28); border-radius: 16px; color: #5d6754; }
.home-review-empty i { color: #c98318; font-size: 21px; }
.home-review-empty strong { color: #31522f; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 27px; }
.home-review-empty span { font-size: 13px; }

.impact-shell { display: grid; grid-template-columns: minmax(0, .88fr) minmax(330px, 1.12fr); gap: clamp(32px, 6vw, 82px); align-items: center; }
.impact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.impact-copy .impact-kicker { margin: 0 0 10px; color: #654309; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.impact-copy h2 { color: #263b22; }
.impact-copy h2 em, .hive-bottle-intro h2 em, .home-section-heading h2 em, .home-reviews-head h2 em { color: inherit; font-style: italic; }
.impact-copy > p:last-of-type { max-width: 500px; margin: 20px 0 0; color: rgba(43,57,25,.84); line-height: 1.63; }
.impact-link { margin-top: 24px; }
.impact-card { position: relative; min-height: 174px; padding: 23px 20px; border-radius: 18px; background: rgba(255,253,246,.86); box-shadow: 0 12px 24px rgba(107,70,9,.12); }
.impact-card i { color: #a46b10; font-size: 23px; }
.impact-card > span { position: absolute; top: 20px; right: 20px; color: rgba(164,107,16,.55); font-size: 12px; font-weight: 800; letter-spacing: .09em; }
.impact-card h3 { margin: 22px 0 0; color: #2e4a2d; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 27px; line-height: .94; }
.impact-card p { margin: 8px 0 0; color: #5a674d; font-size: 12px; line-height: 1.45; }

@media (max-width: 1050px) {
  .home-reels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-shell { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .hive-bottle-intro { grid-template-columns: 1fr; gap: 15px; }
  .home-review-score { text-align: left; margin-top: 20px; }
  .home-section-heading h2 { margin-top: 4px; }
}
@media (max-width: 560px) {
  .home-reels-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-reel-card .home-reel-copy { right: 12px; bottom: 13px; left: 12px; }
  .home-reel-card .home-reel-copy strong { font-size: 22px; }
  .home-reel-card .home-reel-play { top: 12px; left: 12px; width: 35px; height: 35px; font-size: 12px; }
  .impact-grid { grid-template-columns: 1fr; }
}


/* === Product card title safety + playable home reel previews === */
.honey-product-info h3 {
  min-height: 0 !important;
  overflow: visible !important;
  padding-block: .08em .12em;
  line-height: 1.12 !important;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}
.honey-product-info h3 a { display: block; }

.home-reel-card.home-reel-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.home-reel-card.home-reel-trigger:focus-visible {
  outline: 3px solid rgba(207, 150, 42, .75);
  outline-offset: 4px;
}
.home-reel-card.home-reel-trigger:hover .home-reel-play {
  transform: scale(1.08);
}
.home-reel-card .home-reel-play { transition: transform .22s ease, background .22s ease, color .22s ease; }
.home-reel-card.home-reel-trigger:hover .home-reel-play { background: #fffdf6; color: #b06d11; }

.home-reel-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  place-items: center;
  padding: 18px;
}
.home-reel-modal.is-open { display: grid; }
.home-reel-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 18, 9, .78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.home-reel-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 22px;
  background: #152615;
  color: #fffdf7;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .45);
  animation: homeReelModalIn .22s ease both;
}
@keyframes homeReelModalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.home-reel-modal-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: rgba(19, 36, 18, .78);
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.home-reel-modal-close:hover { transform: rotate(90deg); background: #9c6616; }
.home-reel-video-wrap {
  aspect-ratio: 9 / 16;
  max-height: min(73vh, 650px);
  overflow: hidden;
  background: #0a120a;
}
.home-reel-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a120a;
}
.home-reel-modal-copy { padding: 17px 20px 20px; }
.home-reel-modal-copy small {
  display: block;
  margin-bottom: 7px;
  color: #e5bd62;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-reel-modal-copy h3 {
  margin: 0;
  color: #fffdf7;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 31px;
  line-height: .98;
}
.home-reel-modal-copy p {
  margin: 9px 0 0;
  color: rgba(255, 253, 247, .72);
  font-size: 12px;
  line-height: 1.5;
}
html.home-reel-modal-open,
body.home-reel-modal-open { overflow: hidden; }

@media (max-width: 560px) {
  .honey-product-info h3 { font-size: 24px !important; line-height: 1.13 !important; }
  .home-reel-modal { padding: 10px; }
  .home-reel-modal-dialog { width: min(100%, 370px); border-radius: 18px; }
  .home-reel-modal-copy { padding: 14px 16px 17px; }
  .home-reel-modal-copy h3 { font-size: 27px; }
}
/* === End product card title safety + playable home reel previews === */

/* === WhatsApp-only product cards and live reel previews === */
.honey-product-info .honey-product-taste,
.honey-product-info .honey-product-benefit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  margin: 1px 0 0;
  line-height: 1.48;
}
.honey-product-info .honey-product-taste {
  color: #5d654d;
  font-size: 13px;
}
.honey-product-info .honey-product-benefit {
  color: #2f522f;
  font-size: 13px;
  font-weight: 600;
}
.honey-card-meta-label {
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  color: #93611b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.1;
  text-transform: uppercase;
}
.honey-product-actions {
  grid-template-columns: minmax(0, 1fr) !important;
  margin-top: auto;
}
.honey-product-actions .product-card-inquiry--full {
  width: 100%;
  min-height: 45px;
  gap: 8px;
  border-color: #31522f !important;
  background: #31522f !important;
  color: #fffdf7 !important;
  box-shadow: 0 9px 16px rgba(48, 77, 45, .16);
}
.honey-product-actions .product-card-inquiry--full:hover {
  transform: translateY(-2px);
  border-color: #213f21 !important;
  background: #213f21 !important;
  color: #fffdf7 !important;
}
.honey-product-actions .product-card-inquiry--full .fa-whatsapp { font-size: 16px; }

.home-reels-section { overflow: hidden; }
.home-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
.home-reel-card.home-reel-trigger {
  position: relative;
  min-height: 0;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 22px;
  background: #1c3420;
  box-shadow: 0 18px 32px rgba(46, 64, 32, .16);
  isolation: isolate;
}
.home-reel-card.home-reel-trigger::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 27, 14, .02) 18%, rgba(11, 30, 15, .14) 48%, rgba(10, 28, 13, .86) 100%);
}
.home-reel-card .home-reel-preview {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover;
  background: #1c3420;
  opacity: 1;
  transform: scale(1.001);
  transition: transform .55s ease, filter .3s ease;
}
.home-reel-card.home-reel-trigger:hover .home-reel-preview,
.home-reel-card.home-reel-trigger:focus-visible .home-reel-preview {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}
.home-reel-card .home-reel-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  background: transparent;
}
.home-reel-card .home-reel-status {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(12, 31, 15, .56);
  color: #fffdf7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.home-reel-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e6bb57;
  box-shadow: 0 0 0 4px rgba(230, 187, 87, .15);
}
.home-reel-card .home-reel-play {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 14px;
  bottom: 14px;
  left: auto;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 253, 246, .94);
  color: #2c512d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}
.home-reel-card .home-reel-copy {
  position: absolute;
  z-index: 2;
  right: 69px;
  bottom: 17px;
  left: 15px;
}
.home-reel-card .home-reel-copy small {
  display: block;
  margin-bottom: 6px;
  color: #f0ca70;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.home-reel-card .home-reel-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fffdf7;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 700;
  line-height: .92;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.home-reel-card.home-reel-trigger:hover .home-reel-play {
  transform: scale(1.09);
  background: #e6bb57;
  color: #203e22;
}
.home-reel-card.home-reel-trigger:focus-visible {
  outline: 3px solid #d6a23a;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .home-reels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .honey-product-info .honey-product-taste,
  .honey-product-info .honey-product-benefit { grid-template-columns: 52px minmax(0, 1fr); gap: 7px; }
  .home-reels-grid {
    display: grid;
    grid-auto-columns: minmax(224px, 74vw);
    grid-auto-flow: column;
    grid-template-columns: unset;
    overflow-x: auto;
    padding: 2px 3px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-reels-grid::-webkit-scrollbar { display: none; }
  .home-reel-card.home-reel-trigger { scroll-snap-align: start; border-radius: 18px; }
  .home-reel-card .home-reel-status { top: 12px; left: 12px; }
  .home-reel-card .home-reel-play { right: 12px; bottom: 12px; width: 42px; height: 42px; }
  .home-reel-card .home-reel-copy { right: 61px; bottom: 14px; left: 13px; }
}
/* === End WhatsApp-only product cards and live reel previews === */

/* === HoneyVeda-inspired product-card redesign (Divy Bee Shop) ===
   Product cards use a simple name → flavour → benefit → price → inquiry hierarchy.
   This is original Divy Bee styling; only the information rhythm is inspired by the reference. */
.honey-product-card {
  overflow: hidden;
  border: 1px solid #dedacd !important;
  border-radius: 16px !important;
  background: #fffefa !important;
  box-shadow: 0 8px 20px rgba(47, 54, 29, .07) !important;
}
.honey-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69, 91, 47, .55) !important;
  box-shadow: 0 18px 34px rgba(47, 54, 29, .13) !important;
}
.honey-product-card .product-image {
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  padding: clamp(16px, 2vw, 25px) clamp(18px, 2.5vw, 31px) 14px !important;
  background:
    radial-gradient(circle at 50% 39%, rgba(236, 205, 135, .28), transparent 46%),
    linear-gradient(150deg, #f7f2e8 0%, #f1ebde 100%) !important;
}
.honey-product-card .product-image img {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain;
  filter: drop-shadow(0 14px 15px rgba(74, 58, 23, .16));
}
.honey-product-card:hover .product-image img { transform: scale(1.035); }
.honey-product-card .product-image .tag,
.honey-product-card .product-image .product-card-tag {
  top: 13px;
  left: 13px;
  z-index: 3;
  padding: 7px 10px;
  border: 0;
  border-radius: 20px;
  background: #31502e !important;
  box-shadow: none;
  color: #fffef9 !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.honey-product-card .card-eye-icon {
  top: 10px;
  right: 9px;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(49, 80, 46, .2);
  background: rgba(255, 254, 249, .92);
  color: #31502e;
  box-shadow: 0 4px 10px rgba(47, 54, 29, .10);
  opacity: 1;
  transform: none;
}
.honey-product-card .product-image:hover .card-eye-icon { transform: none; }

.honeyveda-card-info {
  gap: 0 !important;
  padding: 20px 20px 19px !important;
}
.honeyveda-card-info h3,
.honey-product-info h3 {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #22331e !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(25px, 2.1vw, 31px) !important;
  font-weight: 700;
  line-height: 1.02 !important;
  letter-spacing: -.018em;
  overflow: visible !important;
  text-wrap: balance;
}
.honeyveda-card-info h3 a {
  display: inline;
  color: inherit;
  text-decoration: none;
}
.honeyveda-card-info h3 a:hover { color: #a26b18; }
.honey-card-story {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  min-height: 78px;
}
.honey-product-info .honey-product-taste,
.honey-product-info .honey-product-benefit {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}
.honey-product-info .honey-product-taste {
  color: #4d5b43 !important;
  font-weight: 600;
}
.honey-taste-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-grid;
  place-items: center;
  margin-top: -1px;
  color: #835e14;
  font-size: 14px;
}
.honey-product-info .honey-product-benefit {
  color: #5e6b55 !important;
  font-weight: 500;
}
.honey-card-meta-label { display: none !important; }
.honey-card-price-row {
  display: flex;
  align-items: flex-end;
  min-height: 50px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #e9e3d7;
}
.honey-product-info .honey-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 9px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.honey-product-info .honey-product-price .sell-price,
.honey-product-info .honey-product-price .current-price,
.honey-product-info .honey-product-price strong {
  color: #24381f !important;
  font-size: 22px !important;
  font-weight: 800;
  line-height: 1;
}
.honey-product-info .honey-product-price .mrp-price {
  color: #948d7c;
  font-size: 11px;
}
.honey-product-info .honey-product-price .mrp-price span { display: none; }
.honey-product-info .honey-product-price .save-price {
  order: 3;
  padding: 3px 6px;
  border-radius: 3px;
  background: #e5efe0;
  color: #31502e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.honey-product-info .honey-product-price small {
  width: 100%;
  margin-top: 1px;
  color: #817a6a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.honey-product-actions {
  margin-top: 15px !important;
  padding: 0 !important;
}
.honey-product-actions .product-card-inquiry--full {
  min-height: 47px;
  border: 1px solid #2c4c2b !important;
  border-radius: 25px !important;
  background: #2c4c2b !important;
  box-shadow: none !important;
  color: #fffef9 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
}
.honey-product-actions .product-card-inquiry--full:hover {
  transform: translateY(-2px);
  border-color: #1e371f !important;
  background: #1e371f !important;
  box-shadow: 0 8px 16px rgba(44, 76, 43, .18) !important;
}
.honey-product-actions .product-card-inquiry--full .fa-whatsapp { font-size: 17px; }

@media (max-width: 560px) {
  .honey-product-card { border-radius: 13px !important; }
  .honeyveda-card-info { padding: 16px 15px 16px !important; }
  .honeyveda-card-info h3,
  .honey-product-info h3 { font-size: 25px !important; }
  .honey-card-story { min-height: 88px; margin-top: 11px; }
  .honey-product-info .honey-product-taste,
  .honey-product-info .honey-product-benefit { font-size: 12px !important; }
  .honey-card-price-row { margin-top: 13px; }
  .honey-product-info .honey-product-price .sell-price { font-size: 20px !important; }
  .honey-product-actions .product-card-inquiry--full { min-height: 43px; font-size: 10px !important; }
  .honey-product-card .product-image .tag,
  .honey-product-card .product-image .product-card-tag { top: 7px; left: 6px; padding: 5px 7px; font-size: 8px; }
  .honey-product-card .card-eye-icon { right: 4px; top: 5px; width: 31px; height: 31px; font-size: 11px; }
}
/* === End HoneyVeda-inspired product-card redesign === */


/* === Final product-card layout repair: prevent legacy two-column grid from compressing new card content === */
#shop .product-card .honeyveda-card-info,
.shop-section .product-card .honeyveda-card-info,
.shop-showcase .product-card .honeyveda-card-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
}

#shop .product-card .honeyveda-card-info > h3,
#shop .product-card .honeyveda-card-info > .honey-card-story,
#shop .product-card .honeyveda-card-info > .honey-card-price-row,
#shop .product-card .honeyveda-card-info > .honey-product-actions,
.shop-section .product-card .honeyveda-card-info > h3,
.shop-section .product-card .honeyveda-card-info > .honey-card-story,
.shop-section .product-card .honeyveda-card-info > .honey-card-price-row,
.shop-section .product-card .honeyveda-card-info > .honey-product-actions,
.shop-showcase .product-card .honeyveda-card-info > h3,
.shop-showcase .product-card .honeyveda-card-info > .honey-card-story,
.shop-showcase .product-card .honeyveda-card-info > .honey-card-price-row,
.shop-showcase .product-card .honeyveda-card-info > .honey-product-actions {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  min-width: 0 !important;
}

#shop .product-card .honeyveda-card-info h3,
.shop-section .product-card .honeyveda-card-info h3,
.shop-showcase .product-card .honeyveda-card-info h3 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-line-clamp: unset !important;
}

#shop .product-card .honey-card-story,
.shop-section .product-card .honey-card-story,
.shop-showcase .product-card .honey-card-story {
  width: 100% !important;
  min-height: 0 !important;
}

#shop .product-card .honey-card-price-row,
.shop-section .product-card .honey-card-price-row,
.shop-showcase .product-card .honey-card-price-row {
  width: 100% !important;
}
/* === End final product-card layout repair === */


/* === Reels, section order and reference-type refinements === */
:root {
  --dv-reference-sans: 'DM Sans', Arial, sans-serif;
  --dv-reference-serif: 'DM Serif Display', Georgia, serif;
}

body,
button,
input,
textarea,
select,
option {
  font-family: var(--dv-reference-sans) !important;
}

h1, h2, h3, h4, h5, h6,
.display-title,
.hero-content h1,
.section-title h2,
.home-section-heading h2,
.hive-bottle-intro h2,
.home-reel-card .home-reel-copy strong,
.home-reel-modal-copy h3,
.home-review-score strong,
.home-review-card h3,
.home-review-empty strong,
.impact-card h3,
.honeyveda-card-info h3,
.honey-product-info h3 {
  font-family: var(--dv-reference-serif) !important;
  font-weight: 400 !important;
}

.home-reels-section {
  position: relative;
  overflow: hidden;
 }
.home-reels-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 25px;
}
.home-reels-heading-row .home-section-heading { margin-bottom: 0; }
.home-reel-scroll-controls {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
}
.home-reel-scroll-button {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(47, 74, 45, .24);
  border-radius: 50%;
  background: #fffdf7;
  color: #31522f;
  box-shadow: 0 8px 18px rgba(47, 74, 45, .08);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.home-reel-scroll-button:hover,
.home-reel-scroll-button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  background: #31522f;
  color: #fffdf7;
}
.home-reel-scroll-button:disabled { opacity: .35; cursor: default; transform: none; }
.home-reels-grid.is-scrollable {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 15px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(49, 82, 47, .38) transparent;
}
.home-reels-grid.is-scrollable::-webkit-scrollbar { height: 8px; }
.home-reels-grid.is-scrollable::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(49, 82, 47, .32); }
.home-reels-grid.is-scrollable > .home-reel-card { flex: 0 0 calc((100% - 3 * clamp(12px, 1.5vw, 20px)) / 4); scroll-snap-align: start; }

/* Selling price, MRP and saving stay in one visual row. */
.honey-product-info .honey-product-price {
  display: grid !important;
  grid-template-columns: max-content max-content max-content;
  align-items: center;
  justify-content: start;
  column-gap: 9px;
  row-gap: 4px;
}
.honey-product-info .honey-product-price .sell-price { grid-column: 1; grid-row: 1; }
.honey-product-info .honey-product-price .mrp-price { grid-column: 2; grid-row: 1; white-space: nowrap; }
.honey-product-info .honey-product-price .save-price {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  order: initial;
  white-space: nowrap;
}
.honey-product-info .honey-product-price small {
  grid-column: 1 / -1;
  grid-row: 2;
  width: auto;
  margin-top: 0;
}

/* The reel player must cover every fixed header and menu layer. */
.home-reel-modal { z-index: 2147483646 !important; }
body.home-reel-modal-open .hv-topbar,
body.home-reel-modal-open .hv-topbar-track,
body.home-reel-modal-open #navbar,
body.home-reel-modal-open #navbar.dv-site-nav,
body.home-reel-modal-open .mobile-menu-backdrop {
  display: none !important;
}
.home-reel-modal-dialog {
  width: min(100%, 390px) !important;
  max-height: calc(100dvh - 24px);
  border: 1px solid rgba(255, 238, 185, .28) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(231, 185, 83, .23), transparent 38%),
    #102012 !important;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .52) !important;
}
.home-reel-modal.is-open .home-reel-modal-dialog { animation: dvReelRise .26s ease-out both; }
@keyframes dvReelRise {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.home-reel-video-wrap { max-height: min(69dvh, 630px) !important; }
.home-reel-modal-close {
  z-index: 5;
  top: 12px !important;
  right: 12px !important;
  background: rgba(11, 28, 13, .78) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}
.home-reel-modal-copy { padding: 15px 20px 19px !important; }
.home-reel-modal-copy h3 { font-size: 29px !important; }

@media (max-width: 900px) {
  .home-reels-heading-row { align-items: flex-start; }
  .home-reels-grid.is-scrollable > .home-reel-card { flex-basis: calc((100% - clamp(12px, 1.5vw, 20px)) / 2); }
}
@media (max-width: 560px) {
  .home-reels-heading-row { display: block; margin-bottom: 18px; }
  .home-reel-scroll-controls { margin-top: 12px; }
  .home-reel-scroll-button { width: 39px; height: 39px; }
  .home-reels-grid.is-scrollable {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(224px, 74vw);
    grid-template-columns: unset;
    padding-bottom: 12px;
  }
  .home-reels-grid.is-scrollable > .home-reel-card { width: auto; min-width: 0; }
  .honey-product-info .honey-product-price { column-gap: 7px; }
  .honey-product-info .honey-product-price .save-price { font-size: 8px; }
  .home-reel-modal { padding: 12px !important; }
  .home-reel-modal-dialog { width: min(100%, 360px) !important; border-radius: 21px !important; }
}
/* === End reels, section order and reference-type refinements === */

/* === Product-card row alignment: preserve the approved design, align every content line === */
#shop .products-grid,
.shop-section .products-grid {
  align-items: stretch;
}

#shop .honey-product-card,
.shop-section .honey-product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

#shop .honey-product-card .honeyveda-card-info,
.shop-section .honey-product-card .honeyveda-card-info {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

/* Reserve two title lines so one-line and two-line product names begin their details together. */
#shop .honey-product-card .honeyveda-card-info > h3,
.shop-section .honey-product-card .honeyveda-card-info > h3 {
  min-height: 2.04em !important;
}

/* Keep flavour and benefit content on a consistent shared baseline. */
#shop .honey-product-card .honey-card-story,
.shop-section .honey-product-card .honey-card-story {
  min-height: 64px !important;
}

/* Pin each price row and WhatsApp action to the same lower position in the card. */
#shop .honey-product-card .honey-card-price-row,
.shop-section .honey-product-card .honey-card-price-row {
  margin-top: auto !important;
}

#shop .honey-product-card .honey-product-actions,
.shop-section .honey-product-card .honey-product-actions {
  margin-top: 15px !important;
}

@media (max-width: 768px) {
  #shop .honey-product-card .honeyveda-card-info > h3,
  .shop-section .honey-product-card .honeyveda-card-info > h3 {
    min-height: 0 !important;
  }

  #shop .honey-product-card .honey-card-story,
  .shop-section .honey-product-card .honey-card-story {
    min-height: 0 !important;
  }
}
/* === End product-card row alignment === */

/* === Blog-card row alignment: match approved product-card alignment behavior === */
.blog-card-grid {
  align-items: stretch !important;
}

.blog-card-grid .site-blog-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-width: 0 !important;
}

.blog-card-grid .site-blog-img {
  flex: 0 0 auto !important;
}

.blog-card-grid .site-blog-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 0 !important;
  width: 100% !important;
}

.blog-card-grid .site-blog-date {
  min-height: 1.25em !important;
}

.blog-card-grid .site-blog-content h3,
.blog-card-grid .site-blog-content h3 a {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-line-clamp: unset !important;
}

.blog-card-grid .site-blog-content p {
  width: 100% !important;
  min-height: 5.25em !important;
}

.blog-card-grid .site-blog-link {
  margin-top: auto !important;
  align-self: flex-start !important;
}

@media (max-width: 768px) {
  .blog-card-grid .site-blog-date,
  .blog-card-grid .site-blog-content h3,
  .blog-card-grid .site-blog-content p {
    min-height: 0 !important;
  }
}
/* === End blog-card row alignment === */

/* === Homepage section polish: Hive-to-Jar 4-up grid, photo overlay and clean headings === */
.our-impact-section {
  display: none !important;
}

.home-section-heading--stack,
.home-section-heading--center,
.hive-bottle-intro,
.home-reviews-head > div:first-child {
  color: #253a22;
}

.home-section-heading--stack,
.home-section-heading--center {
  display: block !important;
}

.home-section-heading--center {
  max-width: 820px;
  margin: 0 auto 30px !important;
  text-align: center;
}

.home-section-heading--stack p,
.home-section-heading--center p,
.hive-bottle-intro .hive-kicker,
.home-reviews-head > div:first-child > .reviews-kicker {
  margin: 0 0 10px !important;
  color: #9d671b !important;
  font-family: var(--dv-reference-sans, 'DM Sans', Arial, sans-serif) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

.home-section-heading--stack h2,
.home-section-heading--center h2,
.hive-bottle-intro h2,
.home-reviews-head h2 {
  margin: 0 !important;
  color: #253a22 !important;
  font-family: var(--dv-reference-serif, 'DM Serif Display', Georgia, serif) !important;
  font-size: clamp(40px, 5vw, 64px) !important;
  font-weight: 400 !important;
  letter-spacing: -.025em !important;
  line-height: .96 !important;
}

.home-section-heading--stack h2 em,
.home-section-heading--center h2 em,
.hive-bottle-intro h2 em,
.home-reviews-head h2 em {
  color: #d18412 !important;
  font-style: italic !important;
}

.home-section-heading--stack > span,
.home-section-heading--center > span,
.hive-bottle-intro > p,
.home-reviews-head > div:first-child > p:last-child {
  display: block;
  max-width: 580px;
  margin-top: 14px !important;
  color: #5f6b58 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

.home-section-heading--center > span { margin-inline: auto; }

.home-promise-photo-section {
  padding: clamp(58px, 7vw, 96px) 0;
  overflow: hidden;
}

.home-promise-photo-card {
  position: relative;
  min-height: clamp(360px, 42vw, 610px);
  overflow: hidden;
  border: 1px solid rgba(179, 127, 37, .18);
  border-radius: clamp(22px, 3vw, 36px);
  background: #fff6dc;
  box-shadow: 0 28px 60px rgba(102, 68, 18, .14);
  isolation: isolate;
}

.home-promise-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.home-promise-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 230, .98) 0%, rgba(255, 248, 230, .86) 34%, rgba(255, 248, 230, .28) 62%, rgba(255, 248, 230, .05) 100%),
    radial-gradient(circle at 18% 28%, rgba(226, 172, 58, .18), transparent 40%);
}

.home-promise-overlay {
  width: min(540px, 90%);
  padding: clamp(34px, 5vw, 64px);
  color: #253a22;
}

.home-promise-overlay p {
  margin: 0 0 12px;
  color: #9d671b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-promise-overlay h2 {
  margin: 0;
  color: #253a22;
  font-family: var(--dv-reference-serif, 'DM Serif Display', Georgia, serif) !important;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
}

.home-promise-overlay h2 em {
  color: #d18412;
  font-style: italic;
}

.home-promise-overlay span {
  display: block;
  max-width: 420px;
  margin-top: 18px;
  color: #52624e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.home-promise-link {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0b473f;
  color: #fffdf7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 15px 26px rgba(11, 71, 63, .18);
  transition: transform .2s ease, background .2s ease;
}

.home-promise-link:hover {
  transform: translateY(-2px);
  background: #153f2c;
}

.hive-bottle-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 184, 83, .12), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f7f0df 100%) !important;
}

.hive-bottle-intro {
  display: block !important;
  max-width: 900px;
  margin: 0 auto 32px !important;
  text-align: center;
}

.hive-bottle-intro > p {
  margin-inline: auto !important;
}

.hive-bottle-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.5vw, 20px) !important;
  align-items: stretch !important;
}

.hive-bottle-step {
  min-height: clamp(320px, 27vw, 405px) !important;
  padding: 20px !important;
  border-radius: 22px !important;
}

.hive-bottle-step h3 {
  color: #fffdf7 !important;
  font-family: var(--dv-reference-serif, 'DM Serif Display', Georgia, serif) !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  font-weight: 400 !important;
  line-height: .98 !important;
  letter-spacing: -.02em !important;
}

.hive-bottle-step p {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.uses-photo-section {
  padding-top: clamp(58px, 7vw, 92px) !important;
}

.home-reels-heading-row {
  align-items: flex-end !important;
}

.home-reels-heading-row .home-section-heading--stack {
  max-width: 660px;
  margin-bottom: 0 !important;
}

.home-reel-scroll-controls {
  flex: 0 0 auto;
}

.home-reels-grid {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .hive-bottle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .home-promise-photo-card {
    min-height: 520px;
  }
  .home-promise-photo-card::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 230, .97) 0%, rgba(255, 248, 230, .86) 50%, rgba(255, 248, 230, .1) 100%),
      radial-gradient(circle at 20% 20%, rgba(226, 172, 58, .18), transparent 48%);
  }
  .home-promise-overlay {
    width: 100%;
    padding: 34px 24px;
  }
  .home-reels-heading-row {
    display: block !important;
  }
  .home-reel-scroll-controls {
    margin-top: 16px;
  }
}

@media (max-width: 620px) {
  .hive-bottle-grid {
    grid-template-columns: 1fr !important;
  }
  .hive-bottle-step {
    min-height: 330px !important;
  }
  .home-section-heading--stack h2,
  .home-section-heading--center h2,
  .hive-bottle-intro h2,
  .home-reviews-head h2 {
    font-size: clamp(36px, 12vw, 48px) !important;
  }
  .home-promise-overlay h2 {
    font-size: clamp(42px, 13vw, 58px);
  }
}
/* === End homepage section polish === */


/* === Sitewide decorative section polish + trust strip === */
:where(
  .story,
  .photo-showcase,
  .blog-section,
  .home-reels-section,
  .hive-bottle-section,
  .home-reviews-section,
  .home-promise-photo-section,
  .home-trust-section,
  .promo,
  .faq-section,
  .featured-section,
  .products-section,
  .shop-products-section,
  .product-detail-section,
  .category-section,
  .about-section,
  .contact-section,
  .dv-proceed-flow
) {
  position: relative;
  isolation: isolate;
}

:where(
  .story,
  .photo-showcase,
  .blog-section,
  .home-reels-section,
  .hive-bottle-section,
  .home-reviews-section,
  .home-promise-photo-section,
  .home-trust-section,
  .promo,
  .faq-section,
  .featured-section,
  .products-section,
  .shop-products-section,
  .product-detail-section,
  .category-section,
  .about-section,
  .contact-section,
  .dv-proceed-flow
) > :where(.container, .promo-img, .promo-copy, .dv-proceed-shell) {
  position: relative;
  z-index: 1;
}

.story::before,
.photo-showcase::after,
.blog-section::before,
.blog-section::after,
.home-reels-section::before,
.home-reels-section::after,
.hive-bottle-section::before,
.hive-bottle-section::after,
.home-reviews-section::before,
.home-reviews-section::after,
.home-promise-photo-section::before,
.home-trust-section::before,
.home-trust-section::after,
.promo::before,
.faq-section::before,
.featured-section::before,
.products-section::before,
.shop-products-section::before,
.product-detail-section::before,
.category-section::before,
.about-section::before,
.contact-section::before,
.dv-proceed-flow::before {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.story::before,
.blog-section::before,
.home-reels-section::before,
.hive-bottle-section::before,
.home-reviews-section::before,
.home-promise-photo-section::before,
.home-trust-section::before,
.promo::before,
.faq-section::before,
.featured-section::before,
.products-section::before,
.shop-products-section::before,
.product-detail-section::before,
.category-section::before,
.about-section::before,
.contact-section::before,
.dv-proceed-flow::before {
  width: clamp(150px, 18vw, 270px);
  height: clamp(150px, 18vw, 270px);
  border-radius: 999px;
  filter: blur(.2px);
  opacity: .82;
}

.story::before,
.blog-section::before,
.home-reels-section::before,
.home-trust-section::before,
.featured-section::before,
.products-section::before,
.product-detail-section::before,
.about-section::before,
.dv-proceed-flow::before {
  top: clamp(18px, 4vw, 52px);
  left: max(16px, 4vw);
}

.hive-bottle-section::before,
.home-promise-photo-section::before,
.promo::before,
.faq-section::before,
.shop-products-section::before,
.category-section::before,
.contact-section::before {
  right: max(16px, 4vw);
  bottom: clamp(18px, 4vw, 58px);
}

.photo-showcase::after,
.blog-section::after,
.home-reels-section::after,
.hive-bottle-section::after,
.home-reviews-section::after,
.home-trust-section::after {
  width: clamp(180px, 22vw, 340px);
  height: clamp(180px, 22vw, 340px);
  border-radius: 38% 62% 48% 52%;
  right: -90px;
  top: 12%;
  background:
    linear-gradient(135deg, rgba(255, 241, 194, .38), rgba(255, 255, 255, 0)),
    repeating-radial-gradient(circle at center, rgba(211, 146, 28, .16) 0 1px, transparent 1px 14px);
  opacity: .7;
  transform: rotate(-10deg);
}

.blog-section::after,
.home-reviews-section::after {
  left: -100px;
  right: auto;
  top: auto;
  bottom: 10%;
  transform: rotate(13deg);
}

.home-section-heading--center,
.home-section-heading--stack,
.hive-bottle-intro,
.home-reviews-head,
.trust-section-heading {
  position: relative;
}

.home-section-heading--center::after,
.home-section-heading--stack::after,
.hive-bottle-intro::after,
.trust-section-heading::after {
  content: '';
  display: block;
  width: clamp(78px, 10vw, 138px);
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d79823, #234c30, transparent);
  opacity: .9;
}

.home-section-heading--center::after,
.hive-bottle-intro::after,
.trust-section-heading::after { margin-left: auto; margin-right: auto; }

.home-trust-section {
  padding: clamp(58px, 7vw, 92px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 22%, rgba(222, 167, 55, .14), transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(38, 83, 49, .10), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f7efde 100%);
}

.trust-section-heading {
  max-width: 820px;
  margin: 0 auto clamp(26px, 4vw, 42px) !important;
  text-align: center;
}

.trust-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.trust-promise-card {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(51, 80, 45, .13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 246, .96), rgba(248, 239, 218, .92));
  box-shadow: 0 18px 42px rgba(93, 69, 26, .10);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.trust-promise-card::before {
  content: '';
  position: absolute;
  inset: auto -40px -56px auto;
  width: 140px;
  height: 140px;
  border-radius: 42% 58% 55% 45%;
  background: radial-gradient(circle, rgba(213, 148, 28, .18), transparent 64%);
  pointer-events: none;
}

.trust-promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(51, 80, 45, .25);
  box-shadow: 0 24px 52px rgba(76, 57, 22, .15);
}

.trust-promise-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #234d2f;
  color: #fff8dd;
  font-size: 20px;
  box-shadow: 0 13px 24px rgba(35, 77, 47, .18);
}

.trust-promise-card small {
  display: block;
  margin-top: 22px;
  color: #b87818;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trust-promise-card h3 {
  margin: 8px 0 0;
  color: #24402a;
  font-family: var(--dv-reference-serif, 'DM Serif Display', Georgia, serif);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
}

.trust-promise-card p {
  margin: 12px 0 0;
  color: #5a6853;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

@media (max-width: 1060px) {
  .trust-promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .trust-promise-grid { grid-template-columns: 1fr; }
  .story::before,
  .photo-showcase::after,
  .blog-section::before,
  .blog-section::after,
  .home-reels-section::before,
  .home-reels-section::after,
  .hive-bottle-section::before,
  .hive-bottle-section::after,
  .home-reviews-section::before,
  .home-reviews-section::after,
  .home-promise-photo-section::before,
  .home-trust-section::before,
  .home-trust-section::after,
  .promo::before,
  .faq-section::before,
  .featured-section::before,
  .products-section::before,
  .shop-products-section::before,
  .product-detail-section::before,
  .category-section::before,
  .about-section::before,
  .contact-section::before,
  .dv-proceed-flow::before {
    opacity: .42;
    transform: scale(.78);
  }
}
/* === End sitewide decorative section polish + trust strip === */

/* === Professional shop hero + clean premium finish (Jimmy request) === */
body {
  background: #faf6ed !important;
}
body::before {
  background: #faf6ed !important;
}
body::after {
  display: none !important;
}

.shop-reference-hero {
  padding: clamp(34px, 5vw, 62px) 0 clamp(24px, 4vw, 46px);
  background: transparent !important;
  overflow: hidden;
}
.shop-reference-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(280px, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: stretch;
}
.shop-hero-card {
  position: relative;
  min-height: clamp(290px, 27vw, 430px);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(35, 77, 47, .16);
  background: #fffaf1;
  box-shadow: 0 24px 70px rgba(69, 52, 19, .12);
  isolation: isolate;
}
.shop-hero-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(20, 47, 30, .28);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}
.shop-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 239, .76) 0%, rgba(255, 250, 239, .52) 48%, rgba(255, 250, 239, .92) 100%);
}
.shop-hero-card--photo::after {
  background: linear-gradient(90deg, rgba(28, 37, 22, .40) 0%, rgba(28, 37, 22, .12) 45%, rgba(28, 37, 22, .58) 100%);
}
.shop-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s ease;
}
.shop-hero-card:hover img {
  transform: scale(1.055);
}
.shop-hero-card-content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 4vw, 54px);
  color: #27392a;
}
.shop-hero-card--photo .shop-hero-card-content {
  color: #fffdf7;
  text-shadow: 0 2px 18px rgba(0,0,0,.22);
}
.shop-hero-card-content small {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 229, .72);
  color: #9a681e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.shop-hero-card--photo .shop-hero-card-content small {
  background: rgba(255, 250, 239, .18);
  color: #ffe7a8;
  backdrop-filter: blur(8px);
}
.shop-hero-card-content h1 {
  max-width: 440px;
  margin: 0;
  color: inherit;
  font-family: var(--dv-reference-serif, 'DM Serif Display', Georgia, serif) !important;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400 !important;
  line-height: .96;
  letter-spacing: -.035em;
}
.shop-hero-card--center .shop-hero-card-content h1 {
  font-size: clamp(34px, 3.7vw, 56px);
}
.shop-hero-card-content p {
  max-width: 390px;
  margin: 16px auto 0;
  color: rgba(39, 57, 42, .76);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}
.shop-hero-card--photo .shop-hero-card-content p {
  color: rgba(255, 253, 247, .86);
}
.shop-hero-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 999px;
  background: #f15a2a;
  color: #fffdf7 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 13px 26px rgba(196, 82, 31, .20);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.shop-hero-card-btn:hover {
  transform: translateY(-2px);
  background: #db4d23;
  box-shadow: 0 17px 34px rgba(196, 82, 31, .25);
}

.home-review-grid {
  align-items: stretch;
}
.home-review-card {
  display: flex;
  flex-direction: column;
  min-height: 215px;
}
.home-review-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-review-card footer {
  margin-top: auto !important;
}
.home-review-card footer span {
  color: #31522f;
  font-weight: 700;
}

:where(
  .story,
  .blog-section,
  .home-reels-section,
  .hive-bottle-section,
  .home-reviews-section,
  .home-promise-photo-section,
  .home-trust-section,
  .promo,
  .faq-section,
  .featured-section,
  .products-section,
  .shop-products-section,
  .product-detail-section,
  .category-section,
  .about-section,
  .contact-section,
  .dv-proceed-flow,
  .shop-showcase,
  .shop-section,
  .category,
  .why,
  .photo-showcase
) {
  background: transparent !important;
}

.story::after,
.blog-section::after,
.home-reels-section::after,
.hive-bottle-section::after,
.home-reviews-section::after,
.home-promise-photo-section::after,
.home-trust-section::after,
.promo::after,
.faq-section::after,
.featured-section::after,
.products-section::after,
.shop-products-section::after,
.product-detail-section::after,
.category-section::after,
.about-section::after,
.contact-section::after,
.dv-proceed-flow::after,
.photo-showcase::after,
.shop-showcase::before {
  display: none !important;
}

.story::before,
.blog-section::before,
.home-reels-section::before,
.hive-bottle-section::before,
.home-reviews-section::before,
.home-promise-photo-section::before,
.home-trust-section::before,
.promo::before,
.faq-section::before,
.featured-section::before,
.products-section::before,
.shop-products-section::before,
.product-detail-section::before,
.category-section::before,
.about-section::before,
.contact-section::before,
.dv-proceed-flow::before {
  width: clamp(84px, 10vw, 146px) !important;
  height: clamp(84px, 10vw, 146px) !important;
  border-radius: 34% 66% 58% 42% !important;
  background: linear-gradient(135deg, rgba(218, 158, 42, .10), rgba(35, 77, 47, .055)) !important;
  border: 1px solid rgba(35, 77, 47, .055) !important;
  filter: none !important;
  opacity: .55 !important;
  transform: rotate(-10deg) !important;
}

.shop-filter.luxury-filter,
.home-reviews-wrap,
.trust-promise-card,
.product-card,
.premium-card,
.site-blog-card,
.faq-item,
.category-card,
.photo-showcase-card,
.home-promise-photo-card {
  box-shadow: 0 18px 48px rgba(63, 48, 19, .10) !important;
}

@media (max-width: 1180px) {
  .shop-reference-hero-grid {
    grid-template-columns: 1fr;
  }
  .shop-hero-card {
    min-height: clamp(300px, 52vw, 430px);
  }
}
@media (max-width: 780px) {
  .shop-reference-hero {
    padding-top: 24px;
  }
  .shop-reference-hero-grid {
    gap: 14px;
  }
  .shop-hero-card {
    min-height: 330px;
    border-radius: 20px;
  }
  .shop-hero-card::before {
    inset: 8px;
    border-radius: 15px;
  }
  .shop-hero-card-content {
    padding: 26px 22px;
  }
  .shop-hero-card-content h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .home-review-card p {
    -webkit-line-clamp: 5;
  }
}
/* === End professional shop hero + clean premium finish === */


/* === Mobile shop banner slider + HoneyVeda-style marquee === */
.dv-promo-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(61, 83, 45, .10);
  border-bottom: 1px solid rgba(61, 83, 45, .10);
  background: #fde8bc !important;
  color: #2b2b23;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34);
}
.dv-promo-marquee-track {
  display: flex;
  width: max-content;
  animation: dvMarqueeFlow 26s linear infinite;
  will-change: transform;
}
.dv-promo-marquee:hover .dv-promo-marquee-track {
  animation-play-state: paused;
}
.dv-promo-marquee-group {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.dv-promo-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .025em;
}
.dv-promo-marquee span i {
  color: #ad721a;
  font-size: 13px;
}
.home-promo-marquee {
  margin-top: 0;
}
.shop-promo-marquee {
  margin-top: 0;
}
@keyframes dvMarqueeFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 780px) {
  .shop-reference-hero {
    padding: 20px 0 22px;
  }
  .shop-reference-hero-grid[data-shop-hero-slider] {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 18px 12px;
    max-width: 100%;
  }
  .shop-reference-hero-grid[data-shop-hero-slider]::-webkit-scrollbar {
    height: 0;
  }
  .shop-reference-hero-grid[data-shop-hero-slider] .shop-hero-card {
    flex: 0 0 min(88vw, 410px);
    width: min(88vw, 410px);
    min-height: 330px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .shop-reference-hero-grid[data-shop-hero-slider] .shop-hero-card:first-child {
    margin-left: 0;
  }
  .shop-reference-hero-grid[data-shop-hero-slider] .shop-hero-card:last-child {
    margin-right: 0;
  }
  .dv-promo-marquee-track {
    animation-duration: 18s;
  }
  .dv-promo-marquee span {
    padding: 11px 20px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dv-promo-marquee-track {
    animation: none;
  }
  .shop-reference-hero-grid[data-shop-hero-slider] {
    scroll-behavior: auto;
  }
}
/* === End mobile shop banner slider + marquee === */

/* AJAX category filter loading state. */
.shop-showcase.is-loading .products-grid,
.products-grid[data-shop-products-grid].is-loading {
  opacity: .48;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease;
}
.products-grid[data-shop-products-grid] {
  transition: opacity .22s ease, transform .22s ease;
}

/* === Homepage reviews now match product-page review design === */
.home-reviews-section.product-reviews-section {
  background: transparent;
}

.home-product-reviews-card {
  margin: 0;
}

.home-product-review-list .review-item {
  min-height: 0;
}

.home-review-product-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  color: #0F3D34;
  font-weight: 900;
  text-decoration: none;
}

.home-review-product-link::before {
  content: "•";
  color: #c98318;
}

.home-review-product-link:hover {
  color: #4b250d;
}
/* === End homepage reviews product-page match === */

/* === Homepage reviews horizontal product-card layout === */
.home-reviews-section.product-reviews-section .home-product-reviews-card {
  grid-template-columns: minmax(260px, .9fr) minmax(260px, 1fr);
  align-items: stretch;
}

.home-reviews-section.product-reviews-section .home-review-list-panel {
  grid-column: 1 / -1;
  width: 100%;
}

.home-reviews-section.product-reviews-section .home-product-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.home-reviews-section.product-reviews-section .home-product-review-list .review-item {
  height: 100%;
  min-height: 210px;
  align-content: start;
}

.home-reviews-section.product-reviews-section .compact-review-carousel-controls {
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .home-reviews-section.product-reviews-section .home-product-reviews-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-reviews-section.product-reviews-section .home-product-review-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .home-reviews-section.product-reviews-section .home-product-review-list::-webkit-scrollbar {
    display: none;
  }

  .home-reviews-section.product-reviews-section .home-product-review-list .review-item {
    flex: 0 0 min(84vw, 360px);
    min-height: 220px;
    scroll-snap-align: start;
  }
}
/* === End homepage reviews horizontal product-card layout === */

/* === Review long text wrap fix (product page + homepage reviews) === */
.review-item,
.review-item *,
.home-reviews-section.product-reviews-section .review-item,
.home-reviews-section.product-reviews-section .review-item * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.review-item h3,
.review-item p,
.review-head strong,
.review-date,
.home-review-product-link,
.home-reviews-section.product-reviews-section .review-item h3,
.home-reviews-section.product-reviews-section .review-item p,
.home-reviews-section.product-reviews-section .review-head strong,
.home-reviews-section.product-reviews-section .review-date,
.home-reviews-section.product-reviews-section .home-review-product-link {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-head {
  flex-wrap: wrap;
  align-items: flex-start;
}

.review-head span,
.review-stars {
  white-space: nowrap;
  flex-shrink: 0;
}
/* === End review long text wrap fix === */

/* === 2026-06-19 mobile responsive repair v2 ===
   Restores natural image framing, keeps product jars fully visible,
   and shows 2 product cards per row on mobile. */
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  max-width: 100%;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 20px, 720px) !important;
    max-width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Keep hero/banner/story images looking like the original design.
     Do not force these images into contain mode, because that creates
     empty boxes and breaks the visual design on phones. */
  .shop-hero-card,
  .category-card,
  .site-blog-img,
  .blog-image,
  .faq-image-card,
  .photo-showcase-card,
  .home-promise-photo-card,
  .hive-bottle-step,
  .home-reel-card,
  .why-choose-single-image,
  .hero-slide {
    overflow: hidden !important;
  }

  .shop-hero-card img,
  .category-card img,
  .site-blog-img img,
  .blog-image img,
  .faq-image-card img,
  .photo-showcase-card img,
  .home-promise-photo-card img,
  .hive-bottle-step img,
  .home-reel-card img,
  .why-choose-single-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .shop-hero-card img,
  .home-promise-photo-card img,
  .category-card img,
  .site-blog-img img,
  .hive-bottle-step img,
  .home-reel-card img {
    transform: none !important;
  }

  .hero-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .story-grid,
  .faq-layout,
  .hive-bottle-grid,
  .impact-grid,
  .footer-grid,
  .product-detail-grid,
  .compact-product-detail .product-detail-grid,
  .profile-grid,
  .auth-shell,
  .checkout-grid,
  .cart-layout {
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
  }

  /* Main request: 2 product cards per row on mobile. */
  #shop .products-grid,
  .shop-section .products-grid,
  .shop-showcase .products-grid,
  .products-grid[data-shop-products-grid],
  .premium-products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  #shop .product-card,
  .shop-section .product-card,
  .shop-showcase .product-card,
  .shop-showcase .premium-card,
  .product-card.premium-card,
  .premium-card.honey-product-card,
  .honey-product-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px !important;
    border-radius: 16px !important;
    height: 100% !important;
  }

  /* Product cards only: show full bottle/jar without cropping. */
  #shop .product-image,
  .shop-section .product-image,
  .shop-showcase .product-image,
  .product-card .product-image,
  .premium-card .product-image,
  .honey-product-card .product-image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    aspect-ratio: 1 / 1.05 !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #f6f0e5 !important;
  }

  #shop .product-image img,
  .shop-section .product-image img,
  .shop-showcase .product-image img,
  .product-card .product-image img,
  .premium-card .product-image img,
  .honey-product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  #shop .product-card:hover .product-image img,
  .shop-section .product-card:hover .product-image img,
  .shop-showcase .product-card:hover .product-image img,
  .product-card:hover .product-image img,
  .premium-card:hover .product-image img,
  .honey-product-card:hover .product-image img {
    transform: none !important;
  }

  .honey-product-info,
  .product-info.honey-product-info,
  .honeyveda-card-info {
    padding: 10px 8px 8px !important;
    gap: 6px !important;
    min-height: 0 !important;
  }

  .honey-product-info h3,
  .product-info.honey-product-info h3,
  .honeyveda-card-info h3 {
    margin: 0 !important;
    font-size: clamp(15px, 4.1vw, 18px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.01em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 0 !important;
  }

  .honey-card-story {
    gap: 4px !important;
  }

  .honey-product-taste,
  .honey-product-benefit,
  .honey-product-flavour {
    font-size: 10px !important;
    line-height: 1.28 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .honey-product-price,
  .honey-product-info .product-meta,
  .honey-card-price-row {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .honey-product-price {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 4px 5px !important;
    line-height: 1.05 !important;
    margin: 0 !important;
  }

  .honey-product-price .sell-price,
  .price .sell-price {
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .honey-product-price .mrp-price,
  .honey-product-price .save-price,
  .honey-product-price small {
    font-size: 9px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  .honey-product-actions,
  .card-actions.honey-product-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-top: auto !important;
    width: 100% !important;
  }

  .honey-product-actions .product-card-inquiry--full,
  .honey-product-actions .product-btn,
  .honey-product-actions a,
  .honey-product-actions button {
    min-height: 36px !important;
    width: 100% !important;
    padding: 7px 8px !important;
    border-radius: 999px !important;
    font-size: 9px !important;
    letter-spacing: .025em !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .product-image .tag,
  .honey-product-card .product-image .tag,
  .honey-product-card .product-image .product-card-tag {
    top: 6px !important;
    left: 6px !important;
    right: auto !important;
    max-width: calc(100% - 44px) !important;
    min-height: 22px !important;
    padding: 4px 6px !important;
    border-radius: 999px !important;
    font-size: 7px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  .honey-product-card .card-eye-icon,
  .product-card .card-eye-icon {
    top: 5px !important;
    right: 5px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
  }

  /* Product detail pages: keep product image full, but do not affect marketing photos. */
  .detail-image,
  .product-main-image,
  .compact-product-detail .product-gallery .detail-image,
  .compact-product-detail .product-gallery .product-main-image {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .detail-image img,
  .product-main-image img,
  .compact-product-detail .product-gallery .detail-image img,
  .compact-product-detail .product-gallery .product-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .cart-table,
  .orders-table,
  table {
    max-width: 100% !important;
    overflow-x: auto !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
  }

  #shop .products-grid,
  .shop-section .products-grid,
  .shop-showcase .products-grid,
  .products-grid[data-shop-products-grid],
  .premium-products {
    gap: 10px !important;
  }

  #shop .product-card,
  .shop-section .product-card,
  .shop-showcase .product-card,
  .shop-showcase .premium-card,
  .product-card.premium-card,
  .premium-card.honey-product-card,
  .honey-product-card {
    padding: 7px !important;
    border-radius: 14px !important;
  }

  #shop .product-image,
  .shop-section .product-image,
  .shop-showcase .product-image,
  .product-card .product-image,
  .premium-card .product-image,
  .honey-product-card .product-image {
    padding: 6px !important;
    border-radius: 12px !important;
    aspect-ratio: 1 / 1.02 !important;
  }

  .honey-product-info,
  .product-info.honey-product-info,
  .honeyveda-card-info {
    padding: 9px 6px 7px !important;
  }

  .honey-product-info h3,
  .product-info.honey-product-info h3,
  .honeyveda-card-info h3 {
    font-size: 15px !important;
  }
}
/* === End 2026-06-19 mobile responsive repair v2 === */

/* === Targeted fix: focused reel preview fills and stays centered in the modal ===
   Only affects the opened reel player. It removes the right-side empty gap without touching cart,
   wishlist, product, admin, or homepage card behavior. */
.home-reel-modal .home-reel-video-wrap {
  width: 100% !important;
  min-width: 100% !important;
  display: block !important;
  overflow: hidden !important;
  aspect-ratio: 9 / 16 !important;
  background: #0a120a !important;
}

.home-reel-modal #homeReelVideo,
.home-reel-modal .home-reel-video-wrap > video {
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  background: #0a120a !important;
}

.home-reel-modal.is-open .home-reel-modal-dialog {
  display: block !important;
}
/* === End targeted reel modal preview fix === */
