@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Cake N Bake Brand Colors */
  --primaryBrown: #5A471C;
  --accentRed: #CF0001;
  --softCream: #FDC9B1;
  --chocolateBrown: #8F503C;
  --blackColor: #000;
  --whiteColor: #fff;
  --textcolor: #1a1e25;
  --textLightColor: #6c757d;
  --lightBg: #f8f9fa;
  --borderColor: #e9ecef;
}

/* CUSTOM CSS HERE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif !important;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--whiteColor);
}

/* Custom Scrollbar */
.page-scroll-area {
  min-height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: clamp(4.375rem, 4.0993rem + 1.4706vw, 5.9375rem);
  scroll-behavior: smooth;
}

.page-scroll-area::-webkit-scrollbar {
  width: 0px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--primaryBrown);
  border-radius: 10px;
}

.container {
  max-width: 1200px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
}

/* FONT SIZE */
.font-48 {
  font-size: clamp(2.25rem, 2.1176rem + 0.7059vw, 3rem);
}

.font-36 {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
}

.font-28 {
  font-size: clamp(1.5rem, 1.4559rem + 0.2353vw, 1.75rem);
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

.font-22 {
  font-size: clamp(1rem, 0.9338rem + 0.3529vw, 1.375rem);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.font-16 {
  font-size: clamp(0.875rem, 0.8529rem + 0.1176vw, 1rem);
  ;
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6029rem + 0.1176vw, 0.75rem);
}

.font-11 {
  font-size: 11px;
}

.font-10 {
  font-size: clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) !important;
}

.max-w-100 {
  max-width: 100%;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryBrown {
  color: var(--primaryBrown);
}

.accentRed {
  color: var(--accentRed);
}

.softCream {
  color: var(--softCream);
}

.chocolateBrown {
  color: var(--chocolateBrown);
}

.textColor {
  color: var(--textcolor);
}

.textLightColor {
  color: var(--textLightColor);
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-28 {
  line-height: 28px;
}

.line-height-22 {
  line-height: clamp(1.125rem, 1.0809rem + 0.2353vw, 1.375rem) !important;
}

.line-height-18 {
  line-height: 18px !important;
}

.cursor-pointer {
  cursor: pointer;
}

a {
  text-decoration: none !important;
}

/* CAKE N BAKE BRAND STYLES */

/* Background Colors using existing utility pattern */
.bg-primary-brown {
  background-color: var(--primaryBrown);
}

.bg-accent-red {
  background-color: var(--accentRed);
}

.bg-soft-cream {
  background-color: var(--softCream);
}

.bg-chocolate-brown {
  background-color: var(--chocolateBrown);
}

.section-bg {
  background-color: #FFF8F5;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* MOBILE NAVIGATION STYLES */
.mobile-header {
  z-index: 1030;
}

/* Navbar */
.logo {
  height: clamp(3.75rem, 3.4743rem + 1.4706vw, 5.3125rem);
}

/* Navbar Search Bar */
.navbar-search {
  flex: 1;
  min-width: 0;
  margin: 0 24px;
  max-width: 250px;
}

.navbar-search input {
  border: 1.5px solid var(--borderColor);
  border-radius: 50px;
  padding: 8px 16px 8px 42px;
  outline: none;
  background: var(--lightBg);
  transition: border-color .2s, box-shadow .2s;
}

.navbar-search input:focus {
  border-color: var(--primaryBrown);
  box-shadow: 0 0 0 3px rgba(90, 71, 28, .08);
  background: #fff;
}

.navbar-search input::placeholder {
  color: var(--textLightColor);
}

.navbar-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--textLightColor);
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

.navbar-nav {
  display: flex;
  flex-direction: row !important;
}

/* Premium Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--whiteColor);
  border-top: 1px solid var(--borderColor);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: none;
  padding: 0px 0 14px;
  border-radius: 24px 24px 0px 0px;
}

/* Show only on screens 575px and below */
@media (max-width: 575.98px) {
  .mobile-bottom-nav {
    display: flex;

  }

  .page-container {
    padding-bottom: 80px;
  }

  .fc-card-d,
  .fc-card-e {
    aspect-ratio: 1 / 1 !important;
  }
}

.bottom-nav-item {
  min-width: 60px;
  padding: 8px;
  border-radius: 0;
  transition: all 0.3s ease;
  color: var(--textLightColor);
  flex: 1;
}

.bottom-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.bottom-nav-item:hover {
  color: var(--primaryBrown);
}

/* Unique Active State - Top border + Primary Brown Text & Icon */
.bottom-nav-item.active {
  background: transparent;
  color: var(--primaryBrown);
  transform: none;
  box-shadow: none;
}

.bottom-nav-item.active::before {
  background: var(--primaryBrown);
}

.bottom-nav-item.active .nav-icon-wrapper svg {
  color: var(--primaryBrown);
  scale: 1.2;
}

.bottom-nav-item.active .nav-label {
  color: var(--primaryBrown);
  font-weight: 700;
}


/* DESKTOP NAVIGATION - Active Indicator */
.desktop-nav-link {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.desktop-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primaryBrown);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after {
  width: 100%;
}

.desktop-nav-link.active {
  color: var(--primaryBrown) !important;
  font-weight: 600;
}


/* DESKTOP NAVBAR ICON BUTTONS */
.btn-icon-nav {
  background: var(--lightBg);
  color: var(--textLightColor);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 35px;
  width: 35px;
  box-shadow: 0px 0px 10px #cdc8b9;
}

.btn-icon-nav:hover {
  background: #5a471c2b;
  color: #6f5c33;
  transform: scale(1.1);
  box-shadow: none;
}

.btn-icon-nav:active {
  transform: scale(0.95);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  font-size: 10px;
  box-shadow: 0 2px 8px rgba(207, 0, 1, 0.35);
}


/* MOBILE HEADER - Show only on small screens */
@media (max-width: 575.98px) {
  .navbar-nav {
    display: none !important;
  }

  #desktopNav {
    display: block !important;
  }

  .navbar-expand-lg {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav {
    display: none;
  }

  .navbar-actions button {
    display: none !important;
  }

  .navbar-actions button:nth-child(1) {
    display: flex !important;
  }

  .pc-img-dots {
    left: 75% !important;
  }
}

@media (min-width: 576px) {
  .mobile-bottom-nav {
    display: none !important;
  }

}

/* Category */
.cnb-sec {
  background: #FFF8F5;
  font-family: 'Outfit', sans-serif;
}

.cnb-sec-head {
  margin-bottom: 40px;
}

.cnb-eyebrow {
  display: inline-flex;
  letter-spacing: .14em;
}

.cnb-eyebrow::before,
.cnb-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accentRed);
  border-radius: 2px;
}

