@charset "UTF-8";
:root {
  --dark-pink: #FC447D;
  --blue:#004AAD;
  --dark-gray:#C9C9C9;
  --darker-gray:#AFAFAF;
  --white:#FFFFFF;
  --gray:#D9D9D9;
  --cream:#F1EAE2;
  --light-blue:#F2F7FA;
  --black:#000000;
  --pink:#F38DCB;
}

html, body {
  -webkit-font-smoothing: antialiased; /* Chrome, Safari, Edge */
  -moz-osx-font-smoothing: grayscale; /* Firefox on macOS */
  font-smooth: always; /* Firefox (partial support) */
  text-rendering: optimizeLegibility; /* Better kerning, ligatures */
}

body {
  /*font-family: 'albert_sansregular';*/
  font-family: "Bricolage Grotesque";
}

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

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

.space-top-bottom-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .space-top-bottom-200 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.space-top-bottom-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (max-width: 576px) {
  .space-top-bottom-140 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.space-top-bottom-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .space-top-bottom-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.space-top-100 {
  margin-top: 100px !important;
}
@media (max-width: 576px) {
  .space-top-100 {
    margin-top: 80px !important;
  }
}

.space-bottom-100 {
  margin-bottom: 100px !important;
}
@media (max-width: 576px) {
  .space-bottom-100 {
    margin-bottom: 80px !important;
  }
}

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

/* bricolage-grotesque-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/bricolage-grotesque-v9-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "albert_sansregular";
  font-weight: normal;
  font-style: normal;
  src: local("albert_sansregular"), url("../fonts/albertsanswght-webfont.woff") format("woff");
}
@font-face {
  font-family: "Perandory Semi-Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Perandory Semi-Condensed"), url("../fonts/PerandorySemiCondensed.woff") format("woff");
}
@font-face {
  font-family: "amoresaregular";
  font-style: normal;
  font-weight: normal;
  src: local("amoresaregular"), url("../fonts/amoresa-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "alatsiregular";
  font-weight: normal;
  font-style: normal;
  src: local("alatsiregular"), url("../fonts/alatsi-regular-webfont.woff") format("woff");
}
/* Tiramisu Promo Section */
.tiramisu-promo-section {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("../uploads/light-creamy-banner.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 550px;
  z-index: 1;
  overflow: hidden;
}

/* Radial black shape beside content (vignette framing the content) */
.tiramisu-promo-radial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 90% 120% at 25% 50%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.15) 75%, transparent 100%);
}

/* Content on top of overlay */
.tiramisu-promo-section .container,
.tiramisu-promo-section .container * {
  position: relative;
  z-index: 3;
}

.tiramisu-promo-content {
  max-width: 580px;
}

.tiramisu-promo-headline {
  font-family: "Perandory Semi-Condensed", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--cream) !important;
}

.tiramisu-promo-title {
  font-family: "amoresaregular", cursive;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #E91E63;
  line-height: 1.2;
}

.tiramisu-badge {
  font-family: "alatsiregular", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  background-color: var(--blue);
}

.tiramisu-stars {
  letter-spacing: 0.15em;
}

.tiramisu-star {
  color: #fff;
  font-size: 1.1rem;
}

.tiramisu-cta-btn {
  font-family: "alatsiregular", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-width: 1.5px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tiramisu-cta-btn:hover {
  background-color: var(--cream) !important;
  color: var(--blue);
  border-color: var(--cream) !important;
}

.tiramisu-promo-image-wrap {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiramisu-promo-img {
  max-height: 420px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 991.98px) {
  .tiramisu-promo-section {
    min-height: auto;
  }
  .tiramisu-promo-content {
    text-align: center;
    max-width: 100%;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .tiramisu-promo-content .d-flex {
    justify-content: center;
  }
  .tiramisu-promo-image-wrap {
    min-height: 260px;
  }
}
.blue-link {
  color: var(--blue);
  text-decoration: none;
}

.blue-link:hover {
  text-underline-offset: 3px;
  text-decoration: underline;
}

/* Party Hero Section */
.party-hero-section {
  display: flex;
  align-items: stretch;
  background-image: url("../uploads/party-bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "albert_sansregular", sans-serif;
  min-height: 550px;
  z-index: 1;
}
@media (max-width: 576px) {
  .party-hero-section {
    min-height: 600px !important;
    background-image: url("../uploads/party-bg.avif");
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.party-hero-section-bg {
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  height: 92%;
  min-height: 92%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}
@media (max-width: 576px) {
  .party-hero-section-bg {
    height: 50% !important;
    min-height: 0 !important;
  }
}

.party-hero-section .container {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.party-hero-section .row {
  flex: 1;
  align-items: stretch;
}

.party-hero-text {
  font-family: "albert_sansregular", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  .party-hero-text {
    font-size: 1rem !important;
  }
}

.party-hero-display {
  font-family: "Perandory Semi-Condensed", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.6;
  color: var(--cream);
}

.party-hero-subhead {
  font-family: "Perandory Semi-Condensed", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.party-hero-btn {
  font-family: "alatsiregular", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F8E0CC;
  background: transparent;
  border: 1.5px solid #F8E0CC;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.party-hero-btn:hover {
  background-color: var(--cream);
  color: var(--blue);
  border-color: var(--cream);
}

@media (max-width: 991.98px) {
  .party-hero-section {
    min-height: 400px;
    text-align: center;
  }
  .party-hero-section-bg {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .party-hero-section .text-start {
    text-align: center !important;
  }
  .party-hero-section .text-lg-end {
    text-align: center !important;
  }
}
/* Cookie Promo Section (Chocochop cookie) */
.cookie-promo-section {
  overflow: hidden;
}

.cookie-promo-image-col {
  background-image: url("../uploads/chocolate-chip-cookies-recipe.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 550px;
  z-index: 1;
}

.cookie-promo-image-wrap {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-promo-img {
  max-height: 420px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.cookie-promo-content {
  max-width: 540px;
}

.cookie-promo-headline {
  font-family: "Perandory Semi-Condensed", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--white);
}

.cookie-promo-title {
  font-family: "amoresaregular", cursive;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--white);
  line-height: 1.2;
}

.cookie-promo-badge {
  font-family: "alatsiregular", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #e91e63;
  border: 1px solid #fff;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.cookie-promo-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.cookie-promo-stars {
  letter-spacing: 0.15em;
}

.cookie-promo-star {
  color: var(--dark-pink);
  font-size: 1.1rem;
}

.cookie-promo-cta-btn {
  font-family: "alatsiregular", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--blue);
  border: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.cookie-promo-cta-btn:hover {
  background-color: var(--dark-pink);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .cookie-promo-section .row {
    flex-direction: column-reverse;
  }
  .cookie-promo-content {
    text-align: center;
    max-width: 100%;
  }
  .cookie-promo-content .d-flex {
    justify-content: center;
  }
  .cookie-promo-image-wrap {
    min-height: 260px;
  }
}
/* Welcome Section (Hello and Welcome to All That Batters!) */
.welcome-section {
  background-color: var(--cream);
}

.welcome-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-image {
  border: 8px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  height: auto;
}

.welcome-headline {
  font-family: "alatsiregular", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.welcome-title {
  font-family: "amoresaregular", cursive;
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--blue);
}

.welcome-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--blue);
}

@media (max-width: 991.98px) {
  .welcome-content {
    text-align: center;
    padding-left: 0 !important;
  }
}
/* Navbar Styles */
.custom-navbar {
  background-color: var(--cream); /* Light beige/off-white */
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "alatsiregular";
  position: absolute;
  border-radius: 4px;
  top: 50px !important;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media (max-width: 991.98px) {
  .custom-navbar {
    top: 0 !important;
    border-radius: 0px !important;
  }
}

.logo-in-menu {
  position: absolute;
  top: -40px !important;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.4));
}

.custom-navbar .nav-link {
  color: var(--blue) !important;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: opacity 0.3s;
  font-family: "alatsiregular";
  font-size: 1rem;
}

.custom-navbar .nav-link:hover {
  background-color: var(--blue);
  color: var(--white) !important;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "alatsiregular";
  transition: background-color 0.3s;
  border-radius: 5px !important;
}

.custom-navbar .active {
  background-color: var(--blue);
  color: var(--white) !important;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  font-family: "alatsiregular";
  transition: background-color 0.3s;
  border-radius: 5px;
}

.custom-navbar .active:hover {
  background-color: #152a42;
  color: var(--white) !important;
}

.custom-navbar .btn-about {
  background-color: #FFB6C1; /* Light pink */
  color: var(--white) !important;
  border: none;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s;
}

.custom-navbar .btn-about:hover {
  background-color: #ff9fb5;
  color: var(--white) !important;
}

.promo-banner {
  background-color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.promo-text {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 500;
}

.promo-code {
  color: var(--dark-pink); /* Light pink */
  font-weight: 700;
}

.qty-input {
  font-family: "alatsiregular";
  color: var(--blue);
  width: 30px;
  height: 30px;
  padding: 0 !important;
  border: 1px solid var(--cream);
  border-radius: 0 !important;
  background-color: var(--cream) !important;
}

.cart-title {
  color: var(--blue);
  font-family: "Perandory Semi-Condensed";
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cart-product-title {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}

.cart-pack-select {
  border-color: var(--blue);
  color: var(--blue);
  font-size: 0.75rem;
  width: auto;
  min-width: 120px;
  font-family: "alatsiregular";
  text-transform: uppercase;
}

.cart-price {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.cart-qty-plus {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 10px 10px 0;
}

.cart-qty-plus:hover {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 10px 10px 0;
}

.cart-qty-plus-prod {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 5px 5px 0px;
}

.cart-qty-plus-prod:hover {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 5px 5px 0px;
}

.cart-qty-minus-prod {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 5px 0 0 5px;
}

.cart-qty-minus-prod:hover {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  border-radius: 5px 0 0 5px;
}

.cart-qty-minus {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px 0 0 10px;
}

.cart-qty-minus:hover {
  background-color: var(--blue);
  color: white;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px 0 0 10px;
}

.description-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dark-gray);
}

.qty-subtotal {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-pink);
}

.checkout-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--white) !important;
  padding: 0.25rem 0.5rem;
}

.checkout-cart {
  position: relative;
  color: #1F3856; /* Dark blue */
  display: inline-block;
}

.checkout-text {
  font-size: 0.75rem;
  color: var(--white);
  margin-top: 0.25rem;
  font-weight: 500;
}

.save-text {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 400;
}

.strike-price {
  color: var(--gray);
  font-size: 1rem;
  font-family: "alatsiregular";
}

.cart-total-title {
  color: var(--blue);
  font-family: "Perandory Semi-Condensed";
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cart-total-subtotal {
  color: var(--black);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cart-total-shipping {
  color: var(--black);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cart-total-discount {
  color: var(--black);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500 !important;
  text-transform: uppercase;
}

.cart-total-price-gray {
  color: var(--dark-gray);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
}

.cart-total-free {
  color: var(--dark-pink);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
}

.cart-total-price {
  color: var(--blue);
  font-family: "alatsiregular";
  font-size: 1.3rem;
  font-weight: 500;
}

.cart-total {
  color: var(--black);
  font-family: "alatsiregular";
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
}

.apply-btn {
  background-color: var(--cream);
  color: var(--blue);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0 10px 10px 0;
  border: none;
  padding: 0.5rem 1.1rem;
}

.apply-btn:focus {
  background-color: var(--blue);
  color: var(--white);
  font-family: "alatsiregular";
}

.apply-btn:hover {
  background-color: var(--blue) !important;
  color: var(--white) !important;
  font-family: "alatsiregular";
}

.checkout-btn {
  background-color: var(--blue);
  color: var(--white);
  font-family: "alatsiregular";
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  padding: 0.7rem 1rem;
}

.checkout-btn:hover {
  background-color: var(--cream) !important;
  color: var(--blue);
  font-family: "alatsiregular";
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
}

.coupon-close-btn {
  color: var(--dark-pink);
  font-family: "alatsiregular";
  font-weight: 500;
  border: none;
  font-size: 1.5rem;
  background-color: transparent !important;
}

.coupon-price {
  color: var(--dark-pink);
  font-family: "alatsiregular";
  font-weight: 500;
  border: none;
}

/* See Collection Section */
.see-collection-section {
  padding: 2rem 0 3rem;
}
@media (max-width: 768px) {
  .see-collection-section {
    padding: 0rem 0 3rem !important;
  }
}

.see-collection-header {
  margin-bottom: 2.5rem;
}

.see-collection-label {
  font-family: "amoresaregular";
  font-size: 2rem;
  color: var(--dark-pink);
  margin-bottom: 0.5rem;
}

.see-collection-title {
  font-family: "alatsiregular";
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--blue);
  text-transform: none;
  margin: 0;
}

.see-collection-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: 2.5rem 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 1.5rem;
}

.see-collection-card {
  background-color: #F2F7FA;
  border-radius: 1.75rem 1.75rem 0 0;
  padding: 2.2rem 2.1rem;
  text-align: center;
  max-width: 313px;
  min-height: 307px;
  color: var --black;
}

.see-collection-card-1 {
  grid-column: 1/2;
  grid-row: 1/2;
}

.see-collection-card-2 {
  grid-column: 1/2;
  grid-row: 3/4;
  border-radius: 0 0 1.75rem 1.75rem !important;
}

.see-collection-card-3 {
  grid-column: 3/4;
  grid-row: 1/2;
}

.see-collection-card-4 {
  grid-column: 3/4;
  grid-row: 3/4;
  border-radius: 0 0 1.75rem 1.75rem !important;
}

.see-collection-icon {
  margin-bottom: 1.5rem;
}

.see-collection-icon img {
  max-width: 120px;
  height: auto;
}

.see-collection-card-title {
  font-family: "alatsiregular";
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.see-collection-card-text {
  font-family: "albert_sansregular";
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--black) !important;
  margin: 0;
}

.see-collection-center {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.see-collection-center-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
}

.see-collection-center-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991.98px) {
  .see-collection-layout {
    grid-template-rows: auto;
    row-gap: 2rem;
  }
  .see-collection-center {
    grid-column: 1/-1;
    order: -1;
    margin-bottom: 1rem;
  }
  .see-collection-center-circle {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 767.98px) {
  .see-collection-section {
    padding: 3rem 0 2rem;
  }
  .see-collection-layout {
    grid-template-columns: 1fr;
  }
  .see-collection-card {
    max-width: 100%;
    width: 100%;
  }
  .see-collection-center {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.free-shipping-sticker {
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background-image: url("../uploads/free-shipping.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.free-shipping {
  font-family: "amoresaregular";
  color: var(--blue);
  font-size: 1.6rem;
  margin: 0;
  text-align: start;
  line-height: 1.2;
}

.free-shipping-order {
  color: var(--dark-pink);
  font-size: 1.2rem;
  margin: 0;
}

.cart-top-space {
  padding-top: 21px;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler.d-lg-none {
  margin-left: auto !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* My Account Dropdown Styles */
.my-account-dropdown {
  position: relative;
}

.my-account-dropdown:hover .my-account-dropdown-menu,
.my-account-dropdown-menu:hover {
  display: block;
}

.my-account-dropdown-toggle {
  background-color: var(--cream);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  font-family: "alatsiregular";
  box-shadow: none;
  outline: none;
  cursor: pointer;
}

.my-account-dropdown-toggle:focus,
.my-account-dropdown-toggle:active {
  background-color: var(--cream);
  box-shadow: none;
  outline: none;
  border: none;
}

.my-account-dropdown-toggle::after {
  display: none;
}

.my-account-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.75rem;
  background-color: var(--cream);
  border-radius: 4px;
}

.menu-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.menu-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--pink);
  display: block;
}

.my-account-text-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.my-account-icon {
  color: var(--blue);
  font-size: 1rem;
}

.my-account-text {
  color: var(--blue);
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.my-account-dropdown-menu {
  background-color: var(--white);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: -5px;
  min-width: 150px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1000;
  display: none;
  padding: 10px !important;
}

.my-account-dropdown-item {
  font-family: "alatsiregular";
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue) !important;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background-color: transparent;
  border: none;
  transition: background-color 0.3s ease;
  display: block;
  width: 100%;
  text-align: left;
}

.my-account-dropdown-item:hover,
.my-account-dropdown-item:focus {
  background-color: var(--cream);
  color: var(--blue) !important;
}

.my-account-dropdown-item.active {
  background-color: var(--cream);
  color: var(--blue) !important;
}

.my-account-dropdown-menu .dropdown-item {
  padding: 0.5rem 1.25rem;
}

.my-account-dropdown-menu .dropdown-item:active {
  background-color: var(--cream);
  color: var(--blue);
}

/* My Account Dropdown Mobile Styles */
@media (max-width: 991.98px) {
  .my-account-dropdown-mobile {
    width: 100%;
    margin-top: 0.5rem;
  }
  .my-account-dropdown-toggle-mobile {
    width: 100%;
    justify-content: flex-start;
    background-color: transparent;
    border: none;
    padding: 0.75rem 0;
    text-align: left;
    color: var(--white);
    text-decoration: none;
  }
  .my-account-dropdown-toggle-mobile:focus,
  .my-account-dropdown-toggle-mobile:active,
  .my-account-dropdown-toggle-mobile:hover {
    background-color: transparent;
    box-shadow: none;
    color: var(--white);
    border: none;
    outline: none;
  }
  .my-account-header-mobile {
    width: 100%;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .my-account-header-mobile .my-account-text {
    color: var(--blue);
    font-family: "alatsiregular";
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  .my-account-header-mobile .my-account-icon {
    color: var(--blue);
    font-size: 1rem;
  }
  .my-account-chevron {
    color: var(--blue);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: auto;
  }
  .my-account-dropdown-toggle-mobile[aria-expanded=true] .my-account-chevron {
    transform: rotate(180deg);
  }
  .my-account-submenu-mobile {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    border-left: 2px solid var(--blue);
    padding-left: 1rem;
  }
  .my-account-dropdown-menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .my-account-dropdown-menu-mobile li {
    margin-bottom: 0.5rem;
  }
  .my-account-dropdown-menu-mobile li:last-child {
    margin-bottom: 0;
  }
  .my-account-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--blue) !important;
    text-decoration: none;
    font-family: "alatsiregular";
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  .my-account-dropdown-item:hover,
  .my-account-dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    text-decoration: none;
  }
  .my-account-dropdown-item.active {
    background-color: var(--blue);
    color: var(--white) !important;
  }
}
.custom-navbar .cart-img {
  /* Size & layout */
  display: block;
  font-family: "alatsiregular";
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
  width: 30px;
  height: 30px;
  /* Background image (default) */
  background-image: url("../uploads/checkout-hover.svg");
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
  /* Shape */
  border: solid 1px #AFAFAF;
  border-radius: 50px;
  /* Effects */
  transition: background-image 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state */
.custom-navbar .cart-img:hover {
  /* Hover background image */
  background-image: url("../uploads/checkout.svg");
  /* Optional hover effects */
  /*transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);*/
  /* Shape */
  border: solid 1px var(--blue);
  border-radius: 50px;
  color: #ffffff !important;
}

.custom-navbar .cart-img-active {
  /* Size & layout */
  display: block;
  font-family: "alatsiregular";
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
  width: 44px;
  height: 44px;
  /* Background image (default) */
  background-image: url("../uploads/checkout.svg");
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
  /* Shape */
  border: solid 1px var(--blue);
  border-radius: 50px;
  /* Effects */
  transition: background-image 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#navbarMobile {
  width: 100%;
}
#navbarMobile .nav-link {
  padding: 0.75rem 0;
}
#navbarMobile .nav-link.btn-shop {
  background-color: #1F3856;
  color: var(--white) !important;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
}
#navbarMobile .border-top {
  border-color: rgba(0, 74, 173, 0.2) !important;
}

@media (min-width: 992px) {
  #navbarMobile {
    display: none !important;
  }
  .navbar-toggler.d-lg-none {
    display: none !important;
  }
}
/* Hero Banner Styles */
.hero-banner {
  min-height: 80vh;
  padding: 3rem 0;
  background-color: var(--cream);
}

.hero-banner-in-prod {
  min-height: 30vh;
  padding: 4rem 0 2rem 0;
  background-color: var(--light-blue);
}
@media (max-width: 991.98px) {
  .hero-banner-in-prod {
    min-height: 30vh;
  }
}

.hero-banner-in {
  min-height: 30vh;
  padding: 4rem 0 2rem 0;
  background-color: #fff;
}
@media (max-width: 991.98px) {
  .hero-banner-in {
    min-height: 30vh;
    padding: 5rem 0 2rem 0 !important;
  }
}

.min-vh-30 {
  min-height: 30vh !important;
}
@media (max-width: 991.98px) {
  .min-vh-30 {
    min-height: 20vh !important;
  }
}

.min-vh-50 {
  min-height: 50vh !important;
}
@media (max-width: 991.98px) {
  .min-vh-50 {
    min-height: 20vh !important;
  }
}

.min-vh-50 .hero-brownie-img {
  height: 300px !important;
}

.min-vh-50 .hero-logo-img {
  position: relative;
  height: 300px;
}
@media (max-width: 991.98px) {
  .min-vh-50 .hero-logo-img {
    height: 100% !important;
  }
}

.min-vh-50 .hero-image-container {
  height: 300px !important;
  position: relative;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .min-vh-50 .hero-image-container {
    height: 100% !important;
  }
}

.min-vh-50 .hero-brownie-img {
  height: 300px !important;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-logo-container {
  text-align: center;
}

.logo-circle {
  width: 400px;
  height: 400px;
  background-color: #1F3856; /* Dark blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-allthat {
  font-family: "Arial", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-batters {
  font-family: "Great Vibes", cursive;
  font-size: 4.5rem;
  color: #FFB6C1; /* Light pink */
  font-weight: 400;
  margin-top: -0.5rem;
  line-height: 1;
}

.logo-tagline {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  color: var(--white);
  margin-top: 1rem;
  text-align: center;
}

.hero-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.hero-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-image-container {
    height: 200px;
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 150%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.hero-slide-image.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  animation: slideInFromRight 5s ease-in-out forwards;
}

@keyframes slideInFromRight {
  0% {
    left: 150%;
    transform: translateY(-50%);
    opacity: 0;
  }
  15% {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
  }
  70% {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
  }
  100% {
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
  }
}
.hero-brownie-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.placeholder-brownie {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.placeholder-brownie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 69, 19, 0.3) 50%, transparent 70%);
  border-radius: 10px;
}

.hero-splatter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
}

.cart-count {
  color: var(--dark-pink);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-navbar .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .promo-banner {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }
  .logo-circle {
    width: 300px;
    height: 300px;
  }
  .logo-allthat {
    font-size: 1.5rem;
  }
  .logo-batters {
    font-size: 3rem;
  }
  .logo-tagline {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .custom-navbar .d-flex {
    flex-wrap: wrap;
  }
  .hero-banner {
    min-height: auto;
    padding: 4.3rem 0 2rem 0;
  }
  .hero-logo-section,
  .hero-image-section {
    padding: 1rem;
  }
  .logo-circle {
    width: 250px;
    height: 250px;
  }
  .logo-allthat {
    font-size: 1.2rem;
  }
  .logo-batters {
    font-size: 2.5rem;
  }
  .logo-tagline {
    font-size: 1.2rem;
  }
  .custom-navbar .btn-shop {
    background-color: var(--blue);
    color: var(--white) !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    font-weight: 500;
    font-family: "alatsiregular";
    transition: background-color 0.3s;
  }
  .custom-navbar .nav-link {
    color: var(--blue) !important;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem !important;
    transition: opacity 0.3s;
    font-family: "alatsiregular";
    font-size: 1rem;
  }
  .custom-navbar .active {
    color: var(--white) !important;
    font-weight: 500;
    text-decoration: none;
    text-align: start !important;
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    transition: opacity 0.3s;
    font-family: "alatsiregular";
    font-size: 1rem;
  }
  .custom-navbar .cart-img-active {
    /* Size & layout */
    display: block;
    font-family: "alatsiregular";
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none;
    width: 44px;
    height: 44px;
    /* Background image (default) */
    background-image: url("../uploads/checkout.svg");
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    /* Shape */
    border: solid 1px var(--blue);
    border-radius: 50px;
    /* Effects */
    transition: background-image 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .order-date {
    min-width: 120px;
  }
  .order-items {
    min-width: 200px;
  }
  .order-amount {
    min-width: 100px;
  }
  .order-status {
    min-width: 150px;
  }
  .order-actions {
    min-width: 100px;
  }
  .order-action-text {
    line-height: 15px;
  }
}
.hero-banner {
  background-image: url("../uploads/banner-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.hero-banner-in {
  background-image: url("../uploads/banner-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.hero-banner-in-prod {
  background-image: url("../uploads/banner-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.products-section {
  /*background-image: url("../uploads/all-products-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
  background-color: var(--light-blue);
  min-height: 100vh;
  padding: 3rem 0;
}

.product-title {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}

.product-sub-title {
  color: var(--darker-gray);
  font-size: 0.85rem;
  font-weight: 400;
  min-height: 41px;
}

.price-text {
  font-family: "alatsiregular";
  color: var(--dark-pink);
  font-size: 1.1rem;
  font-weight: 500;
}

.price-strike {
  font-family: "alatsiregular";
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 500;
}

.add-to-cart-btn {
  background-color: var(--blue);
  font-family: "alatsiregular";
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.add-to-cart-btn:hover {
  background-color: var(--cream);
  color: var(--blue);
  border: 1px solid var(--blue);
}

.pack-select {
  border-color: #004AAD;
  color: #004AAD;
  font-size: 0.85rem;
  min-width: 100px;
  font-family: "alatsiregular";
  text-transform: uppercase;
  font-weight: 400;
}

.product-card {
  border: 1px solid var(--blue);
  border-radius: 0px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.pack-select {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}
.pack-select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25) !important;
}
.pack-select option {
  color: var(--blue);
}

.product-img-box {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  max-height: 120px;
  width: auto;
  max-width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.product-img-cart {
  max-height: 50px;
  width: auto;
  max-width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.made-with-love {
  font-family: "amoresaregular", cursive;
  color: var(--dark-pink);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.section-title {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: "alatsiregular";
}

.section-description {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

.search-container {
  position: relative;
  display: inline-block;
  justify-content: flex-end;
}

.search-input {
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 0.75rem 3.5rem 0.75rem 1rem;
  font-size: 0.9rem;
  color: #333;
  width: 250px;
  font-family: "alatsiregular";
  text-transform: uppercase;
  letter-spacing: 1px;
}
.search-input::-moz-placeholder {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.search-input::placeholder {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.search-input:focus {
  outline: none;
  border-color: var(--blue);
}

.search-button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.search-button:hover {
  background-color: #003a8a;
}
.search-button i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .made-with-love {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem !important;
  }
  .search-container {
    margin-top: 1rem;
    justify-content: flex-start;
  }
  .search-input {
    width: 200px;
  }
  .product-card {
    padding: 1rem;
  }
  .product-image-container {
    height: 400px;
  }
  .product-pricing-section {
    flex-direction: column;
    gap: 0.75rem;
  }
  .pack-selector {
    width: 100%;
  }
  .pack-select {
    width: 100%;
    min-width: auto;
  }
  .product-tabs {
    justify-content: inherit !important;
  }
  .product-tabs .nav-link {
    font-size: 1rem !important;
    margin-right: 1rem !important;
  }
  .product-tab-content {
    padding: 1rem 0 !important;
    min-height: 200px;
  }
}
.product-detail-section {
  min-height: 100vh;
  padding: 3rem 0;
  color: var(--blue);
}

.product-image-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-sticker {
  position: absolute;
  top: 10px;
  right: 20px;
  background-image: url("../uploads/off-bg-img.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 1rem 1rem;
  z-index: 10;
  display: flex;
  width: 86px;
  height: 83px;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  transform: rotate(-2deg);
}

.promo-percent {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
}

.promo-text-small {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.promo-date {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.back-to-products {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1rem 0.5rem 0rem;
  display: inline-flex; /* makes link flexible */
  align-items: center;
  gap: 0.5rem;
}

.back-to-products:hover {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-pink);
  text-transform: uppercase;
  text-decoration: none;
}

.main-image-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-container img {
  max-height: 500px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-product-image {
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.image-nav-btn:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}
.image-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.image-nav-btn i {
  font-size: 1rem;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.thumbnail-gallery {
  width: 100%;
}

.thumbnail-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--white);
  padding: 4px;
}
.thumbnail-item:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.thumbnail-item.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--light-blue);
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.product-detail-img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.bestseller-badge {
  display: inline-block;
  border-radius: 50px !important;
}

.bestseller-text {
  background-color: var(--dark-pink);
  color: var(--white);
  padding: 0.2rem 1rem;
  font-family: "alatsiregular";
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
}

.product-detail-name {
  font-family: "alatsiregular";
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.2;
}

.product-tagline {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-rating .stars {
  display: flex;
  gap: 0.25rem;
  color: var(--blue);
  font-size: 1.25rem;
}

.product-rating .stars .fas.fa-star-half-alt {
  color: var(--blue);
}

.rating-text {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 400;
  padding-top: 3px;
}

.product-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-family: "alatsiregular";
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 500;
}

.pack-select-detail {
  background-color: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: "alatsiregular";
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 1rem;
}
.pack-select-detail:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25);
  background-color: transparent;
  color: var(--blue);
}
.pack-select-detail option {
  background-color: var(--white);
  color: var(--blue);
}

.delivery-section {
  margin-bottom: 1.5rem;
}

.delivery-label {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  /*margin-bottom: 0.5rem;*/
}

.delivery-select {
  background-color: #fff;
  border: 1px solid #86b7fe;
  color: var(--black);
  font-family: "alatsiregular";
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  width: auto;
  min-width: 120px;
  flex-shrink: 0;
}
.delivery-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25);
  background-color: transparent;
  color: var(--blue);
}
.delivery-select option {
  background-color: var(--white);
  color: var(--blue);
}

.select-date-link {
  color: var(--blue);
  font-family: "alatsiregular";
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}
.select-date-link:hover {
  text-decoration: underline;
  color: var(--blue);
}

.date-input {
  background-color: #fff;
  border: 1px solid #86b7fe !important;
  color: var(--black);
  font-family: "alatsiregular";
  font-size: 0.9rem !important;
  border-radius: 4px !important;
  padding: 0.3rem 0.6rem !important;
}
.date-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25);
  background-color: transparent;
  color: var(--black);
}
.date-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.add-to-basket-btn {
  background-color: var(--blue);
  color: var(--white) !important;
  font-family: "alatsiregular";
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  border: 1px solid var(--blue);
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s;
}
.add-to-basket-btn:hover {
  background-color: var(--dark-pink);
  color: var(--white);
  border: 1px solid var(--dark-pink);
}

.ingredients-section {
  margin-bottom: 2rem;
}

.ingredients-heading {
  font-family: "alatsiregular";
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 1rem;
}

.ingredients-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ingredient-icon {
  width: 40px;
  height: 40px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.5rem;
  margin: 0 auto;
}

.ingredient-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 0.7rem;
}