.cnb-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a0f00;
  margin: 0;
}

.cnb-sec-title em {
  font-style: italic;
  color: var(--accentRed);
}

.cnb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.cat-card {
  border-radius: 20px;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 0, .78) 0%, rgba(26, 15, 0, .18) 50%, transparent 100%);
  transition: opacity .35s;
}

.cat-card:hover .cat-overlay {
  opacity: .88;
}

.cat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cat-name {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.cat-sub {
  color: rgba(253, 201, 177, .85);
  letter-spacing: .04em;
}

.cat-arrow {
  width: 36px;
  height: 36px;
  background: var(--accentRed);
  flex-shrink: 0;
  transform: translateY(6px);
  opacity: 0;
  transition: transform .35s, opacity .35s;
}

.cat-card:hover .cat-arrow {
  transform: translateY(0);
  opacity: 1;
}

.cat-arrow svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primaryBrown);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: .08em;
}

.cat-card.featured {
  grid-row: span 1;
}

@media(max-width:520px) {
  .cnb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* Best Selling Products */
.bs-sec {
  background: #FFF8F5;
  font-family: 'Outfit', sans-serif;
}

.bs-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.bs-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}

.bs-scroll-wrap::-webkit-scrollbar-track {
  background: #EDDED4;
  border-radius: 10px;
}

.bs-scroll-wrap::-webkit-scrollbar-thumb {
  background: #5A471C;
  border-radius: 10px;
}

.bs-row {
  display: flex;
  gap: 20px;
  padding: 4px 2px 4px 2px;
  width: max-content;
}

/* CARD */
.prod-card {
  width: 220px;
  border-radius: 20px;
  border: 1px solid #F0E0D4;
  transition: transform .32s cubic-bezier(.25, .46, .45, .94), box-shadow .32s;
  flex-shrink: 0;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 4px rgba(90, 71, 28, .13);
}

/* IMAGE */
.prod-img-wrap {
  aspect-ratio: 1/1;
  background: #FFF0E9;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.07);
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accentRed);
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 50px;
}

.prod-badge.new {
  background: #5A471C;
}

.btn-wish {
  background-color: var(--whiteColor);
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid #F0E0D4;
  cursor: pointer;
  transition: all .25s;
  color: #C4A882;
}

.btn-wish:hover,
.btn-wish.active {
  background: var(--accentRed);
  border-color: var(--accentRed);
  color: var(--whiteColor)
}

.btn-wish svg {
  width: 15px;
  height: 15px;
  transition: fill .2s;
}

.btn-wish.active svg {
  fill: #fff;
}

/* BODY */
.prod-body {
  padding: 14px 14px 16px;
}

.prod-name {
  font-family: 'Playfair Display', serif;
  color: #1a0f00;
  margin: 0 0 6px;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.stars {
  gap: 2px;
}

.star {
  width: 12px;
  height: 12px;
}

.star.full path {
  fill: #E8A000;
}

.star.half path:first-child {
  fill: #E8A000;
}

.star.half path:last-child {
  fill: #E5D5C0;
}

.star.empty path {
  fill: #E5D5C0;
}

.prod-rcount {
  color: #A07A66;
}

.prod-price-row {
  margin-bottom: 13px;
}

.prod-old {
  color: #ad8d62;
  text-decoration: line-through;
}

.btn-cart {
  background: #5A471C;
  border-radius: 50px;
  padding: 9px 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .25s, transform .2s;
}

.btn-cart:hover {
  background: var(--accentRed);
  transform: translateY(-1px);
}

.btn-cart svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.btn-cart.added {
  background: #2e7d32;
}

/* Special Offer Banner */
.ob-wrap {
  font-family: 'Outfit', sans-serif;
  background: #FFF8F5;
}

.ob-banner {
  border-radius: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.ob-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .1);
  pointer-events: none;
}

.ob-ring-1 {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -80px;
}

.ob-ring-2 {
  width: 220px;
  height: 220px;
  top: -50px;
  left: -30px;
  border-color: rgba(255, 255, 255, .07);
}

.ob-ring-3 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: 220px;
}

.ob-ring-4 {
  width: 160px;
  height: 160px;
  bottom: -40px;
  right: 260px;
  border-color: rgba(255, 255, 255, .07);
}

.ob-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ob-inner {
  z-index: 2;
  gap: 32px;
  padding: clamp(2.25rem, 2.1176rem + 0.7059vw, 3rem) clamp(1.2rem, 1.1912rem + 1.6471vw, 3.25rem);
}

.ob-left {
  flex: 1;
  min-width: 260px;
}

.ob-tag {
  display: inline-flex;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.ob-tag-dot {
  width: 7px;
  height: 7px;
  background: #FFD9D9;
  border-radius: 50%;
  animation: obBlink 1.8s ease-in-out infinite;
}

@keyframes obBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.ob-title {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  margin: 0 0 10px;
}

.ob-title span {
  font-style: italic;
  color: #FFDADA;
  display: block;
}

.ob-sub {
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 380px;
}

.ob-cta-row {
  gap: 14px;
}

.ob-btn-primary {
  border-radius: 50px;
  padding: 13px 30px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: inline-flex;
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
}

.ob-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.ob-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: #CF0001;
  fill: none;
  stroke-width: 2.2;
  transition: transform .22s;
}

.ob-btn-primary:hover svg {
  transform: translateX(3px);
}

.ob-btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .45);
  border-radius: 50px;
  padding: 13px 26px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: inline-flex;
  transition: border-color .22s, background .22s;
  text-decoration: none;
}

.ob-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.ob-middle {
  gap: 12px;
  flex-direction: column;
}

.ob-pill {
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: clamp(0.75rem, 0.7059rem + 0.2353vw, 1rem);
  padding: 14px clamp(0.75rem, 0.6397rem + 0.5882vw, 1.375rem);
  text-align: center;
  min-width: clamp(5rem, 4.5588rem + 2.3529vw, 7.5rem);
  transition: background .25s;
}

.ob-pill:hover {
  background: rgba(255, 255, 255, .2);
}