.ingredient-before-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredient-before-list li {
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
  padding-left: 1.5rem;
  position: relative;
}
.ingredient-before-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1.5rem;
  line-height: 1;
}
.ingredient-before-list li:last-child {
  margin-bottom: 0;
}

.know-before-section {
  background-color: var(--light-blue);
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.know-before-heading {
  font-family: "alatsiregular";
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 1rem;
}

.know-before-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.know-before-list li {
  color: #000;
  font-size: 1rem;
  margin-bottom: 0rem;
  padding-left: 1.5rem;
  position: relative;
}
.know-before-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1.5rem;
  line-height: 1;
}
.know-before-list li:last-child {
  margin-bottom: 0;
}

.party-order-section {
  text-align: center;
  margin-top: 2rem;
}

.party-order-heading {
  font-family: "Perandory Semi-Condensed", cursive;
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.party-order-btn {
  background-color: var(--cream);
  color: var(--blue);
  font-family: "alatsiregular";
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s;
  border: 1px solid var(--cream);
}
.party-order-btn:hover {
  background-color: var(--white);
  color: var(--blue);
  border: 1px solid var(--blue);
}

@media (max-width: 992px) {
  .product-detail-name {
    font-size: 2rem;
  }
  .main-image-wrapper {
    min-height: 400px;
    padding: 1.5rem;
  }
  .main-product-image {
    max-height: 400px;
  }
  .party-order-heading {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .product-detail-section {
    padding: 2rem 0;
  }
  .product-detail-name {
    font-size: 1.75rem;
  }
  .main-image-wrapper {
    min-height: 300px;
    padding: 1rem;
  }
  .main-product-image {
    max-height: 300px;
  }
  .promo-sticker {
    top: -50px;
    right: 10px;
    padding: 0.8rem 0.8rem;
    background-image: url("../uploads/off-bg-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .promo-percent {
    font-size: 1rem;
  }
  .promo-text-small {
    font-size: 1rem;
  }
  .promo-date {
    font-size: 1rem;
  }
  .image-nav-btn {
    width: 40px;
    height: 40px;
  }
  .image-nav-btn i {
    font-size: 0.9rem;
  }
  .thumbnail-item {
    width: 50px;
    height: 50px;
  }
  .thumbnail-container {
    gap: 0.75rem;
  }
  .ingredients-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .ingredient-icon {
    width: 80px;
    height: 80px;
    font-size: 1.25rem;
  }
  .party-order-heading {
    font-size: 1.75rem;
  }
}
.product-tabs {
  border-bottom: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  gap: 0;
  justify-content: space-between;
}
.product-tabs .nav-item {
  margin-bottom: 0;
}
.product-tabs .nav-link {
  font-family: "alatsiregular";
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark-gray);
  background-color: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.2rem 0rem;
  margin-right: 2rem;
  position: relative;
  letter-spacing: 0.5px;
}
.product-tabs .nav-link:hover {
  color: var(--dark-gray);
  border-bottom-color: transparent;
}
.product-tabs .nav-link.active {
  color: var(--blue);
  background-color: transparent;
  border: none;
  background-image: url("../uploads/line-stroke.svg");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.product-tabs .nav-link.active:hover {
  color: var(--blue);
  border-bottom-color: var(--dark-pink);
}

.product-tab-content {
  padding: 2rem 0;
  min-height: 200px;
}
.product-tab-content .tab-pane-content {
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
}

.review-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 1rem;
}

.reviewer-place {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-gray);
}

.review-border {
  border-bottom: dashed 1px var(--dark-gray);
}

.shipping-title {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
}

.custom-order-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.custom-order-modal-container {
  /*background-color: var(--white);*/
  border-radius: 0px;
  max-width: 360px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.custom-order-form-view {
  background-color: var(--white);
  padding: 0;
}

.custom-order-header {
  background-color: var(--blue);
  padding: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-order-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.btn-close-custom {
  position: absolute;
  top: 1.3rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.btn-close-custom:hover {
  opacity: 1;
}
.btn-close-custom span {
  font-size: 1.75rem;
  line-height: 1;
}

.custom-order-body {
  padding: 2rem 1.5rem 1rem 1.5rem;
}

.custom-form-field {
  margin-bottom: 1.2rem;
}

.custom-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 0rem;
}

.custom-form-input,
.custom-form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #000;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}
.custom-form-input:focus,
.custom-form-textarea:focus {
  border-bottom-color: var(--blue);
}
.custom-form-input::-moz-placeholder, .custom-form-textarea::-moz-placeholder {
  color: #999;
}
.custom-form-input::placeholder,
.custom-form-textarea::placeholder {
  color: #999;
}

.custom-form-textarea {
  resize: vertical;
  min-height: 60px;
}

.custom-form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 0rem;
}

.custom-send-btn {
  background: transparent;
  border: none;
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 0rem 0.5rem 1rem;
  transition: opacity 0.3s;
}
.custom-send-btn:hover {
  opacity: 0.8;
}
.custom-send-btn .send-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1;
}

.thank-you-view {
  background-color: var(--blue);
  background-image: url("../uploads/thank-you.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 3rem 2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  min-height: 580px;
}

.btn-close-thankyou {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s;
  z-index: 10;
}
.btn-close-thankyou:hover {
  opacity: 1;
}
.btn-close-thankyou span {
  font-size: 1.75rem;
  line-height: 1;
}

.thank-you-content {
  width: 100%;
}

.thank-you-title {
  font-family: "amoresaregular", cursive;
  font-size: 3rem;
  font-weight: normal;
  color: var(--pink);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.thank-you-divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #ADFF2F;
  margin: 2rem 0;
}

.thank-you-message {
  font-family: "alatsiregular";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
  background-image: url(../uploads/line-stroke-thankyou.svg);
  background-size: 216px 10px;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  .custom-order-modal-container {
    max-width: 95%;
  }
  .custom-order-body {
    padding: 1.5rem 1rem;
  }
  .thank-you-view {
    padding: 2rem 1.5rem;
    min-height: 350px;
  }
  .thank-you-title {
    font-size: 2.5rem;
  }
  .thank-you-message {
    font-size: 1rem;
  }
}
.note-section {
  background-color: var(--light-blue);
  padding: 1rem;
}

.note-title {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
}

.coupon-code {
  font-size: 0.8rem;
}

.remove-link {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  font-weight: 400;
}

.remove-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.page-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 5px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
  background-image: url(../uploads/title-btm-line.svg);
  background-size: auto 4px !important;
  background-position: right bottom !important;
  background-repeat: no-repeat;
}
@media (max-width: 576px) {
  .page-title {
    background-position: right bottom !important;
  }
}

.page-subtitle {
  font-family: "amoresaregular";
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark-pink);
  margin-bottom: 20px;
}