.ob-pill-num {
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.ob-pill-label {
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  margin-top: 3px;
}

.ob-right {
  gap: 10px;
}

.ob-expires {
  color: rgba(255, 255, 255, .65);
  letter-spacing: .06em;
}

.ob-cd-box {
  background: rgba(0, 0, 0, .22);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  min-width: 58px;
}

.ob-cd-num {
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.ob-cd-unit {
  color: rgba(255, 255, 255, .6);
  letter-spacing: .07em;
  margin-top: 2px;
}

.ob-cd-sep {
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, .5);
  line-height: 1;
  margin-bottom: 12px;
}

.ob-cd-badge {
  margin-top: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: 5px 16px;
  letter-spacing: .06em;
}

/* mobile */
@media(max-width: 640px) {
  .ob-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ob-middle {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .ob-right {
    align-items: flex-start;
  }

  .ob-countdown {
    flex-wrap: wrap;
  }
}

/* Featured Collections */
.fc-wrap {
  font-family: 'Outfit', sans-serif;
  background: #FFF8F5;
}

.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

.fc-card {
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
}

.fc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
}

.fc-card:hover img {
  transform: scale(1.07);
}

.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 15, 0, .05) 0%, rgba(26, 15, 0, .72) 100%);
  transition: opacity .35s;
}

.fc-card:hover .fc-overlay {
  opacity: .88;
}

.fc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: clamp(0.75rem, 0.6397rem + 0.5882vw, 1.375rem) clamp(0.75rem, 0.6397rem + 0.5882vw, 1.375rem) clamp(1rem, 0.9118rem + 0.4706vw, 1.5rem);
  gap: 10px;
  width: 100%;
}

.fc-info {
  flex: 1;
}

.fc-label {
  display: inline-block;
  background: rgba(207, 0, 1, .85);
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 50px;
}

.fc-name {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin: 0 0 4px;
}

.fc-count {
  color: rgba(255, 255, 255, .65);
}

/* arrow */
.fc-arrow {
  width: clamp(1.875rem, 1.7647rem + 0.5882vw, 2.5rem);
  height: clamp(1.875rem, 1.7647rem + 0.5882vw, 2.5rem);
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .3);
  flex-shrink: 0;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s, opacity .35s, background .25s;
}

.fc-card:hover .fc-arrow {
  transform: translateY(0);
  opacity: 1;
}

.fc-arrow:hover {
  background: rgba(207, 0, 1, .85);
  border-color: transparent;
}

.fc-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

/* GRID PLACEMENT */
.fc-card-a {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}

.fc-card-b {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}

.fc-card-c {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  aspect-ratio: 3/4;
}

/* last row — 2 cards side by side */
.fc-row2 {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fc-card-d,
.fc-card-e {
  aspect-ratio: 2/1;
}

/* Ribbon for featured */
.fc-ribbon {
  position: absolute;
  top: 18px;
  right: -2px;
  background: #5A471C;
  letter-spacing: .1em;
  padding: 5px 14px 5px 12px;
  border-radius: 4px 0 0 4px;
}

.fc-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  border-left: 6px solid #3a2e10;
  border-bottom: 6px solid transparent;
}

@media(max-width:640px) {
  .fc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .fc-card-a {
    grid-column: 1 / 2;
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .fc-card-b {
    grid-column: 2 / 3;
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .fc-card-c {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 2/1;
  }

  .fc-row2 {
    grid-column: 1 / 3;
    grid-template-columns: 1fr 1fr;
  }
}

.why-section {
  background: #FFF8F5;
}

.feature-card {
  border-radius: 20px;
  border: 1.5px solid var(--borderColor);
  height: 100%;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primaryBrown), var(--softCream));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(26, 15, 0, .12);
  border-color: rgba(207, 0, 1, .2);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: transform .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-name {
  margin-bottom: 10px;
}

.feature-desc {
  flex: 1;
}

.ic-red {
  background: rgba(207, 0, 1, .1);
}

.ic-brown {
  background: rgba(90, 71, 28, .1);
}

.ic-cream {
  background: rgba(253, 201, 177, .4);
}

.ic-green {
  background: rgba(34, 139, 34, .08);
}

.ic-gold {
  background: rgba(218, 165, 32, .1);
}

.ic-blue {
  background: rgba(30, 144, 255, .08);
}

/* Customer Reviews */
.reviews-section {
  background: #FFF8F5;
}

.overall-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--borderColor);
  border-radius: 50px;
  padding: 10px 22px;
  box-shadow: 0 4px 18px rgba(26, 15, 0, .07);
  width: fit-content;
}

.overall-num {
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.overall-stars {
  color: #F5A623;
  letter-spacing: 2px;
}

.review-card {
  border-radius: 22px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1.5px solid var(--borderColor);
  height: 100%;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(26, 15, 0, .1);
  border-color: rgba(207, 0, 1, .18);
}

.review-quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(207, 0, 1, .08);
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: #F5A623;
  letter-spacing: 2px;
}

.review-text {
  flex: 1;
}

.review-tag {
  display: inline-block;
  background: rgba(207, 0, 1, .08);
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 50px;
}


.review-avatar-row {
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--borderColor);
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--softCream);
  box-shadow: 0 2px 10px rgba(26, 15, 0, .12);
}

.review-avatar-placeholder {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 2px solid var(--softCream);
  box-shadow: 0 2px 10px rgba(26, 15, 0, .12);
}

.review-meta {
  margin-top: 2px;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #1a9e5a;
  margin-left: 6px;
}

.review-card.featured {
  background: linear-gradient(145deg, #fff 60%, rgba(253, 201, 177, .18));
  border-color: rgba(207, 0, 1, .2);
}

.review-card.featured .review-quote {
  color: rgba(207, 0, 1, .13);
}

/* ── Newsletter Subscription SECTION ── */
.newsletter-section {
  background: var(--primaryBrown);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(253, 201, 177, .15) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.nl-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.nl-blob-1 {
  width: 380px;
  height: 380px;
  background: rgba(207, 0, 1, .25);
  top: -120px;
  left: -100px;
}

.nl-blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(253, 201, 177, .15);
  bottom: -100px;
  right: -80px;
}

.nl-card {
  z-index: 2;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(253, 201, 177, .2);
  border-radius: 28px;
  backdrop-filter: blur(6px);
}

.nl-eyebrow {
  display: inline-flex;
  letter-spacing: .14em;
  color: var(--softCream);
  margin-bottom: 14px;
}

.nl-eyebrow::before,
.nl-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accentRed);
  border-radius: 2px;
}

.nl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.nl-title em {
  font-style: italic;
  color: var(--softCream);
}

.nl-sub {
  color: rgba(255, 255, 255, .65);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.nl-form-wrap {
  max-width: 520px;
  margin: 0 auto 24px;
}

.nl-input-group {
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.nl-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(.82rem, .78rem + .2vw, .95rem);
  color: var(--textcolor);
}

.nl-input::placeholder {
  color: #aaa;
}

.nl-btn {
  display: inline-flex;
  padding: clamp(0.5rem, 0.4559rem + 0.2353vw, 0.75rem) clamp(1rem, 0.9118rem + 0.4706vw, 1.5rem);
  background: var(--accentRed);
  font-family: 'Outfit', sans-serif;
  border-radius: 50px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(207, 0, 1, .4);
}

.nl-btn:hover {
  background: #a80001;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(207, 0, 1, .5);
}

.nl-btn svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.nl-perks {
  gap: 20px;
  margin-top: 28px;
}

.nl-perk {
  display: inline-flex;
  color: rgba(255, 255, 255, .6);
}

.nl-perk span {
  font-size: .9rem;
}

.nl-deco {
  position: absolute;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  pointer-events: none;
  opacity: .18;
  animation: floatDeco 5s ease-in-out infinite;
}

.nl-deco:nth-child(1) {
  top: 14%;
  left: 4%;
  animation-delay: 0s;
}

.nl-deco:nth-child(2) {
  top: 60%;
  left: 7%;
  animation-delay: 1s;
}

.nl-deco:nth-child(3) {
  top: 20%;
  right: 5%;
  animation-delay: .6s;
}

.nl-deco:nth-child(4) {
  bottom: 12%;
  right: 8%;
  animation-delay: 1.5s;
}

@keyframes floatDeco {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

@media(max-width:480px) {
  .nl-input-group {
    border-radius: 18px;
    padding: 10px;
  }

  .nl-input {
    width: 100%;
    padding: 4px 8px;
  }

  .nl-btn {
    justify-content: center;
  }
}

/* Instagram / Gallery Section */
.instagram-section {
  background-color: #FFF8F5;
}

.gallery-item {
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 0, .5);
  opacity: 0;
  transition: opacity .35s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: 1.5px solid rgba(255, 255, 255, .5);
  transition: background .25s;
}

.overlay-icon:hover {
  background: var(--accentRed);
  border-color: var(--accentRed);
}

/* tall item spans 2 rows */
.gallery-tall {
  grid-row: span 2;
}

/* custom grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

/* follow btn */
.btn-follow {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accentRed);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 20px rgba(207, 0, 1, .28);
  text-decoration: none;
}

.btn-follow:hover {
  background: #a80001;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(207, 0, 1, .35);
}

@media(max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-tall {
    grid-row: span 1;
  }
}

/* Footer */
.footer {
  background: var(--primaryBrown);
}

.footer-logo {
  height: 100px;
  border-radius: 8px;
}

.footer-tagline {
  color: rgb(255 255 255 / 71%);
}

.footer-heading {
  letter-spacing: .12em;
  font-style: normal;
  font-family: 'Playfair Display', serif;
}

.footer-link {
  display: block;
  color: rgb(255 255 255 / 71%);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: var(--softCream);
  padding-left: 14px;
}

.footer-link:hover::after {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 1;
}

/* Contact Us items with flex layout — NO arrow */
.footer-link.d-flex {
  display: flex;
  gap: 8px;
  padding-left: 0;
}

.footer-link.d-flex:hover {
  color: var(--softCream);
}

.footer-link.d-flex:hover::after {
  content: '';
  display: none;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .08);
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}

.social-icon:hover {
  background: var(--accentRed);
  color: #fff;
  border-color: var(--accentRed);
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  font-size: .75rem;
  color: rgb(255 255 255 / 71%);
}

.footer-bottom a {
  color: rgb(255 255 255 / 71%);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--softCream);
}

.dot-sep {
  margin: 0 6px;
}

/* Cake page css */

/* ── BANNER ── */
.pb-banner {
  min-height: 420px;
}

.pb-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.pb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pb-banner:hover .pb-bg {
  transform: scale(1);
}

.pb-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 15, 0, .82) 0%, rgba(26, 15, 0, .55) 55%, rgba(26, 15, 0, .3) 100%);
}

.pb-overlay-red {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(207, 0, 1, .18) 0%, transparent 60%);
}

.pb-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.pb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

.pb-ring-1 {
  width: 380px;
  height: 380px;
  right: -80px;
  top: -100px;
}

.pb-ring-2 {
  width: 240px;
  height: 240px;
  right: -20px;
  top: -40px;
  border-color: rgba(207, 0, 1, .18);
}

.pb-ring-3 {
  width: 180px;
  height: 180px;
  right: 80px;
  bottom: -60px;
}

.pb-content {
  z-index: 3;
  max-width: 1060px;
  width: 100%;
}

.pb-tag {
  display: inline-flex;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.pb-tag-dot {
  width: 7px;
  height: 7px;
  animation: pbBlink 2s ease-in-out infinite;
}

@keyframes pbBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.pb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 14px;
  max-width: 600px;
}

.pb-title em {
  font-style: italic;
  color: var(--softCream);
}

.pb-desc {
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 clamp(1.5rem, 1.4118rem + 0.4706vw, 2rem);
}

.pb-count-row {
  gap: 12px;
}

.pb-count-pill {
  display: inline-flex;
  gap: 10px;
  border-radius: 50px;
  padding: clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) 20px clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) 14px;
  box-shadow: 0 6px 24px rgba(207, 0, 1, .4);
}

.pb-count-pill svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.pb-count-pill span {
  font-size: .88rem;
  letter-spacing: .02em;
}

.pb-count-pill strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.pb-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .2);
}

.pb-stat-num {
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.pb-stat-label {
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
  margin-top: 2px;
}

.pb-scroll {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em;
  z-index: 3;
}

.pb-scroll-pill {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.pb-scroll-pill::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, .4);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .pb-content {
    padding: 36px 12px;
  }

  .tm-photo-wrap {
    aspect-ratio: 4 / 3 !important;
  }
}

/* Filters css */
.sfb-wrap {
  background: #FFF8F5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sfb-bar {
  border-bottom: 1px solid var(--borderColor);
  padding: clamp(12px, 2vw, 18px) 0;
  box-shadow: 0 2px 12px rgba(90, 71, 28, .07);
}

.sfb-sort {
  min-width: fit-content;
}

.sfb-sort select {
  border: 1.5px solid var(--borderColor);
  border-radius: 50px;
  padding: 6px 24px 6px 12px;
  background: var(--lightBg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
  min-width: 180px;
}

.sfb-sort select:focus {
  border-color: var(--primaryBrown);
}

.chip-carousel-wrapper {
  gap: 12px;
}

.chip-inner {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  flex: 1;
}

.chip-inner::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  background: var(--whiteColor);
  border: 1.5px solid var(--borderColor);
  border-radius: 50px;
  padding: 5px 12px;
  color: var(--textcolor);
  cursor: pointer;
  transition: all .22s;
  flex-shrink: 0;
  user-select: none;
}

.chip:hover {
  border-color: var(--primaryBrown);
  color: var(--primaryBrown);
  background: #FFF8F5;
}

.chip.active {
  background: var(--primaryBrown);
  color: #fff;
  border-color: var(--primaryBrown);
  box-shadow: 0 4px 8px rgba(90, 71, 28, .22);
}