.title-text {
  font-family: "alatsiregular";
  font-size: 1.775rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 10px;
}

/* My Account Section */
.my-account-section {
  min-height: 100vh;
  padding: 3rem 0;
}

.my-account-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 2rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.my-account-nav {
  margin-bottom: 1.5rem;
}

.my-account-nav-list {
  border-bottom: none;
  gap: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.my-account-nav-list .nav-item {
  margin-right: 2rem;
}

.my-account-nav-list .nav-item.ms-auto {
  margin-left: auto;
  margin-right: 0;
}

.my-account-nav-list .nav-link {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  padding: 0.5rem 0;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.my-account-nav-list .nav-link.active {
  color: var(--blue);
  background-image: url(../uploads/line-stroke.svg);
  background-size: 100% 10px;
  background-position: center bottom !important;
  background-repeat: no-repeat;
  background-color: transparent;
}

.my-account-nav-list .nav-link.logout-link {
  color: var(--dark-pink);
  margin-left: auto;
}

.my-account-nav-list .nav-link:hover {
  color: var(--blue);
  background-image: url(../uploads/line-stroke.svg);
  background-size: 100% 10px;
  background-position: center bottom !important;
  background-repeat: no-repeat;
  background-color: transparent;
}

.my-account-nav-list .nav-link.logout-link:hover {
  color: var(--dark-pink);
}

.my-account-divider {
  border-top: 1px solid var(--pink);
  margin: 1.5rem 0;
  opacity: 1;
}

.my-account-content {
  color: var(--white);
}

.profile-field {
  margin-bottom: 1.5rem;
}

.profile-label {
  font-family: "amoresaregular";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark-pink);
  display: block;
  margin-bottom: 0.5rem;
}

.profile-value {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
  display: block;
}

.add-address-link {
  margin-top: 1rem;
}

.add-address-btn {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark-pink);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.add-address-btn:hover {
  color: var(--pink);
  opacity: 0.8;
  text-decoration: none;
}

.edit-profile-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-edit-profile-outline {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  background-color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-edit-profile-outline:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-edit-profile-filled {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-edit-profile-filled:hover {
  background-color: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-edit-address {
  font-family: "alatsiregular";
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue);
  background-color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 4px;
  padding: 0.1rem 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-edit-address:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.preferences-section {
  margin-top: 2rem;
}

.preference-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue) !important;
  border-radius: 4px;
  /*background-color: var(--blue)!important;*/
  cursor: pointer;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.preference-checkbox:checked {
  background-color: var(--white);
  border-color: var(--white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23004AAD' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.preference-checkbox:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  outline: none;
}

.preference-label {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 400;
  color: var(--blue);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
}

.form-check-input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Orders table (My Account > My Orders) */
.orders-content {
  margin-top: 2rem;
}

.orders-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}

.orders-table {
  border-collapse: separate;
  border-spacing: 0;
}

.orders-table thead th {
  font-family: "amoresaregular";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark-pink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--pink);
}

.orders-table tbody td {
  font-size: 0.95rem;
  color: var(--blue);
  vertical-align: top;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.orders-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.orders-table tbody tr:hover td {
  background-color: rgba(242, 247, 250, 0.15);
}

.order-date {
  white-space: nowrap;
  font-weight: 500;
}

.order-items div {
  line-height: 1.4;
}

.order-amount {
  white-space: nowrap;
  font-weight: 500;
}

.order-status .status-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.order-status .status-date {
  font-size: 0.85rem;
  color: var(--darker-gray);
}

.status-in-process {
  color: var(--darker-gray);
}

.status-out-for-delivery {
  color: var(--dark-pink);
}

.status-delivered {
  color: var(--blue);
}

.order-actions {
  min-width: 170px;
}

.order-action-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}

.order-action-link:hover {
  color: var(--dark-pink);
  text-decoration: none;
}

.order-action-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
  margin-right: 0.5rem;
}

.order-rate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--dark-pink);
  color: var(--dark-pink);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .orders-content {
    margin-top: 1.5rem;
  }
  .orders-table thead {
    display: block;
  }
  .orders-table tbody tr {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .orders-table tbody td {
    /*display: flex;*/
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border: none;
    vertical-align: top;
  }
  .orders-table tbody td::before {
    /*content: attr(data-label);*/
    font-family: "amoresaregular";
    color: var(--pink);
    margin-right: 1rem;
  }
}
/* Responsive Styles for My Account */
@media (max-width: 768px) {
  .my-account-title {
    font-size: 2rem;
  }
  .my-account-nav-list {
    /*flex-direction: column;*/
    gap: 0.5rem;
  }
  .my-account-nav-list .nav-item {
    margin-right: 10px;
    /*width: 100%;*/
  }
  .my-account-nav-list .nav-item.ms-auto {
    margin-left: 0 !important;
  }
  .my-account-nav-list .nav-link {
    display: block;
    width: 100%;
  }
  .edit-profile-buttons {
    flex-direction: column;
  }
  .my-account-bg {
    background-image: url("../uploads/my-accout-bg.png");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 200px !important;
    margin-bottom: 2rem;
  }
}
/* Catering Section */
.catering-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #E8F4F8; /* Light blue background like in the image */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.catering-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catering-content-container {
  background-color: var(--blue); /* Dark blue background */
  color: var(--white);
  padding: 60px;
}

.catering-heading {
  font-family: "alatsiregular", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.catering-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.95;
}

.catering-btn {
  background-color: var(--pink);
  color: var(--blue);
  border: none;
  padding: 0.6rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "alatsiregular", sans-serif;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.catering-btn:hover {
  background-color: #e17ab8; /* Slightly darker pink */
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.catering-button-container {
  margin-top: 1rem;
}

/* Responsive adjustments for catering section */
@media (max-width: 991.98px) {
  .catering-image-container,
  .catering-content-container {
    min-height: 350px;
  }
  .catering-heading {
    font-size: 2rem;
  }
  .catering-text {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .catering-image-container,
  .catering-content-container {
    min-height: 300px;
  }
  .catering-heading {
    font-size: 1.75rem;
  }
  .catering-text {
    font-size: 0.95rem;
  }
  .catering-content-container {
    padding: 2rem 1.5rem !important;
  }
}
/* Baking Journey Section */
.baking-journey-section {
  background-color: var(--cream);
  padding: 80px 0;
}

.baking-journey-content {
  margin: 0 auto;
}

.baking-journey-headline {
  font-family: "amoresaregular", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.2;
}

.premium-ingredients-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.bring-you {
  font-family: "amoresaregular", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--blue);
}

.the-taste-of-heaven {
  font-family: "alatsiregular", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dark-pink) !important;
}

.baking-journey-headline-connect {
  font-family: "Perandory Semi-Condensed";
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .baking-journey-headline-connect {
    font-size: 2.5rem !important;
  }
}

.baking-journey-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--blue);
}

.baking-journey-btn {
  background-color: var(--blue);
  color: var(--white);
  border: none;
  padding: 0.7rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "alatsiregular", sans-serif;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.baking-journey-btn:hover {
  background-color: var(--dark-pink) !important;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.all-products-btn {
  background-color: var(--white);
  color: var(--blue);
  border: none;
  padding: 0.7rem 2.5rem;
  border: 1px solid var(--blue);
  font-size: 1rem;
  font-weight: 500;
  font-family: "alatsiregular", sans-serif;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.all-products-btn:hover {
  background-color: var(--blue) !important;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Instagram Post Styles */
.instagram-post-container {
  width: 100%;
}

.instagram-post-img {
  margin-top: -220px !important;
}

/* Responsive adjustments for baking journey section */
@media (max-width: 991.98px) {
  .baking-journey-section {
    min-height: auto;
  }
  .baking-journey-content {
    padding: 3rem 2rem !important;
  }
  .baking-journey-headline {
    font-size: 2.5rem;
  }
  .instagram-post-container {
    max-width: 100%;
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  .baking-journey-headline {
    font-size: 2rem;
  }
  .baking-journey-text {
    font-size: 0.95rem;
  }
  .baking-journey-content {
    padding: 2rem 1.5rem !important;
  }
  .instagram-post-container {
    padding: 1rem;
  }
  .instagram-image-container img {
    height: 300px !important;
  }
  .instagram-post-img {
    margin-top: 0px !important;
  }
  .baking-journey-section {
    padding: 40px 0 !important;
  }
  /* Subscription Section Mobile Styles */
  .subscription-input {
    border-radius: 8px 0 8px 0 !important;
  }
  .subscription-btn {
    border-radius: 0 0 8px 8px !important;
  }
}
.subscription-btn {
  background-color: var(--blue) !important;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: alatsiregular;
}

.subscription-btn:hover {
  background-color: var(--dark-pink) !important;
  color: white !important;
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: alatsiregular;
}

.subscription-input {
  background-color: #F5F0EB;
  border: none;
  border-radius: 8px 0 0 8px !important;
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .subscription-input {
    border-radius: 8px 8px 0px 0px !important;
  }
}

.footer-subscription-container {
  border-bottom: 1px solid #C9C9C9;
  border-top: 1px solid #C9C9C9;
  margin-bottom: 2rem !important;
}
@media (max-width: 576px) {
  .footer-subscription-container {
    border-top: 1px solid transparent !important;
  }
}

.footer-subscription-row {
  padding: 0rem 0 0rem 0;
}

.footer-subscription-row > [class*=col-]:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

@media (max-width: 991.98px) {
  .footer-subscription-row > [class*=col-]:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.whatsapp-group-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  font-family: alatsiregular;
  text-transform: uppercase;
}

.whatsapp-group-description {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 400;
}

/* Equipment Section Styles */
.equipment-section {
  padding: 0rem 0 3rem 0;
}

/* Specialities Section */
.specialities-section {
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: var(--blue);
}

.specialities-heading {
  font-family: "alatsiregular";
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.specialities-brands {
  font-family: "amoresaregular", cursive;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 2rem;
}

.gray-bg {
  background-color: #F0F0F0 !important;
  padding: 66px 0 !important;
}

.specialities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 4rem;
}

.speciality-card {
  display: flex;
  flex-direction: column;
}

.speciality-header {
  /* Header container for speciality cards */
}

.speciality-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.speciality-title-brownie,
.speciality-title-cookies {
  color: var(--blue);
}

.speciality-title-donuts,
.speciality-title-tiramisu {
  color: var(--blue);
}

.speciality-body {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.speciality-image-wrapper {
  flex-shrink: 0;
}

.speciality-image {
  max-width: 120px;
  height: auto;
  display: block;
}

.speciality-metrics {
  margin: 0;
  padding: 0;
}

.speciality-metric {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  text-align: end;
  gap: 1.5rem;
  font-family: "alatsiregular";
  font-size: 0.85rem;
  text-transform: uppercase;
}

.speciality-metric dt {
  color: var(--blue);
  font-weight: 400;
  font-family: "Bricolage Grotesque";
}

.speciality-metric dd {
  margin: 0;
}

.speciality-bar {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--light-blue);
  box-shadow: inset 0 0 0 1px #f0f0f0;
  overflow: hidden;
}

.speciality-bar-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--pink));
}

/* Metric-specific fill lengths to approximate design */
.taste-fill {
  width: 88%;
}

.sugar-fill {
  width: 65%;
}

.sugar-high {
  width: 95%;
}

.sugar-medium {
  width: 75%;
}

.healthy-fill {
  width: 40%;
}

.healthy-medium {
  width: 55%;
}

.healthy-low {
  width: 25%;
}

.sharable-fill {
  width: 80%;
}

.happiness-fill {
  width: 95%;
}

@media (max-width: 992px) {
  .specialities-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .specialities-section {
    margin-top: 3rem;
  }
  .specialities-heading {
    font-size: 1.75rem;
    text-align: left;
  }
  .speciality-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .speciality-image {
    max-width: 120px;
  }
  .speciality-metric {
    grid-template-columns: 0.9fr 3.5fr;
    gap: 0.75rem;
  }
}
.equipment-greeting {
  font-family: "amoresaregular", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--pink);
  margin-bottom: 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  .equipment-greeting {
    text-align: center !important;
  }
}

.equipment-heading {
  font-family: "alatsiregular", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: left;
}

.equipment-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.equipment-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.equipment-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  /*filter: blur(20px);
  transform: translateY(-20px);*/
}