.chip.active .chip-dot {
  background: var(--softCream);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accentRed);
  flex-shrink: 0;
}

.chip-hidden {
  display: inline-flex;
}

.chip-next-btn {
  display: inline-flex;
  background: var(--primaryBrown);
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all .22s;
  flex-shrink: 0;
}

.chip-next-btn:hover {
  background: #3e3014;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 71, 28, .3);
}

.chip-next-btn:active {
  transform: translateY(0);
}

.chip-next-btn svg {
  width: 18px;
  height: 18px;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.result-bar {
  padding: clamp(10px, 1.5vw, 12px) clamp(14px, 3vw, 24px);
}


.raf {
  display: inline-flex;
  background: #FFF0E9;
  border: 1px solid #FDC9B1;
  border-radius: 50px;
  padding: 3px 10px;
  color: var(--chocolateBrown);
  cursor: pointer;
}

.raf:hover {
  background: #FFE0D0;
}

/* Product Grid Section */
.pg-sec {
  padding: clamp(32px, 5vw, 56px) clamp(14px, 5vw, 56px);
}

.pg-head {
  margin-bottom: clamp(20px, 3vw, 36px);
}

.cake-cards-header {
  h2 {
    font-family: 'Playfair Display', serif;
  }
}

.pg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

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

@media(max-width:600px) {
  .pg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pc {
  border-radius: 18px;
  border: 1px solid var(--borderColor);
  transition: transform .2s cubic-bezier(.25, .46, .45, .94), box-shadow .2s;
}

.pc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(90, 71, 28, .12);
}

.pc-img-wrap {
  aspect-ratio: 1/1;
  background: #FFF0E9;
  flex-shrink: 0;
}

.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.pc:hover .pc-img-wrap img {
  transform: scale(1.07);
}

/* Image Dots Gallery */
.pc-img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.pc-dot {
  width: clamp(0.375rem, 0.3529rem + 0.1176vw, 0.5rem);
  height: clamp(0.375rem, 0.3529rem + 0.1176vw, 0.5rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .25s;
  border: 1.5px solid rgba(255, 255, 255, .8);
}

.pc-dot:hover {
  background: rgba(255, 255, 255, .8);
  transform: scale(1.2);
}

.pc-dot.active {
  background: var(--accentRed);
  border-color: var(--accentRed);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.pc-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accentRed);
  border-radius: 50px;
  padding: 3px 9px;
  letter-spacing: .04em;
  line-height: 1.4;
}

.pc-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--borderColor);
  cursor: pointer;
  transition: all .22s;
}

.pc-wish:hover,
.pc-wish.active {
  background: var(--accentRed);
  border-color: var(--accentRed);
}

.pc-wish svg {
  width: 14px;
  height: 14px;
  stroke: var(--textLightColor);
  fill: none;
  stroke-width: 2;
  transition: all .22s;
}

.pc-wish:hover svg,
.pc-wish.active svg {
  stroke: #fff;
}

.pc-wish.active svg {
  fill: #fff;
}

.pc-delivery {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(26, 15, 0, .72);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 3px 10px;
  letter-spacing: .03em;
}

.pc-delivery svg {
  width: 10px;
  height: 10px;
  stroke: var(--softCream);
  fill: none;
  stroke-width: 2;
}

.pc-body {
  padding: clamp(10px, 1.5vw, 14px);
  flex: 1;
  gap: 6px;
}