.equipment-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.equipment-image {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.equipment-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-align: center;
  margin-top: 0.5rem;
  z-index: 2;
  position: relative;
}

/* Responsive Styles for Equipment Section */
@media (max-width: 992px) {
  .equipment-grid {
    justify-content: center;
    gap: 3rem;
  }
  .equipment-item {
    flex: 0 0 auto;
    width: 250px;
  }
}
@media (max-width: 768px) {
  .equipment-section {
    padding: 2rem 0rem 5rem 0rem;
  }
  .equipment-greeting {
    font-size: 1.8rem;
  }
  .equipment-heading {
    font-size: 1.75rem;
  }
  .equipment-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .equipment-item {
    width: 100%;
    max-width: 250px;
  }
  .equipment-blob {
    width: 150px;
    height: 150px;
  }
  .equipment-image-wrapper {
    height: 180px;
  }
  .equipment-image {
    max-height: 180px;
  }
}
/* Brands Section Styles */
.brands-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0rem 0 2rem 0;
  flex-wrap: wrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /*padding: 1.5rem 2rem;*/
  flex: 1;
  min-width: 150px;
}

img.brand-image {
  max-height: 90px;
  padding: 1rem 2rem;
}

.brand-divider {
  width: 1px;
  height: 60px;
  background-color: var(--gray);
  flex-shrink: 0;
}

.brand-text {
  font-family: "alatsiregular", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}

.brand-text sup {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 400;
}

/* Morde Brand */
.brand-morde .brand-text {
  color: #DC143C;
  text-transform: lowercase;
  font-weight: 700;
  font-size: 1.8rem;
}

/* D'lecta Brand */
.brand-dlecta {
  position: relative;
}

.brand-bg {
  background-color: #DC143C;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  position: relative;
}

.brand-bg-wavy {
  border-radius: 0;
  padding: 0.75rem 1.5rem 1.25rem 1.5rem;
  position: relative;
  overflow: visible;
}

.brand-bg-wavy::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -2px;
  right: -2px;
  height: 20px;
  background: #DC143C;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  z-index: -1;
}

.brand-dlecta .brand-text {
  color: var(--white);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
}

/* Nutella Brand */
.brand-nutella {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.brand-nut {
  color: var(--black);
  font-weight: 500;
  font-size: 1.8rem;
}

.brand-ella {
  color: #DC143C;
  font-weight: 500;
  font-size: 1.8rem;
}

/* Lotus Biscoff Brand */
.brand-biscoff {
  position: relative;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-bg-rounded {
  background-color: #DC143C;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.brand-lotus {
  font-family: "alatsiregular", sans-serif;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  background-color: var(--white);
  color: #DC143C;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.3rem;
  display: inline-block;
  align-self: flex-start;
}

.brand-biscoff .brand-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}

/* Rich's Brand */
.brand-richs {
  position: relative;
}

.brand-bg-irregular {
  background-color: #DC143C;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  position: relative;
  border-radius: 0;
  clip-path: polygon(0% 15%, 5% 0%, 95% 0%, 100% 15%, 100% 85%, 95% 100%, 5% 100%, 0% 85%);
}

.brand-richs .brand-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Styles for Brands Section */
@media (max-width: 992px) {
  .brands-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .brand-logo {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: auto;
  }
  .brand-divider {
    display: none;
  }
}
@media (max-width: 768px) {
  .brands-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand-logo {
    flex: 1;
    width: 100%;
    padding: 1rem;
  }
  .brand-divider {
    display: block;
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }
  .brand-text {
    font-size: 1.2rem;
  }
  .brand-morde .brand-text {
    font-size: 1.4rem;
  }
  .brand-dlecta .brand-text {
    font-size: 1.3rem;
  }
  .brand-nut,
  .brand-ella {
    font-size: 1.4rem;
  }
  .brand-biscoff .brand-text {
    font-size: 1.2rem;
  }
  .brand-richs .brand-text {
    font-size: 1.3rem;
  }
}
/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 4rem 0;
  background-color: var(--blue);
  overflow: hidden;
  background-image: url("../uploads/pattern-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: repeat-y;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.dessert-illustrations {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.dessert-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.dessert-croissant {
  top: 10%;
  left: 5%;
  transform: rotate(-15deg);
}

.dessert-cake {
  top: 20%;
  right: 8%;
  transform: rotate(10deg);
}

.dessert-cupcake {
  top: 60%;
  left: 3%;
  transform: rotate(-20deg);
}

.dessert-donut {
  bottom: 15%;
  right: 5%;
  transform: rotate(15deg);
}

.dessert-candy {
  top: 40%;
  right: 12%;
  transform: rotate(-10deg);
}

.testimonials-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 600px;
  z-index: 1;
}

.testimonial-card {
  position: absolute;
  background-color: var(--white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 407px;
  z-index: 2;
  border-radius: 80px;
}

.testimonial-card-large {
  width: 380px;
  padding: 2rem;
}

/* Card Positioning */
.testimonial-card-1 {
  top: 5%;
  left: 5%;
}

.testimonial-card-2 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  width: 236px;
}

.testimonial-card-3 {
  top: 5%;
  right: 5%;
  width: 270px;
  border-radius: 10px;
}

.testimonial-card-4 {
  top: 35%;
  left: 3%;
  width: 257px;
  border-radius: 10px;
  text-align: center;
  padding: 0;
}

.testimonial-card-5 {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 236px;
  border-radius: 10px !important;
  text-align: center;
  padding: 0;
}

.testimonial-card-6 {
  bottom: 8%;
  right: 8%;
}

.testimonial-card-7 {
  top: 38%;
  right: 5%;
  z-index: 3;
  width: 236px;
  border-radius: 10px;
  text-align: center;
  padding: 20;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonial-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-pink);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-profile {
  align-items: center;
  gap: 0.75rem;
  border-radius: 0 0 10px 10px;
}

.testimonial-avatar {
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar-2 {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  margin-top: -50px;
}

.testimonial-avatar-3 {
  margin-top: -50px;
  margin-left: -50px;
}
@media (max-width: 768px) {
  .testimonial-avatar-3 {
    margin-top: -30px !important;
    margin-left: -30px !important;
  }
}

.testimonial-avatar-7 {
  margin-top: 10px;
  margin-left: -50px;
  border-radius: 50% !important;
  width: 75px;
  height: 75px;
}
@media (max-width: 768px) {
  .testimonial-avatar-7 {
    margin-top: 10px !important;
    margin-left: -30px !important;
  }
}

.testimonial-avatar-8 {
  margin-top: 10px;
  margin-left: 50px;
  border-radius: 50% !important;
  width: 75px;
  height: 75px;
}

.testimonial-name {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.testimonial-name-wrapper {
  display: flex;
  flex-direction: column;
}

.testimonial-title-text {
  font-size: 0.75rem;
  color: var(--black);
  margin-top: 0.25rem;
  font-weight: 400;
}

.testimonial-rating {
  gap: 0.2rem;
  margin-bottom: 0;
}

.testimonial-rating .star {
  font-size: 1rem;
  color: var(--gray);
}

.testimonial-rating .star.filled {
  color: #FFD700;
}

.testimonial-text {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
}

.testimonial-card-large .testimonial-text {
  font-size: 0.9rem;
}

.testimonial-icon {
  position: absolute;
  z-index: 1;
}

.testimonial-icon-thumbs-up {
  top: -15px;
  right: 90px;
  border-radius: 50%;
  background-color: var(--pink);
}

.testimonial-icon-thumbs-up-gray {
  top: -25px;
  right: 190px;
  border-radius: 50%;
  background-color: var(--cream);
}

.testimonial-icon-thumbs-up-blue {
  top: -15px;
  right: 20px;
}

.testimonial-icon-quote-right {
  top: 10px;
  right: 20px;
}

.testimonial-icon-quote-right-small {
  top: 10px;
  right: -15px;
}

.testimonial-icon-quote-right-small-7 {
  top: -15px;
  right: 15px;
}

.testimonial-icon-quote-left {
  bottom: -20px;
  left: -20px;
}

.testimonial-icon-quote-left-bottom {
  bottom: -10px;
  left: 20px;
}

/* Responsive Styles for Testimonials */
@media (max-width: 1200px) {
  .testimonials-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  .testimonial-card {
    width: 280px;
  }
  .testimonial-card-large {
    width: 340px;
  }
  .testimonial-card-2 {
    left: 45%;
  }
  .testimonial-card-5 {
    left: 45%;
  }
}
@media (max-width: 992px) {
  .testimonials-section {
    min-height: auto;
    padding: 3rem 0;
  }
  .testimonials-container {
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .testimonial-card {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
  .testimonial-card-large {
    grid-column: 1/-1;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-card {
    padding: 1.25rem;
  }
  .testimonial-card-large {
    padding: 1.5rem;
  }
  .testimonial-text {
    font-size: 0.8rem;
  }
  .testimonial-name {
    font-size: 0.85rem;
  }
  .testimonial-icon {
    display: none;
  }
  .dessert-illustrations {
    display: none;
  }
}
/* Checkout Page Styles */
.checkout-section {
  min-height: 100vh;
  padding: 3rem 0;
  background-color: var(--white);
}

.checkout-page-title {
  font-family: "Perandory Semi-Condensed";
  font-size: 2rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.checkout-form-section {
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray);
  border-radius: 0;
  margin-bottom: 2rem;
}

.checkout-form-title {
  font-family: "alatsiregular";
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.checkout-form {
  margin-top: 1.5rem;
}

.checkout-form-field {
  margin-bottom: 0;
}

.checkout-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}

.checkout-form-input,
.checkout-form-select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--dark-gray);
  padding: 0.75rem 0;
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.checkout-form-input:focus,
.checkout-form-select:focus {
  border-bottom-color: var(--blue);
  outline: none;
}

.static-value {
  padding: 0.75rem 0;
  font-family: "alatsiregular";
  font-weight: 400;
  font-size: 1rem;
  border-bottom: 1px solid var(--dark-gray);
}

.checkout-form-input::-moz-placeholder {
  color: var(--darker-gray);
  font-family: "alatsiregular";
}

.checkout-form-input::placeholder {
  color: var(--darker-gray);
  font-family: "alatsiregular";
}

.checkout-form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23004AAD' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px 12px;
  padding-right: 1.5rem;
}

.checkout-form-select option {
  color: var(--blue);
  background-color: var(--white);
  font-family: "alatsiregular";
}

.checkout-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue) !important;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  flex-shrink: 0;
}

.checkout-checkbox:checked {
  background-color: var(--blue);
  border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.checkout-checkbox:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25);
  outline: none;
}