.pc-name {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pc-stars {
  display: flex;
  gap: 1px;
}

.pc-star {
  width: 11px;
  height: 11px;
}

.pc-star.f path {
  fill: #E8A000;
}

.pc-star.h path:first-child {
  fill: #E8A000;
}

.pc-star.h path:last-child {
  fill: #E0D0C0;
}

.pc-star.e path {
  fill: #E0D0C0;
}

.pc-price-row {
  gap: 7px;
}

.pc-old {
  text-decoration: line-through;
}


.pc-wt {
  border: 1.5px solid var(--borderColor);
  border-radius: 50px;
  padding: 0px 8px;
  cursor: pointer;
  transition: all .18s;
  background: var(--lightBg);
  color: var(--textcolor);
}

.pc-wt:hover,
.pc-wt.sel {
  border-color: var(--primaryBrown);
  color: var(--primaryBrown);
  background: #FFF8F5;
}

/* ── SPECIAL PROMOTION BANNER ── */
.promo-wrap {
  background: #FFF8F5;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.promo-banner {
  background: linear-gradient(135deg, var(--primaryBrown), var(--chocolateBrown));
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  background: radial-gradient(circle, rgba(253, 201, 177, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.promo-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 2.2rem);
  color: var(--softCream);
  margin: 0;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.promo-cta {
  background: var(--accentRed);
  padding: clamp(8px, 1vw, 0.9rem) clamp(1rem, 2.5vw, 2rem);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 6px 20px rgba(207, 0, 1, 0.25);
}

.promo-cta:hover {
  background: #a80001;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(207, 0, 1, 0.35);
}

/* ── FEATURED COLLECTION SECTION ── */
.featured-wrap {
  background: #FFF8F5;
}

.featured-card {
  border-radius: clamp(14px, 1vw, 18px);
  aspect-ratio: 3/3;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-img {
  transform: scale(1.08) !important;
}

.featured-overlay {
  background: linear-gradient(180deg, rgba(26, 15, 0, 0.1) 0%, rgba(26, 15, 0, 0.7) 100%);
  z-index: 1;
}

.featured-content {
  z-index: 2;
  background: linear-gradient(180deg, rgb(26 15 0 / 2%) 0%, rgba(26, 15, 0, 0.9) 100%);
}

.featured-title {
  font-family: 'Playfair Display', serif;
  color: var(--whiteColor);
}

.featured-btn {
  background: var(--accentRed);
  padding: 5px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.featured-btn:hover {
  background: #a80001;
  transform: translateY(-2px);
}


/* ── RECENTLY VIEWED PRODUCTS SECTION ── */
.recent-wrap {
  background: #FFF8F5;
}

.recent-slider {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.recent-slider::-webkit-scrollbar {
  height: 4px;
}

.recent-slider::-webkit-scrollbar-track {
  background: #EDDED4;
  border-radius: 10px;
}

.recent-slider::-webkit-scrollbar-thumb {
  background: var(--primaryBrown);
  border-radius: 10px;
}

.recent-item {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 200px);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.recent-item:hover {
  transform: translateY(-4px);
}

.recent-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: clamp(0.75rem, 1.2vw, 1rem);
  background: #fff0e9;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recent-item:hover .recent-img img {
  transform: scale(1.07) !important;
}

.recent-name {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Why Buy From Us */
.wbu-sec {
  background: #FFF8F5;
}

.wbu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

@media(max-width:700px) {
  .wbu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:400px) {
  .wbu-grid {
    grid-template-columns: 1fr;
  }
}

.wbu-card {
  background: var(--whiteColor);
  border: 1px solid var(--borderColor);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  gap: 14px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s, border-color .3s;
  cursor: default;
}

.wbu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 71, 28, .04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.wbu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(90, 71, 28, .11);
  border-color: #E8D5C4;
}

.wbu-card:hover::before {
  opacity: 1;
}

.wbu-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--borderColor);
  line-height: 1;
  transition: color .3s;
  user-select: none;
}

.wbu-card:hover .wbu-num {
  color: #F0E0D4;
}

.wbu-icon-wrap {
  width: clamp(48px, 6vw, 60px);
  height: clamp(48px, 6vw, 60px);
  border-radius: 16px;
  background: linear-gradient(135deg, #FFF0E9, #FFE0CC);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.wbu-card:hover .wbu-icon-wrap {
  background: linear-gradient(135deg, var(--accentRed), #a80001);
  transform: scale(1.08);
}

.wbu-icon-wrap svg {
  width: clamp(22px, 3vw, 28px);
  height: clamp(22px, 3vw, 28px);
  stroke: var(--chocolateBrown);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}

.wbu-card:hover .wbu-icon-wrap svg {
  stroke: #fff;
}

.wbu-card-title {
  line-height: 1.2;
}

.wbu-card-desc {
  line-height: 1.6;
}

.wbu-pill {
  display: inline-flex;
  background: #FFF0E9;
  border: 1px solid #FDC9B1;
  border-radius: 50px;
  padding: 3px 10px;
  letter-spacing: .06em;
  color: var(--chocolateBrown);
  transition: background .25s, color .25s, border-color .25s;
}

.wbu-card:hover .wbu-pill {
  background: var(--accentRed);
  color: #fff;
  border-color: var(--accentRed);
}

.wbu-pill-dot {
  width: 5px;
  height: 5px;
  background: var(--accentRed);
  border-radius: 50%;
  transition: background .25s;
}

.wbu-card:hover .wbu-pill-dot {
  background: #fff;
}

/* Customer Reviews Section */
.rv-sec {
  background: #FFF8F5;
}

.rv-summary {
  gap: clamp(16px, 4vw, 48px);
  border: 1px solid var(--borderColor);
  border-radius: 20px;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 40px);
  max-width: 680px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}


.rv-sum-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
}

.rv-sum-stars {
  gap: 3px;
  margin: 6px 0 4px;
}

.rv-sum-star {
  width: 18px;
  height: 18px;
}

.rv-sum-star path {
  fill: #E8A000;
}

.rv-sum-div {
  width: 1px;
  height: 60px;
  background: var(--borderColor);
}

.rv-bars {
  min-width: 180px;
}

.rv-bar-label {
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.rv-bar-track {
  flex: 1;
  height: 6px;
  background: var(--borderColor);
  border-radius: 3px;
}

.rv-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #E8A000, #FFB830);
}

.rv-bar-count {
  width: 24px;
  flex-shrink: 0;
}

.rv-sum-total-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.rv-sum-total-label {
  margin-top: 4px;
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  max-width: 1060px;
  margin: 0 auto;
}

@media(max-width:780px) {
  .rv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .rv-grid {
    grid-template-columns: 1fr;
  }
}

.rv-card {
  border: 1px solid var(--borderColor);
  border-radius: 20px;
  padding: clamp(16px, 2.5vw, 24px);
  gap: 14px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s, border-color .3s;
}

.rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(90, 71, 28, .1);
  border-color: #E8D5C4;
}

.rv-quote {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #F0E0D4;
  line-height: 1;
  user-select: none;
}

.rv-top {
  gap: 12px;
}

.rv-avatar {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--softCream);
  background: linear-gradient(135deg, #FFF0E9, #FDC9B1);
  font-family: 'Playfair Display', serif;
  color: var(--chocolateBrown);
}

.rv-stars {
  gap: 2px;
}

.rv-star {
  width: 13px;
  height: 13px;
}

.rv-star.f path {
  fill: #E8A000;
}

.rv-star.e path {
  fill: #E0D0C0;
}

.rv-rating-num {
  margin-left: 4px;
}

.rv-text {
  line-height: 1.7;
  flex: 1;
}

.rv-cake-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--borderColor);
}

.rv-tag {
  display: inline-flex;
  background: #FFF0E9;
  border: 1px solid #FDC9B1;
  border-radius: 50px;
  padding: 3px 10px;
  width: fit-content;
  letter-spacing: .05em;
  color: var(--chocolateBrown);
}

.rv-tag svg {
  width: 10px;
  height: 10px;
  stroke: var(--accentRed);
  fill: none;
  stroke-width: 2;
}

.rv-verified {
  color: #2e7d32;
}

.rv-verified svg {
  width: 13px;
  height: 13px;
  stroke: #2e7d32;
  fill: none;
  stroke-width: 2.2;
}

.rv-card.featured {
  border-color: var(--softCream);
  background: linear-gradient(145deg, #FFF8F5, #fff);
}

.rv-card.featured .rv-quote {
  color: #FDC9B1;
}

/* About page css */
.os-sec {
  background: #FFF8F5;
}

.os-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}

@media(max-width:780px) {
  .os-grid {
    grid-template-columns: 1fr;
  }
}

.os-img-main {
  aspect-ratio: 5/5;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(90, 71, 28, .18);
}

.os-img-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 42%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 16px 40px rgba(90, 71, 28, .2);
}

.os-badge-years {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--accentRed);
  width: clamp(78px, 9vw, 90px);
  height: clamp(78px, 9vw, 90px);
  box-shadow: 0 10px 28px rgba(207, 0, 1, .35);
  animation: osSpin 16s linear infinite;
}

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

.os-badge-years strong {
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.os-badge-years span {
  letter-spacing: .06em;
  margin-top: 2px;
  line-height: 1.3;
}

.os-eyebrow {
  display: inline-flex;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.os-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accentRed);
  border-radius: 2px;
}

.os-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  line-height: 1.15;
}

.os-title em {
  font-style: italic;
}

.os-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-top: 22px;
}

.os-signature span {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  letter-spacing: .04em;
  margin-top: 3px;
}

.os-stats {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--borderColor);
}

.os-stat-num {
  font-family: 'Playfair Display', serif;
}

.os-stat-label {
  letter-spacing: .04em;
}

@media(max-width:780px) {
  .os-img-float {
    width: 30%;
    left: -6px;
    bottom: -6px;
  }

  .os-badge-years {
    right: -10px;
    top: -12px;
  }
}