.checkout-checkbox-label {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--blue);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.checkout-order-summary {
  background-color: var(--light-blue);
  padding: 2rem;
  border: 1px solid var(--gray);
  border-radius: 0;
  position: sticky;
  top: 20px;
}

.checkout-order-title {
  font-family: "alatsiregular";
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.checkout-order-items {
  margin-bottom: 1.5rem;
}

.checkout-order-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.checkout-order-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkout-item-name {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}

.checkout-item-price {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-pink);
}

.checkout-item-qty {
  font-family: "alatsiregular";
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--darker-gray);
  margin-top: 0.25rem;
}

.checkout-divider {
  border-top: 1px solid var(--gray);
  margin: 1rem 0;
  opacity: 1;
}

.checkout-order-totals {
  margin-bottom: 1rem;
}

.checkout-total-label {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
}

.checkout-total-value {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.checkout-shipping-free {
  color: var(--dark-pink);
  font-weight: 500;
}

.checkout-grand-total-label {
  font-family: "alatsiregular";
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
}

.checkout-grand-total-value {
  font-family: "alatsiregular";
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue);
}

.checkout-place-order-btn {
  background-color: var(--blue);
  color: var(--white);
  font-family: "alatsiregular";
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.checkout-place-order-btn:hover {
  background-color: var(--cream);
  color: var(--blue);
  border: 1px solid var(--blue);
}

.checkout-place-order-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25);
}

.checkout-zip-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--dark-gray);
  padding: 0.75rem 0;
  transition: border-color 0.3s ease;
}

.checkout-zip-wrapper:focus-within {
  border-bottom-color: var(--blue);
}

.checkout-zip-prefix {
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  margin-right: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
}

.checkout-zip-input {
  flex: 1;
  border: none;
  border-bottom: none;
  padding: 0;
  padding-bottom: 0;
  font-family: "alatsiregular";
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background: transparent;
  outline: none;
  width: auto;
  min-width: 60px;
}

.checkout-zip-input::-moz-placeholder {
  color: var(--darker-gray);
  font-family: "alatsiregular";
  letter-spacing: 0.2em;
}

.checkout-zip-input::placeholder {
  color: var(--darker-gray);
  font-family: "alatsiregular";
  letter-spacing: 0.2em;
}

.checkout-zip-input:focus {
  border-bottom: none;
  outline: none;
}