/* Mission & Vision */
.mv-sec {
  background: #FFF8F5;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}

@media(max-width:700px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 30px);
  transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s;
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-card.mission {
  border: 1px solid var(--borderColor);
}

.mv-card.mission:hover {
  box-shadow: 0 20px 48px rgba(90, 71, 28, .12);
  border-color: #E8D5C4;
}

.mv-card.vision {
  background: linear-gradient(150deg, var(--accentRed) 0%, #a80001 100%);
}

.mv-card.vision:hover {
  box-shadow: 0 20px 48px rgba(207, 0, 1, .32);
}

.mv-deco-num {
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  user-select: none;
}

.mv-card.mission .mv-deco-num {
  color: #F3E5D8;
}

.mv-card.vision .mv-deco-num {
  color: rgba(255, 255, 255, .12);
}

.mv-icon-wrap {
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  border-radius: 18px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
  z-index: 2;
}

.mv-card.mission .mv-icon-wrap {
  background: linear-gradient(135deg, #FFF0E9, #FFE0CC);
}

.mv-card.mission .mv-icon-wrap svg {
  stroke: var(--accentRed);
}

.mv-card.vision .mv-icon-wrap {
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.mv-card.vision .mv-icon-wrap svg {
  stroke: #fff;
}

.mv-icon-wrap svg {
  width: clamp(24px, 3vw, 30px);
  height: clamp(24px, 3vw, 30px);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-tag {
  display: inline-flex;
  letter-spacing: .1em;
  margin-bottom: 10px;
  z-index: 2;
}

.mv-card.mission .mv-tag {
  color: var(--accentRed);
}

.mv-card.vision .mv-tag {
  color: var(--softCream);
}

.mv-title {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 14px;
  z-index: 2;
}

.mv-card.mission .mv-title {
  color: var(--textcolor);
}

.mv-card.vision .mv-title {
  color: #fff;
}

.mv-card.mission .mv-desc {
  color: var(--textLightColor);
}

.mv-card.vision .mv-desc {
  color: rgba(255, 255, 255, .82);
}

.mv-underline {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 18px;
  z-index: 2;
}

/* Our Journey Timeline */
.tl-sec {
  background: #FFF8F5;
}

.tl-wrap::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accentRed), #F0D5C2, var(--accentRed));
  height: 85%;
}

.tl-item {
  padding-left: 64px;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 48px;
  height: 48px;
  background: var(--whiteColor);
  border: 2px solid var(--accentRed);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(207, 0, 1, .18);
  transition: transform .3s;
}

.tl-item:hover .tl-dot {
  transform: scale(1.08);
  background: var(--accentRed);
}

.tl-dot svg {
  width: 20px;
  height: 20px;
  stroke: var(--accentRed);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}

.tl-item:hover .tl-dot svg {
  stroke: #fff;
}

.tl-card {
  background: var(--whiteColor);
  border: 1px solid var(--borderColor);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 24px);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s, border-color .3s;
}

.tl-item:hover .tl-card {
  transform: translateX(6px);
  box-shadow: 0 14px 36px rgba(90, 71, 28, .1);
  border-color: #E8D5C4;
}

.tl-year {
  display: inline-flex;
  background: #FFF0E9;
  border: 1px solid #FDC9B1;
  border-radius: 50px;
  padding: 3px 12px;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.tl-title {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.tl-item.final .tl-dot {
  background: var(--accentRed);
  border-color: var(--accentRed);
}

.tl-item.final .tl-dot svg {
  stroke: #fff;
}

.tl-item.final .tl-card {
  background: linear-gradient(150deg, var(--primaryBrown), #3e3014);
  border-color: transparent;
}

.tl-item.final .tl-title {
  color: #fff;
}

.tl-item.final .tl-desc {
  color: rgba(255, 255, 255, .7);
}

.tl-item.final .tl-year {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  color: var(--softCream);
}

@media(max-width:480px) {
  .tl-wrap::before {
    left: 20px;
  }

  .tl-item {
    padding-left: 54px;
  }

  .tl-dot {
    width: 40px;
    height: 40px;
  }

  .tl-dot svg {
    width: 17px;
    height: 17px;
  }
}

/* Meet Our Team */
.tm-sec {
  background: #FFF8F5;
}

.tm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

@media(max-width:880px) {
  .tm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:420px) {
  .tm-grid {
    grid-template-columns: 1fr;
  }
}

.tm-card {
  border: 1px solid var(--borderColor);
  border-radius: 20px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s, border-color .3s;
}

.tm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(90, 71, 28, .12);
  border-color: #E8D5C4;
}

.tm-photo-wrap {
  aspect-ratio: 1/1;
  background: #FFF0E9;
}

.tm-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.tm-card:hover .tm-photo-wrap img {
  transform: scale(1.07);
}

.tm-social {
  position: absolute;
  bottom: -44px;
  left: 0;
  right: 0;
  padding: 12px 0;
  background: linear-gradient(to top, rgba(26, 15, 0, .55), transparent);
  transition: bottom .3s;
}

.tm-card:hover .tm-social {
  bottom: 0;
}

.tm-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.tm-social a:hover {
  background: var(--accentRed);
  transform: translateY(-2px);
}

.tm-social a svg {
  width: 13px;
  height: 13px;
  stroke: var(--primaryBrown);
  fill: none;
  stroke-width: 2;
  transition: stroke .2s;
}

.tm-social a:hover svg {
  stroke: #fff;
}

.tm-body {
  padding: clamp(16px, 2.5vw, 22px) clamp(12px, 2vw, 18px);
}

.tm-name {
  font-family: 'Playfair Display', serif;
}

.tm-role {
  display: inline-flex;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.tm-role-dot {
  width: 5px;
  height: 5px;
  background: var(--accentRed);
  border-radius: 50%;
}

/* Statistics Section */
.st-sec {
  background: linear-gradient(135deg, #1a0f00 0%, #3b2608 45%, var(--primaryBrown) 100%);
}

.st-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.st-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .07);
  pointer-events: none;
}

.st-r1 {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -100px;
}

.st-r2 {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -20px;
  border-color: rgba(207, 0, 1, .15);
}

.st-r3 {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -80px;
}

.st-head {
  margin-bottom: clamp(32px, 5vw, 52px);
  z-index: 2;
}

.st-eyebrow {
  display: inline-flex;
  letter-spacing: .14em;
  margin-bottom: 12px;
}

.st-eyebrow::before,
.st-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accentRed);
  border-radius: 2px;
}

.st-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  margin: 0;
}

.st-title em {
  font-style: italic;
}

.st-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(4px);
}

@media(max-width:780px) {
  .st-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 8px;
  }
}

.st-card {
  padding: clamp(28px, 4vw, 40px) clamp(16px, 2vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s;
}

.st-grid>.st-card:last-child {
  border-right: none;
}

@media(max-width:780px) {
  .st-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .st-card:nth-child(even) {
    border-right: none;
  }

  .st-card:nth-child(1),
  .st-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

.st-card:hover {
  background: rgba(255, 255, 255, .04);
}

.st-icon-wrap {
  width: clamp(48px, 6vw, 58px);
  height: clamp(48px, 6vw, 58px);
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  margin: 0 auto clamp(14px, 2vw, 18px);
}

.st-icon-wrap svg {
  width: clamp(22px, 2.8vw, 26px);
  height: clamp(22px, 2.8vw, 26px);
  stroke: var(--softCream);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.st-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  align-items: baseline;
  gap: 2px;
}

.st-num .suffix {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--softCream);
}

.st-label {
  color: rgba(255, 255, 255, .6);
  letter-spacing: .02em;
}

.counter {
  font-family: 'Outfit', sans-serif;
}



/* ===== SEO CONTENT SECTION ===== */

.seo-content-section {
  background: #FFF8F5;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content-heading {
  font-family: serif;
}

.seo-content-heading .text-accent {
  font-style: italic;
}

.seo-content-body ul {
  list-style: none;
  padding: 0;
}

.seo-content-body ul li::before {
  content: '✓';
  margin-right: 8px;
  font-weight: 700;
}

.seo-content-body h3 {
  border-bottom: 2px solid var(--accentRed);
  display: inline-block;
  padding-bottom: 4px;
}

/* Login page css */
.cnb-login-bg {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #1a0f00 0%, #3b2608 45%, #5A471C 100%);
  border-radius: 24px;
  min-height: 97vh;
  margin: 8px;
}

.cnb-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .07);
  pointer-events: none;
}

.cnb-r1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
}

.cnb-r2 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -20px;
  border-color: rgba(207, 0, 1, .18);
}

.cnb-r3 {
  width: 240px;
  height: 240px;
  bottom: -100px;
  left: -70px;
}

.cnb-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.cnb-login-card {
  z-index: 2;
  border-radius: 20px;
  padding: clamp(30px, 5vw, 40px) clamp(22px, 4vw, 30px);
  max-width: 400px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  margin: 8px;
}


.cnb-login-title {
  font-family: 'Playfair Display', serif;
  margin: 0 0 6px;
}

.cnb-login-sub {
  margin: 0 0 24px;
}

.cnb-label {
  color: #5A471C;
}

.cnb-phone-wrap {
  margin-bottom: 18px;
}

.cnb-cc-select {
  border: 1.5px solid #E8D5C4;
  border-radius: 50px;
  padding: 11px 10px 11px 14px;
  flex-shrink: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 3.5l3 3 3-3' stroke='%23A07A66' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}

.cnb-cc-select:focus {
  border-color: #5A471C;
}

.cnb-input-wrap {
  flex: 1;
}

.cnb-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #A07A66;
  fill: none;
  stroke-width: 2;
}

.cnb-input {
  width: 100%;
  border: 1.5px solid #E8D5C4;
  border-radius: 50px;
  padding: 11px 16px 11px 40px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.cnb-input:focus {
  border-color: #5A471C;
  box-shadow: 0 0 0 3px rgba(90, 71, 28, .08);
}

.cnb-btn-login {
  width: 100%;
  background: #CF0001;
  border-radius: 50px;
  padding: 13px 0;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 8px 24px rgba(207, 0, 1, .25);
}

.cnb-btn-login:hover {
  background: #a80001;
  transform: translateY(-1px);
}

.cnb-btn-login:disabled {
  background: #E8D5C4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}




/* ── PRIVACY POLICY PAGE ── */

.pp-section h2 {
  color: var(--primaryBrown);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--softCream);
  display: inline-block;
}

.pp-section p {
  line-height: 1.8;
}

.pp-section ul {
  list-style: none;
}

.pp-section ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
}

.pp-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accentRed);
  font-weight: bold;
}

.pp-contact-box {
  background: linear-gradient(135deg, var(--lightBg) 0%, rgba(253, 201, 177, 0.1) 100%);
  border-left: 5px solid var(--primaryBrown);
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.pp-contact-box p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.pp-contact-box p:last-child {
  margin-bottom: 0;
}

.pp-contact-box {
  background: linear-gradient(135deg, var(--lightBg) 0%, rgba(253, 201, 177, 0.1) 100%);
  border-left: 5px solid var(--primaryBrown);
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.pp-contact-box p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.pp-contact-box p:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: var(--primaryBrown);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--accentRed);
}

.pp-last-updated {
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid var(--borderColor);
}

/* Custom CSS for Contact Section */
.contact-form-wrapper {
  background: linear-gradient(135deg, #fffbf9 0%, #fef5f0 100%);
  padding:30px;
  border-radius: 20px;
  border: 1.5px solid rgba(207, 0, 1, 0.08);
  box-shadow: 0 10px 40px rgba(90, 71, 28, 0.08);
  max-width:520px;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(207, 0, 1, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-form-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(143, 80, 60, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-form-wrapper>* {
  position: relative;
  z-index: 1;
}


.contact-input,
.contact-textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--borderColor);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  color: var(--textcolor);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.2s ease;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--accentRed);
  box-shadow: 0 0 0 4px rgba(207, 0, 1, 0.08);
  background: #fff;
  transform: translateY(-2px);
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
}

select.contact-input {
  cursor: pointer;
}

.contact-info-grid {
  gap: 16px;
}

.contact-info-card {
  align-items: flex-start;
  padding: 20px 24px;
  border: 1.5px solid var(--borderColor);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 0, 1, 0.2);
  box-shadow: 0 12px 32px rgba(90, 71, 28, 0.12);
}

.contact-info-icon {
  flex-shrink: 0;
  width:  clamp(2.625rem, 2.5547rem + 0.375vw, 3rem);
  height:  clamp(2.625rem, 2.5547rem + 0.375vw, 3rem);
  background: rgba(207, 0, 1, 0.08);
  border-radius: 12px;
}

.contact-info-card:hover .contact-info-icon {
  background: rgba(207, 0, 1, 0.15);
}

@media(max-width: 768px) {

  .contact-input,
  .contact-textarea {
    padding: 12px 16px;
  }

  .contact-info-card {
    padding: 16px 18px;
    gap: 12px;
  }
}
.business-section{
  background-color: #FFF8F5;
}
.hours-card{
  border: 1px solid var(--borderColor);
}


/* Filter Hidden Class */
.pc.hidden {
  display: none !important;
}