/* Responsive Styles for Checkout */
@media (max-width: 992px) {
  .checkout-order-summary {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .checkout-section {
    padding: 2rem 0;
  }
  .checkout-page-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  .checkout-form-section {
    padding: 1.5rem;
  }
  .checkout-form-title {
    font-size: 1.1rem;
  }
  .checkout-order-summary {
    padding: 1.5rem;
  }
  .checkout-order-title {
    font-size: 1.1rem;
  }
  .checkout-place-order-btn {
    font-size: 1rem;
    padding: 0.65rem 1.25rem;
  }
}
.checkout-success-container {
  position: relative;
  min-height: 414px;
  background-image: url("../uploads/thank-you-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}
.checkout-success-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(30, 58, 138, 0.2) 100%);
  pointer-events: none;
}

.checkout-success-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.checkout-success-title {
  font-family: "amoresaregular", cursive;
  font-size: 3.5rem;
  color: var(--dark-pink);
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .checkout-success-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .checkout-success-title {
    font-size: 2rem;
  }
}

.checkout-success-message {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 0 2rem 0;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .checkout-success-message {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .checkout-success-message {
    font-size: 1.25rem;
  }
}

.payment-confirmation-container {
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .payment-confirmation-container {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .payment-confirmation-container {
    padding: 1.5rem 1rem;
  }
}

.payment-instructions {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: left;
}
.payment-instructions p {
  margin: 0;
}
@media (max-width: 768px) {
  .payment-instructions {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .payment-instructions {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
}

.qr-code-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 576px) {
  .qr-code-wrapper {
    margin: 1.5rem 0;
  }
}

.qr-code-placeholder {
  width: 300px;
  height: 300px;
  background-color: #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}
@media (max-width: 576px) {
  .qr-code-placeholder {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .qr-code-placeholder {
    width: 200px;
    height: 200px;
  }
}

.qr-code-label {
  color: var(--blue);
  font-size: 2.2rem;
  font-family: "Perandory Semi-Condensed";
  font-weight: 400;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 576px) {
  .qr-code-label {
    font-size: 0.9rem;
    bottom: -1.75rem;
  }
}

.payment-screenshot-instructions {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 3rem;
  text-align: left;
}
.payment-screenshot-instructions p {
  margin: 0;
}
@media (max-width: 768px) {
  .payment-screenshot-instructions {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 576px) {
  .payment-screenshot-instructions {
    font-size: 0.95rem;
    margin-top: 2rem;
  }
}

.order-details-container {
  padding: 3rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .order-details-container {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .order-details-container {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
}

.order-details-title {
  font-family: "amoresaregular", cursive;
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--dark-pink);
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .order-details-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .order-details-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

.order-products-section {
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .order-products-section {
    margin-bottom: 2rem;
  }
}

.order-products-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 1.5rem;
}

.order-header-col {
  font-family: "Perandory Semi-Condensed";
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
}
.order-header-col.product-col {
  flex: 1;
}
.order-header-col.qty-col {
  width: 80px;
  text-align: right;
}
@media (max-width: 576px) {
  .order-header-col {
    font-size: 0.9rem;
  }
}

.order-product-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray);
}
.order-product-item:last-child {
  border-bottom: none;
}
@media (max-width: 576px) {
  .order-product-item {
    padding: 1rem 0;
  }
}

.order-product-info {
  display: flex;
  align-items: flex-start;
  flex: 1;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .order-product-info {
    gap: 1rem;
  }
}

.order-product-image {
  width: 41px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.order-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .order-product-image {
    width: 80px;
    height: 80px;
  }
}

.order-product-details {
  flex: 1;
}

.order-product-name {
  font-family: "alatsiregular";
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .order-product-name {
    font-size: 1rem;
  }
}

.order-product-subtitle {
  font-family: "alatsiregular";
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 0.25rem;
}
@media (max-width: 576px) {
  .order-product-subtitle {
    font-size: 0.85rem;
  }
}

.order-product-description {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--darker-gray);
  margin-bottom: 0.15rem;
}
@media (max-width: 576px) {
  .order-product-description {
    font-size: 0.8rem;
  }
}

.order-product-qty {
  font-family: "alatsiregular";
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blue);
  width: 80px;
  text-align: right;
}
@media (max-width: 576px) {
  .order-product-qty {
    font-size: 1rem;
    width: 60px;
  }
}

.order-shipping-section {
  margin-top: 3rem;
  padding-top: 2rem;
}
@media (max-width: 576px) {
  .order-shipping-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

.order-shipping-title {
  font-family: "amoresaregular", cursive;
  font-size: 2rem;
  font-weight: normal;
  color: var(--dark-pink);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .order-shipping-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .order-shipping-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.order-shipping-info {
  display: flex;
  flex-direction: column;
}

.order-shipping-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue);
}
@media (max-width: 576px) {
  .order-shipping-name {
    font-size: 1rem;
  }
}

.order-shipping-address {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.5;
}
@media (max-width: 576px) {
  .order-shipping-address {
    font-size: 0.95rem;
  }
}

.order-shipping-email {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark-pink);
}
@media (max-width: 576px) {
  .order-shipping-email {
    font-size: 0.95rem;
  }
}

.order-shipping-phone {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
}
@media (max-width: 576px) {
  .order-shipping-phone {
    font-size: 0.95rem;
  }
}

hr.pink-border {
  border: none;
  height: 2px;
  background-color: var(--dark-pink);
}

.my-account-bg {
  background-image: url("../uploads/my-accout-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  min-height: 400px;
  margin-bottom: 2rem;
}

.footer-section {
  background-image: url("../uploads/footer-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  min-height: 350px;
  background-color: var(--cream);
  color: var(--white);
}
@media (max-width: 576px) {
  .footer-section {
    background-size: contain !important;
    min-height: 140px !important;
    background-position: bottom center !important;
  }
}

.footer-nav {
  gap: 1rem;
  margin-bottom: 9.9rem;
  color: var(--blue);
}
@media (max-width: 576px) {
  .footer-nav {
    margin-bottom: 5rem !important;
  }
}

.footer-nav ul {
  flex-direction: row;
  gap: 1rem;
  padding-left: 0 !important;
}

.footer-nav ul li {
  list-style: none;
  padding-bottom: 15px;
}

.footer-nav ul li a {
  list-style: none;
  color: var(--blue) !important;
  font-size: 1rem;
  text-decoration: none;
  position: relative !important;
}

.footer-nav ul li a:hover {
  list-style: none;
  color: var(--dark-pink) !important;
  font-size: 1rem;
  text-underline-offset: 2px;
}

.footer-nav ul li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-nav ul li a:hover::after {
  width: 100%;
}

.footer-nav-link {
  position: relative;
  color: var(--blue);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* adjust spacing */
  width: 100%;
  height: 1px;
  background-color: var(--dark-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--blue);
}

.footer-nav-link:hover::after {
  transform: scaleX(1);
}

.footer-nav-link-white {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}

.footer-nav-link-white:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.auth-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  display: flex;
  min-height: 500px;
  position: relative;
}

.auth-card-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
  min-height: 500px;
}

.auth-welcome {
  background-image: url("../uploads/login-bg-right.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  flex: 0 0 40%;
  min-width: 40%;
  position: relative;
  z-index: 0;
}

.auth-form-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem;
  display: flex;
  /*flex-direction: column;*/
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.6s ease-in-out;
  transform: translateX(100%);
  z-index: 1;
}

.auth-form-wrapper.active {
  z-index: 2;
}

.auth-form-wrapper > div {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  padding-bottom: 1rem;
}

.auth-form-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.auth-form-wrapper.login {
  transform: translateX(-100%);
}

.auth-form-wrapper.login.active {
  transform: translateX(0);
}

.auth-card.register-mode .auth-card-content {
  /* No transform needed, forms handle their own positioning */
}

.auth-card.register-mode .auth-form-wrapper.login {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}

.auth-card.register-mode .auth-form-wrapper.register {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.auth-card:not(.register-mode) .auth-form-wrapper.login {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.auth-card:not(.register-mode) .auth-form-wrapper.register {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
}

.auth-form-wrapper form {
  width: 100%;
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control-coupon {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.btn-auth {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-auth:focus {
  transform: translateY(-1px);
  background: var(--dark-pink) !important;
}

.btn-auth:hover {
  transform: translateY(-1px);
  background: var(--dark-pink);
  color: var(--white);
}

.auth-link {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.otp-input-group {
  display: none;
  margin-top: 1rem;
}

.otp-input-group.show {
  display: block;
}

.otp-input {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  font-weight: 600;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

@media (max-width: 768px) {
  .auth-card {
    flex-direction: column;
    min-height: auto;
  }
  .auth-card-content {
    min-height: 500px;
    order: 1;
  }
  .auth-welcome {
    flex: 0 0 auto;
    order: 2;
    padding: 2rem;
  }
  .auth-form-wrapper {
    padding: 2rem;
    justify-content: flex-start;
  }
  .auth-card.register-mode .auth-form-wrapper.login {
    transform: translateY(-100%);
  }
  .auth-card.register-mode .auth-form-wrapper.register {
    transform: translateY(0);
  }
  .auth-card:not(.register-mode) .auth-form-wrapper.login {
    transform: translateY(0);
  }
  .auth-card:not(.register-mode) .auth-form-wrapper.register {
    transform: translateY(100%);
  }
}
.text-blue {
  color: var(--blue) !important;
}

.email-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #667eea;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 10px;
}

.content {
  margin: 20px 0;
}

.footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  color: #666;
  font-size: 12px;
}

.button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin: 25px 0;
  font-weight: bold;
  text-align: center;
}

.button:hover {
  opacity: 0.9;
}

.verification-icon {
  text-align: center;
  font-size: 48px;
  margin: 20px 0;
  color: #667eea;
}

.warning {
  background-color: #d1ecf1;
  border-left: 4px solid #0c5460;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  font-size: 14px;
}

.link-text {
  word-break: break-all;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
}

.verify-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.verify-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.verify-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.verify-icon.success {
  color: #28a745;
}

.verify-icon.error {
  color: #dc3545;
}

.btn-home {
  background-color: var(--blue);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
}

.btn-home:hover {
  color: white;
  text-decoration: none;
  background-color: var(--dark-pink);
}

.item-count {
  font-size: 0.7rem !important;
  padding: 0.25em 0.5em !important;
  right: -6px !important;
  top: -5px !important;
}

/* Add to Cart Animation */
.cart-animation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.cart-flying-item {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  pointer-events: none;
  animation: flyToBasket 1s ease-in-out forwards;
}

@keyframes flyToBasket {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.8) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.3) rotate(360deg);
    opacity: 0;
  }
}
.cart-toast-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 20px 40px;
  border-radius: 12px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: toastSlideIn 0.3s ease-out, toastSlideOut 0.3s ease-in 1.7s forwards;
  pointer-events: none;
}

.cart-toast-notification .toast-icon {
  font-size: 24px;
  color: #4CAF50;
}

.cart-toast-notification .toast-message {
  font-size: 16px;
  font-weight: 500;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
}
@media (max-width: 768px) {
  .cart-toast-notification {
    padding: 15px 30px;
    font-size: 14px;
  }
  .cart-toast-notification .toast-icon {
    font-size: 20px;
  }
}
.view-basket-btn {
  text-decoration: none !important;
  color: #fff !important;
  background-color: var(--dark-pink) !important;
  border-color: var(--dark-pink) !important;
}

.view-basket-btn:hover {
  text-decoration: none !important;
  color: #fff !important;
}

.view-basket-btn:focus {
  text-decoration: none !important;
  color: #000 !important;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.stat-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #004AAD;
  margin-bottom: 0.5rem;
}

.stat-value .stat-rating {
  font-size: 1rem;
  margin-left: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating-distribution-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rating-bar-item {
  display: flex;
  align-items: center;
}

.rating-label {
  min-width: 60px;
  font-weight: 600;
  color: #333;
}

.rating-bar-wrapper {
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar {
  height: 100%;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.rating-count {
  min-width: 40px;
  text-align: right;
  font-weight: 600;
  color: #333;
}

.review-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #004AAD;
}

.reviewer-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.review-product {
  font-size: 0.9rem;
  color: #666;
}

.review-product .product-link {
  color: #004AAD;
  text-decoration: none;
}

.review-product .product-link:hover {
  text-decoration: underline;
}

.review-rating {
  font-size: 1rem;
}

.review-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.review-comment {
  color: #555;
  line-height: 1.6;
}

.review-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.no-reviews-message {
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination-wrapper .pagination {
  margin: 0;
}

.pagination-wrapper .page-link {
  color: #004AAD;
  border-color: #004AAD;
}

.pagination-wrapper .page-item.active .page-link {
  background-color: #004AAD;
  border-color: #004AAD;
  color: #fff;
}

.pagination-wrapper .page-link:hover {
  color: #003a8c;
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 2rem;
  }
  .review-card {
    padding: 1rem;
  }
  .reviewer-name {
    font-size: 1rem;
  }
}
.continue-shopping-btn {
  background-color: var(--blue) !important;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.25rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.continue-shopping-btn:hover {
  background-color: var(--dark-pink) !important;
  color: white !important;
  border: none;
  letter-spacing: 0.5px;
}

/* My Range Sidebar - Products filter */
.my-range-sidebar {
  padding: 0;
}

.my-range-title {
  font-family: "Perandory Semi-Condensed", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
  text-transform: uppercase;
}

.my-range-accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
}

.my-range-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.my-range-item:last-child {
  border-bottom: none;
}

.my-range-btn {
  background-color: var(--cream) !important;
  color: var(--blue) !important;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  font-family: "alatsiregular", sans-serif;
  border: none;
  box-shadow: none !important;
}

.my-range-btn:not(.collapsed) {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

.my-range-btn .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.my-range-btn:not(.collapsed) .fa-chevron-down {
  color: var(--white);
  transform: rotate(180deg);
}

.my-range-btn::after {
  display: none;
}

.my-range-sub-items {
  background-color: var(--white);
  padding: 0;
  border: none;
}

.my-range-sub-item {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid #D9D9D9;
  transition: color 0.2s ease;
}

.my-range-sub-item:hover {
  color: var(--dark-pink);
}

.my-range-sub-item-active {
  color: var(--dark-pink) !important;
}

.date-wrapper {
  position: relative;
  max-width: 100%;
}

.date-wrapper .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

input[type=date] {
  appearance: none;
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

.gray-order-bg {
  background-color: #f8f9fa !important;
}

.light-gray-star {
  color: #cecece !important;
}

.bg-f1f1 {
  background-color: #f1f1f1 !important;
}

.contact-form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.75rem;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: #004AAD;
  box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

.contact-form .btn-primary {
  background-color: #004AAD;
  border-color: #004AAD;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
}

.contact-form .btn-primary:hover {
  background-color: #003a8c;
  border-color: #003a8c;
}

.contact-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.contact-info-box {
  background-color: #f4f6ff;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-info-box p {
  margin-bottom: 0.75rem;
}

.contact-info-box strong {
  display: block;
  font-size: 1rem;
  color: #004AAD;
  margin-bottom: 0.25rem;
}

.contact-info-box small {
  font-size: 0.85rem;
  color: #666;
}

/* Contact Thank You Popup */
.contact-thankyou-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.contact-thankyou-popup.visible {
  display: flex;
}

.contact-thankyou-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-thankyou-content {
  position: relative;
  background: #0050b8; /* Rich blue, close to reference */
  background-image: url(../uploads/contact-popup-bg.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.contact-thankyou-inner {
  position: relative;
  z-index: 1;
  min-height: 300px;
  align-self: center;
  display: flex; /* enable flexbox */
  flex-direction: column; /* stack content vertically */
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center (optional) */
}

.contact-thankyou-heading {
  font-family: "amoresaregular";
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  color: var(--dark-pink); /* Pink from reference */
}

.contact-thankyou-subtitle {
  font-size: 1.1rem;
  margin: 0;
  color: #ffffff;
}

.contact-thankyou-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 576px) {
  .contact-thankyou-content {
    padding: 2.25rem 1.75rem;
  }
  .contact-thankyou-heading {
    font-size: 2.2rem;
  }
  .contact-thankyou-subtitle {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */