*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #4b5563;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

svg {
  max-width: 100%;
  max-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 56px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section__header h2 {
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 10px;
}
.section__header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: #EC268F;
  border-radius: 999px;
}
.section__header a.section__view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: #EC268F;
}
.section__header a.section__view-all:hover {
  color: #e2506b;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1f2937;
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

::selection {
  background: #ffe3e9;
  color: #e2506b;
}

/* Scroll reveal (AOS-lite, used if AOS script not loaded) */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.btn, .woocommerce-form-login button[type=submit],
.woocommerce-form-register button[type=submit], .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content a.button, .checkout-order-review-wrap #place_order, .shipping-calculator-form button[name=calc_shipping], .woocommerce-Reviews .form-submit input[type=submit], .product-actions-row--variable .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn svg, .woocommerce-form-login button[type=submit] svg,
.woocommerce-form-register button[type=submit] svg, .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button svg, .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button svg, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button svg,
.woocommerce-account .woocommerce-MyAccount-content a.button svg, .checkout-order-review-wrap #place_order svg, .shipping-calculator-form button[name=calc_shipping] svg, .woocommerce-Reviews .form-submit input[type=submit] svg, .product-actions-row--variable .single_add_to_cart_button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary, .woocommerce-form-login button[type=submit],
.woocommerce-form-register button[type=submit], .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button, .checkout-order-review-wrap #place_order, .woocommerce-Reviews .form-submit input[type=submit], .product-actions-row--variable .single_add_to_cart_button {
  background: #EC268F;
  color: #fff;
}
.btn--primary:hover, .woocommerce-form-login button[type=submit]:hover,
.woocommerce-form-register button[type=submit]:hover, .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button:hover, .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button:hover, .checkout-order-review-wrap #place_order:hover, .woocommerce-Reviews .form-submit input[type=submit]:hover, .product-actions-row--variable .single_add_to_cart_button:hover {
  background: #e2506b;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.08);
}

.btn--outline {
  background: #fff;
  border-color: #1f2937;
  color: #1f2937;
}
.btn--outline:hover {
  background: #1f2937;
  color: #fff;
}

.btn--outline-primary, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content a.button, .shipping-calculator-form button[name=calc_shipping] {
  background: #fff;
  border-color: #EC268F;
  color: #EC268F;
}
.btn--outline-primary:hover, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button:hover,
.woocommerce-account .woocommerce-MyAccount-content a.button:hover, .shipping-calculator-form button[name=calc_shipping]:hover {
  background: #EC268F;
  color: #fff;
}

.btn--whatsapp {
  background: #fff;
  border-color: #25d366;
  color: #1c9b4e;
}
.btn--whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.btn--block, .checkout-order-review-wrap #place_order, .shipping-calculator-form button[name=calc_shipping] {
  width: 100%;
}

.btn--sm, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content a.button, .shipping-calculator-form button[name=calc_shipping] {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #1f2937;
  position: relative;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.icon-btn:hover {
  background: #ffe3e9;
  color: #EC268F;
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EC268F;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag--new {
  background: #EC268F;
  color: #fff;
}

.tag--sale {
  background: #EC268F;
  color: #fff;
}

.announcement-bar {
  background: #fdeef1;
  color: #4b5563;
  font-size: 0.8rem;
  padding: 8px 0;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.announcement-bar__left, .announcement-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.announcement-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announcement-bar a:hover {
  color: #EC268F;
}
.announcement-bar svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .announcement-bar__right {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid #eee0e2;
}
.site-header.is-stuck {
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-logo .custom-logo {
  max-height: 52px;
  width: auto;
}
@media (max-width: 480px) {
  .site-logo .custom-logo {
    max-height: 40px;
  }
}

.site-logo-text {
  font-family: "Pacifico", cursive;
  font-size: 1.9rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.site-logo-text .logo-pearl {
  color: #EC268F;
}
.site-logo-text .logo-baby {
  color: #6fa8dc;
}
.site-logo-text .logo-sub {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #8b93a1;
  font-weight: 600;
  margin-top: -4px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
}
.main-nav .main-nav__list,
.main-nav ul.menu,
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.is-active {
  color: #EC268F;
}
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #EC268F;
  border-radius: 999px;
}
.main-nav .has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav .menu-item-has-children {
  position: relative;
}
.main-nav .menu-item-has-children .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .menu-item-has-children .sub-menu li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 500;
}
.main-nav .menu-item-has-children .sub-menu li a:hover {
  background: #ffe3e9;
  color: #EC268F;
}
.main-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }
}

.header-search-toggle,
.header-actions .icon-btn {
  position: relative;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.5);
  z-index: 900;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.search-overlay.is-open {
  display: flex;
}
.search-overlay__box {
  background: #fff;
  width: 100%;
  max-width: 640px;
  margin: 0 20px;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
}
.search-overlay__field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #eee0e2;
  border-radius: 999px;
  padding: 10px 18px;
}
.search-overlay__field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
}
.search-overlay__results {
  margin-top: 16px;
  max-height: 340px;
  overflow-y: auto;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  -webkit-overflow-scrolling: touch;
}
.offcanvas-menu.is-open {
  transform: translateX(0);
}
.offcanvas-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border-bottom: 1px solid #eee0e2;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.offcanvas-menu__header .site-logo {
  flex: 1;
  min-width: 0;
}
.offcanvas-menu__header .site-logo a {
  display: inline-flex;
}
.offcanvas-menu__header .site-logo img {
  max-height: 42px !important;
  width: auto;
  object-fit: contain;
}
.offcanvas-menu__header .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fdeef1;
  color: #EC268F;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 10px;
}
.offcanvas-menu__header .icon-btn svg {
  width: 20px;
  height: 20px;
}
.offcanvas-menu__header .icon-btn:active {
  background: #ffe3e9;
  transform: scale(0.94);
}
.offcanvas-menu__nav {
  padding: 12px 0 100px;
}
.offcanvas-menu__nav > ul, .offcanvas-menu__nav > .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-menu__nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-menu__nav .mobile-nav-item {
  list-style: none;
  margin: 0;
  padding: 0 12px;
}
.offcanvas-menu__nav .mobile-nav-item + .mobile-nav-item {
  margin-top: 2px;
}
.offcanvas-menu__nav .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-menu__nav .mobile-nav-link:hover, .offcanvas-menu__nav .mobile-nav-link:active {
  background: #fdeef1;
  color: #EC268F;
}
.offcanvas-menu__nav .mobile-nav-link:active {
  transform: scale(0.98);
}
.offcanvas-menu__nav .mobile-nav-link.is-active {
  background: linear-gradient(135deg, #ffe3e9 0%, #eaf3fb 100%);
  color: #e2506b;
}
.offcanvas-menu__nav .mobile-nav-link.is-active .mobile-nav-icon {
  background: #EC268F;
  color: #fff;
  box-shadow: 0 4px 12px rgba(236, 38, 143, 0.3);
}
.offcanvas-menu__nav .mobile-nav-link.is-active .mobile-nav-arrow {
  color: #EC268F;
}
.offcanvas-menu__nav .mobile-nav-link .mobile-nav-icon {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  border-radius: 8px;
  background: #ffe3e9;
  color: #EC268F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-menu__nav .mobile-nav-link .mobile-nav-icon svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-shrink: 0 !important;
}
.offcanvas-menu__nav .mobile-nav-link .mobile-nav-label {
  flex: 1;
  min-width: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.01em;
}
.offcanvas-menu__nav .mobile-nav-link .mobile-nav-arrow {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  color: #8b93a1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-menu__nav .mobile-nav-link .mobile-nav-arrow svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex-shrink: 0 !important;
}
.offcanvas-menu__nav .mobile-nav-link:hover .mobile-nav-arrow {
  color: #EC268F;
  transform: translateX(3px);
}
.offcanvas-menu__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid #eee0e2;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-menu__nav a:hover, .offcanvas-menu__nav a:active {
  background: #fdeef1;
  color: #EC268F;
  padding-left: 30px;
}
.offcanvas-menu__nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff8f6;
}
.offcanvas-menu__nav .sub-menu a {
  padding-left: 48px;
  font-weight: 500;
  font-size: 0.88rem;
  color: #4b5563;
}
.offcanvas-menu__nav .sub-menu a:hover {
  padding-left: 54px;
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
  background: #fff8f6;
}
.hero-slide.is-active {
  display: block;
}
.hero-slide .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 56px;
  min-height: 460px;
}
@media (max-width: 768px) {
  .hero-slide .container {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.3em;
}
.hero-content h1 .highlight {
  color: #EC268F;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
}
.hero-content p {
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 1.6em;
}
@media (max-width: 768px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content .hero-cta {
  display: flex;
  gap: 14px;
}
@media (max-width: 768px) {
  .hero-content .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3.1;
}
.hero-media .hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.08);
}
.hero-media .hero-badge svg {
  width: 22px;
  height: 22px;
  color: #EC268F;
  margin-bottom: 4px;
}
.hero-media .hero-badge strong {
  display: block;
  font-size: 1.1rem;
  color: #1f2937;
}
.hero-media .hero-badge span {
  font-size: 0.75rem;
  color: #8b93a1;
}
.hero-media .hero-deco {
  position: absolute;
  color: #EC268F;
  opacity: 0.6;
}
.hero-media .hero-deco--1 {
  top: 10%;
  left: -6%;
  width: 24px;
}
.hero-media .hero-deco--2 {
  bottom: 30%;
  left: 42%;
  width: 16px;
  color: #6fa8dc;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 18px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #eee0e2;
  padding: 0;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), width 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-dots button.is-active {
  background: #EC268F;
  width: 22px;
  border-radius: 999px;
}

.category-strip {
  background: #fff;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
  border-radius: 20px;
  margin-top: -30px;
  position: relative;
  z-index: 20;
  padding: 28px 24px;
}
.category-strip .container {
  padding: 0;
}
.category-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .category-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .category-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}

.category-item {
  text-align: center;
}
.category-item__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe3e9;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.category-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.category-item:hover .category-item__icon {
  transform: translateY(-4px) scale(1.04);
}
.category-item__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2937;
}
.category-item__count {
  font-size: 0.75rem;
  color: #8b93a1;
}

.promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 768px) {
  .promo-row {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  border-radius: 20px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  position: relative;
}
.promo-card--pink {
  background: #fdeef1;
}
.promo-card--blue {
  background: #eaf3fb;
}
.promo-card--yellow {
  background: #fdf1de;
}
.promo-card__text .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: #8b93a1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.promo-card__text h3 {
  font-size: 1.3rem;
  margin: 4px 0 14px;
  line-height: 1.2;
}
.promo-card__img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.product-card {
  position: relative;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff8f6;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
.product-card__media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease-in-out !important;
}
.product-card__media img.is-active {
  opacity: 1 !important;
  z-index: 1 !important;
}
.product-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.product-card__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__wishlist svg {
  width: 17px;
  height: 17px;
}
.product-card__wishlist:hover, .product-card__wishlist.is-active {
  color: #EC268F;
  transform: scale(1.08);
}
.product-card__wishlist.is-active svg {
  fill: currentColor;
}
.product-card__quickview {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 10px);
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.08);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translate(-50%, 0);
}
.product-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
  margin-bottom: 4px;
  display: block;
}
.product-card__category {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #EC268F;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: block;
}
.product-card__name:hover {
  color: #EC268F;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #8b93a1;
  margin-bottom: 6px;
}
.product-card__rating .stars {
  color: #f5b942;
  letter-spacing: 1px;
}
.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 7px;
  row-gap: 2px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.product-card__price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 0;
  line-height: 1;
}
.product-card__price.product-card__price--simple.is-on-sale {
  flex-wrap: wrap;
}
.product-card__price .price {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
}
.product-card__price .price--old,
.product-card__price del,
.product-card__price del .woocommerce-Price-amount {
  color: #8b93a1;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: #8b93a1;
  line-height: 1;
  white-space: nowrap;
}
.product-card__price .price--old {
  display: inline-block;
  text-decoration: line-through;
}
.product-card__price .price--new,
.product-card__price ins,
.product-card__price .price--new .woocommerce-Price-amount,
.product-card__price ins .woocommerce-Price-amount {
  color: #00AFEF;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none !important;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}
.product-card__price .price--new {
  text-decoration: none !important;
}
.product-card__price .price--new .woocommerce-Price-amount { text-decoration: none !important; }
.product-card__price del {
  order: 1;
}
.product-card__price ins {
  order: 2;
}

.product-card__discount-badge {
  background: rgba(236, 38, 143, 0.08);
  color: #EC268F;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  display: inline-block;
  line-height: 1.15;
  white-space: nowrap;
  align-self: center;
}

.product-card__price {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0;
}

.trust-strip {
  border-top: 1px solid #eee0e2;
  padding: 32px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item svg {
  width: 34px;
  height: 34px;
  color: #EC268F;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.92rem;
  color: #1f2937;
}
.trust-item span {
  font-size: 0.78rem;
  color: #8b93a1;
}

.newsletter-band {
  background: #fdeef1;
  border-radius: 20px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.newsletter-band__text h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}
.newsletter-band__text p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}
.newsletter-band form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 420px;
  min-width: 260px;
}
.newsletter-band form input {
  flex: 1;
  border: 1px solid #eee0e2;
  border-radius: 999px;
  padding: 12px 18px;
  outline: none;
}
.newsletter-band form input:focus {
  border-color: #EC268F;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  z-index: 400;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}
.floating-whatsapp:hover {
  transform: scale(1.06);
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EC268F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 22px rgba(236, 38, 143, 0.38);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgb(93.650908216%, 32.4275231565%, 43.7651870564%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(236, 38, 143, 0.46);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 600;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-notice.is-visible {
  transform: translateY(0);
}
.cookie-notice p {
  margin: 0;
  font-size: 0.85rem;
}
.cookie-notice a {
  text-decoration: underline;
}

.shop-banner {
  background: #fff8f6;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 28px;
  min-height: 170px;
  display: flex;
  align-items: center;
}
.shop-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}
.shop-banner__content {
  padding: 28px 44px;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}
.shop-banner h1 {
  font-size: 2.4rem;
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 2px 18px rgba(0, 0, 0, 0.36);
}
.shop-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
@media (max-width: 768px) {
  .shop-banner {
    min-height: 120px;
  }
  .shop-banner__content {
    padding: 18px 22px;
  }
  .shop-banner h1 {
    font-size: 1.65rem;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.32), 0 2px 12px rgba(0, 0, 0, 0.38);
  }
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #8b93a1;
  margin-bottom: 6px;
}
.breadcrumbs a:hover {
  color: #EC268F;
}
.breadcrumbs .sep {
  margin: 0 6px;
}
.breadcrumbs span[aria-current] {
  color: #1f2937;
  font-weight: 600;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.shop-sidebar {
  background: #fff;
}
@media (max-width: 1024px) {
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 86vw;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .shop-sidebar.is-open {
    transform: translateX(0);
  }
}

.filter-block {
  border-bottom: 1px solid #eee0e2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.filter-block:last-child {
  border-bottom: none;
}
.filter-block h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  cursor: pointer;
  font-size: 0.92rem;
}
.filter-list li:hover {
  color: #EC268F;
}
.filter-list li.is-active {
  color: #EC268F;
  font-weight: 700;
}
.filter-list li span.count {
  color: #8b93a1;
  font-size: 0.82rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.9rem;
}
.filter-checkbox input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #EC268F;
  border-radius: 4px;
}
.filter-checkbox .count {
  margin-left: auto;
  color: #8b93a1;
  font-size: 0.8rem;
}

.price-range {
  padding: 6px 2px 0;
}
.price-range__track {
  position: relative;
  height: 4px;
  background: #eee0e2;
  border-radius: 999px;
  margin: 16px 4px 10px;
}
.price-range__fill {
  position: absolute;
  height: 4px;
  background: #EC268F;
  border-radius: 999px;
}
.price-range input[type=range] {
  position: absolute;
  width: 100%;
  top: -8px;
  left: 0;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
}
.price-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #EC268F;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
}
.price-range input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #EC268F;
  cursor: pointer;
}
.price-range__values {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 600;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.color-swatches button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #eee0e2;
  cursor: pointer;
  position: relative;
}
.color-swatches button.is-active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #EC268F;
  border-radius: 50%;
}

.reset-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #8b93a1;
}
.reset-filters svg {
  width: 15px;
  height: 15px;
}
.reset-filters:hover {
  color: #EC268F;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.shop-toolbar__count {
  font-size: 0.9rem;
  color: #4b5563;
}
.shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.view-toggle {
  display: flex;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  overflow: hidden;
}
.view-toggle button {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b93a1;
}
.view-toggle button.is-active {
  background: #ffe3e9;
  color: #EC268F;
}
.view-toggle button svg {
  width: 18px;
  height: 18px;
}

.sort-select,
.shop-toolbar select.orderby {
  border: 1px solid #eee0e2;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  background: #fff;
  color: #1f2937;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%238b93a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.sort-select:focus,
.shop-toolbar select.orderby:focus {
  border-color: #EC268F;
}

.shop-toolbar form.woocommerce-ordering {
  margin: 0;
}

.mobile-toolbar {
  display: none;
  gap: 12px;
  margin-bottom: 16px;
}
.mobile-toolbar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.mobile-toolbar button svg {
  width: 17px;
  height: 17px;
}
@media (max-width: 1024px) {
  .mobile-toolbar {
    display: flex;
  }
}

.mobile-category-chips {
  display: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.mobile-category-chips::-webkit-scrollbar {
  display: none;
}
.mobile-category-chips a {
  flex-shrink: 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}
.mobile-category-chips a span.chip-icon {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffe3e9;
  margin-bottom: 6px;
}
.mobile-category-chips a.is-active span.chip-icon {
  background: #EC268F;
}
.mobile-category-chips a.is-active {
  color: #EC268F;
}
@media (max-width: 1024px) {
  .mobile-category-chips {
    display: flex;
  }
}

ul.products,
.products {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.products.product-grid,
.products.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1280px) {
  ul.products.product-grid,
  .products.product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  ul.products.product-grid,
  .products.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
ul.products li.product,
.products li.product {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100% !important;
  float: none !important;
  clear: none !important;
}
ul.products li.product .product-card,
.products li.product .product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card a.button,
.product-card .add_to_cart_button,
.product-card .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #00AFEF;
  border: none;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  margin-top: auto;
  height: 36px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 175, 239, 0.22);
}
.product-card a.button:hover,
.product-card .add_to_cart_button:hover,
.product-card .single_add_to_cart_button:hover {
  background: #EC268F;
  color: #fff;
  border-color: #EC268F;
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(236, 38, 143, 0.28);
}

.product-card a.added_to_cart.wc-forward,
.product-card .added_to_cart.wc-forward {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

a.added_to_cart.wc-forward,
.added_to_cart.wc-forward,
li.product .added_to_cart {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.price {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price del {
  color: #8b93a1;
  text-decoration: line-through;
  font-weight: 500;
  font-size: 0.85rem;
  order: 1;
}
.price del .woocommerce-Price-amount {
  color: #8b93a1;
}
.price ins {
  color: #EC268F;
  text-decoration: none;
  font-weight: 700;
  order: 2;
}
.price ins .woocommerce-Price-amount {
  color: #EC268F;
}

/* Grid / List product views — LIST DISABLED (GRID ONLY) */
.view-toggle { display: none !important; }

.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.shop-pagination a, .shop-pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #eee0e2;
  font-size: 0.88rem;
  font-weight: 600;
}
.shop-pagination .current {
  background: #EC268F;
  color: #fff;
  border-color: #EC268F;
}
.shop-pagination a:hover {
  border-color: #EC268F;
  color: #EC268F;
}
.shop-pagination svg {
  width: 16px;
  height: 16px;
}

.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}
.load-more-wrap .btn, .load-more-wrap .woocommerce-form-login button[type=submit], .woocommerce-form-login .load-more-wrap button[type=submit],
.load-more-wrap .woocommerce-form-register button[type=submit],
.woocommerce-form-register .load-more-wrap button[type=submit], .load-more-wrap .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .load-more-wrap button.woocommerce-Button, .load-more-wrap .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .load-more-wrap input.woocommerce-Button, .load-more-wrap .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .load-more-wrap .button,
.load-more-wrap .woocommerce-account .woocommerce-MyAccount-content a.button,
.woocommerce-account .woocommerce-MyAccount-content .load-more-wrap a.button, .load-more-wrap .checkout-order-review-wrap #place_order, .checkout-order-review-wrap .load-more-wrap #place_order, .load-more-wrap .shipping-calculator-form button[name=calc_shipping], .shipping-calculator-form .load-more-wrap button[name=calc_shipping], .load-more-wrap .woocommerce-Reviews .form-submit input[type=submit], .woocommerce-Reviews .form-submit .load-more-wrap input[type=submit], .load-more-wrap .product-actions-row--variable .single_add_to_cart_button, .product-actions-row--variable .load-more-wrap .single_add_to_cart_button {
  min-width: 220px;
}
.load-more-wrap .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sc-spin 0.7s linear infinite;
}
.load-more-wrap.is-loading .spinner {
  display: inline-block;
}
.load-more-wrap.is-loading .label {
  opacity: 0.7;
}

@keyframes sc-spin {
  to {
    transform: rotate(360deg);
  }
}
.shop-loading-overlay {
  position: relative;
  min-height: 200px;
}
.shop-loading-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: none;
}
.shop-loading-overlay.is-loading::after {
  display: block;
}

/* Stable PARENT product grid breakpoint columns — prevents 1-col flash during inner UL .product-grid AJAX swap on sort / filter change */
#shop-products-wrapper .product-grid,
#shop-products-wrapper ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1280px) {
  #shop-products-wrapper .product-grid,
  #shop-products-wrapper ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #shop-products-wrapper .product-grid,
  #shop-products-wrapper ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.product-gallery {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
}
.product-gallery--single {
  grid-template-columns: 1fr;
}
@media (max-width: 480px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    order: 2;
  }
}
.product-gallery__thumbs button {
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  background: #fff8f6;
  position: relative;
}
.product-gallery__thumbs button.is-active {
  border-color: #EC268F;
}
.product-gallery__thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs button .tag {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.55rem;
  padding: 2px 8px;
}

.product-gallery__main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff8f6;
  aspect-ratio: 1/1;
}
@media (max-width: 480px) {
  .product-gallery__main {
    order: 1;
  }
}
.product-gallery__main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.product-gallery__main .product-gallery__zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
  z-index: 5;
}
.product-gallery__main .product-gallery__zoom-btn svg {
  width: 18px;
  height: 18px;
}

.pswp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 24, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.pswp-lightbox.is-open {
  display: flex;
}
.pswp-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.pswp-lightbox .pswp-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pswp-lightbox .pswp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pswp-lightbox .pswp-nav--prev {
  left: 20px;
}
.pswp-lightbox .pswp-nav--next {
  right: 20px;
}
.pswp-lightbox .pswp-nav svg {
  width: 20px;
  height: 20px;
}

.product-summary__title {
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.product-summary__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #8b93a1;
}
.product-summary__rating .stars {
  color: #f5b942;
}
.product-summary__rating a {
  color: #8b93a1;
  text-decoration: underline;
}
.product-summary__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 14px;
}
.product-summary__price--variable {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #EC268F;
}
.product-summary__price--variable p.price {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  line-height: 1;
}
.product-summary__price--variable del {
  color: #8b93a1;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: line-through;
}
.product-summary__price--variable ins {
  background: none;
  text-decoration: none;
  color: #EC268F;
  font-size: 1.8rem;
  font-weight: 700;
}
.product-summary__price--simple {
  font-size: 1.8rem;
  font-weight: 700;
  color: #EC268F;
}
.product-summary__price .price--old,
.product-summary__price .price--old .woocommerce-Price-amount {
  color: #8b93a1;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: line-through;
  white-space: nowrap;
}
.product-summary__price .price--new,
.product-summary__price .price--new .woocommerce-Price-amount {
  color: #EC268F;
  font-size: 1.85rem;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
}
.product-summary__discount-badge {
  background: rgba(236, 38, 143, 0.08);
  color: #EC268F;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  align-self: baseline;
  white-space: nowrap;
}
.product-summary__description {
  color: #4b5563;
  margin-bottom: 20px;
  max-width: 520px;
}

.option-group {
  margin-bottom: 20px;
}
.option-group__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.option-group__label a.size-guide-link {
  font-weight: 500;
  font-size: 0.82rem;
  color: #EC268F;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
}

.color-options {
  display: flex;
  gap: 10px;
}
.color-options button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #eee0e2;
  position: relative;
  cursor: pointer;
}
.color-options button.is-selected::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #EC268F;
  border-radius: 50%;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.size-options button {
  min-width: 54px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.5px solid #eee0e2;
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.size-options button:hover {
  border-color: #EC268F;
}
.size-options button.is-selected {
  border-color: #EC268F;
  background: #EC268F;
  color: #fff;
}
.size-options button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #eee0e2;
  border-radius: 8px;
  overflow: hidden;
}
.quantity-selector button {
  width: 42px;
  height: 42px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
}
.quantity-selector button:hover {
  background: #ffe3e9;
  color: #EC268F;
}
.quantity-selector button svg {
  width: 15px;
  height: 15px;
}
.quantity-selector input {
  width: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid #eee0e2;
  border-right: 1px solid #eee0e2;
  height: 42px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.quantity-selector input::-webkit-inner-spin-button, .quantity-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product-actions-row .quantity-selector {
  flex-shrink: 0;
}
.product-actions-row .single_add_to_cart_button {
  flex: 1;
  min-width: 180px;
}
.product-actions-row .product-wishlist-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid #EC268F;
  color: #EC268F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}
.product-actions-row .product-wishlist-btn.is-active, .product-actions-row .product-wishlist-btn:hover {
  background: #EC268F;
  color: #fff;
}
.product-actions-row .product-wishlist-btn svg {
  width: 18px;
  height: 18px;
}

.product-actions-row--variable {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.product-actions-row--variable form.variations_form {
  flex: 1;
  min-width: 220px;
}
.product-actions-row--variable table.variations {
  width: 100%;
  border: none;
  margin-bottom: 16px;
}
.product-actions-row--variable table.variations tr {
  display: block;
  margin-bottom: 16px;
}
.product-actions-row--variable table.variations th.label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  text-align: left;
}
.product-actions-row--variable table.variations td.value {
  display: block;
}
.product-actions-row--variable table.variations td.value select {
  width: 100%;
  max-width: 260px;
  border: 1.5px solid #eee0e2;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  background: #fff;
  outline: none;
}
.product-actions-row--variable table.variations td.value select:focus {
  border-color: #EC268F;
}
.product-actions-row--variable table.variations td.value a.reset_variations {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.82rem;
  color: #8b93a1;
  text-decoration: underline;
}
.product-actions-row--variable .woocommerce-variation {
  margin-bottom: 16px;
}
.product-actions-row--variable .woocommerce-variation .woocommerce-variation-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #EC268F;
  margin-bottom: 6px;
}
.product-actions-row--variable .woocommerce-variation .woocommerce-variation-availability {
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.product-actions-row--variable .woocommerce-variation .woocommerce-variation-availability .in-stock {
  color: #4caf82;
  font-weight: 600;
}
.product-actions-row--variable .woocommerce-variation .woocommerce-variation-availability .out-of-stock {
  color: #e25555;
  font-weight: 600;
}
.product-actions-row--variable .quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #eee0e2;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
}
.product-actions-row--variable .quantity .qty {
  width: 60px;
  text-align: center;
  border: none;
  height: 42px;
  font-weight: 700;
}
.product-actions-row--variable .product-wishlist-btn {
  align-self: flex-start;
  margin-top: 4px;
}

.whatsapp-buy-btn {
  width: 100%;
  margin-bottom: 16px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}
.utility-links button, .utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
}
.utility-links svg {
  width: 16px;
  height: 16px;
}
.utility-links:hover, .utility-links button:hover, .utility-links a:hover {
  color: #EC268F;
}

.trust-list {
  border-top: 1px solid #eee0e2;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #4b5563;
}
.trust-list svg {
  width: 18px;
  height: 18px;
  color: #EC268F;
  flex-shrink: 0;
}

.product-meta-grid {
  margin-top: 24px;
  border: 1px solid #eee0e2;
  border-radius: 14px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .product-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-meta-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product-meta-grid__item svg {
  width: 22px;
  height: 22px;
  color: #EC268F;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-meta-grid__item strong {
  display: block;
  font-size: 0.82rem;
  color: #8b93a1;
  font-weight: 600;
}
.product-meta-grid__item span {
  font-size: 0.9rem;
  color: #1f2937;
  font-weight: 600;
}

.product-accordion {
  border: 1px solid #eee0e2;
  border-radius: 14px;
  margin-top: 36px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee0e2;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: #1f2937;
}
.accordion-item__header.is-open {
  color: #EC268F;
}
.accordion-item__header .accordion-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.accordion-item__header .accordion-icon svg:first-child {
  width: 18px;
  height: 18px;
}
.accordion-item__header .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item__header.is-open .chevron {
  transform: rotate(180deg);
}
.accordion-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 22px;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.7;
}
.accordion-item__panel.is-open {
  padding-bottom: 20px;
}

.accordion-item__panel table.woocommerce-product-attributes,
.accordion-item__panel table.shop_attributes {
  width: 100%;
  border-collapse: collapse;
}
.accordion-item__panel table.woocommerce-product-attributes tr,
.accordion-item__panel table.shop_attributes tr {
  border-bottom: 1px solid #eee0e2;
}
.accordion-item__panel table.woocommerce-product-attributes th, .accordion-item__panel table.woocommerce-product-attributes td,
.accordion-item__panel table.shop_attributes th,
.accordion-item__panel table.shop_attributes td {
  text-align: left;
  padding: 8px 0;
  font-size: 0.9rem;
}
.accordion-item__panel table.woocommerce-product-attributes th,
.accordion-item__panel table.shop_attributes th {
  width: 160px;
  font-weight: 600;
  color: #1f2937;
}

.related-products,
.upsell-products,
.recently-viewed {
  margin-top: 56px;
}
.related-products h2,
.upsell-products h2,
.recently-viewed h2 {
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.related-products h2::after,
.upsell-products h2::after,
.recently-viewed h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: #EC268F;
  border-radius: 999px;
}

.sticky-atc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee0e2;
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 450;
  box-shadow: 0 -6px 20px rgba(31, 41, 55, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-atc-bar.is-visible {
  transform: translateY(0);
}
.sticky-atc-bar__price {
  font-weight: 700;
  color: #EC268F;
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}
.sticky-atc-bar__price--variable {
  display: inline-block;
}
.sticky-atc-bar__price--variable p.price {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: nowrap;
  line-height: 1;
}
.sticky-atc-bar__price--variable del {
  color: #8b93a1;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: line-through;
}
.sticky-atc-bar__price--variable ins {
  background: none;
  text-decoration: none;
  color: #EC268F;
  font-weight: 700;
}
.sticky-atc-bar__price .price--old,
.sticky-atc-bar__price .price--old .woocommerce-Price-amount {
  color: #8b93a1;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: line-through;
  white-space: nowrap;
}
.sticky-atc-bar__price .price--new,
.sticky-atc-bar__price .price--new .woocommerce-Price-amount {
  color: #EC268F;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
}
.sticky-atc-bar__discount-badge {
  background: rgba(236, 38, 143, 0.08);
  color: #EC268F;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  align-self: baseline;
  white-space: nowrap;
}
.sticky-atc-bar .btn, .sticky-atc-bar .woocommerce-form-login button[type=submit], .woocommerce-form-login .sticky-atc-bar button[type=submit],
.sticky-atc-bar .woocommerce-form-register button[type=submit],
.woocommerce-form-register .sticky-atc-bar button[type=submit], .sticky-atc-bar .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .sticky-atc-bar button.woocommerce-Button, .sticky-atc-bar .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .sticky-atc-bar input.woocommerce-Button, .sticky-atc-bar .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .sticky-atc-bar .button,
.sticky-atc-bar .woocommerce-account .woocommerce-MyAccount-content a.button,
.woocommerce-account .woocommerce-MyAccount-content .sticky-atc-bar a.button, .sticky-atc-bar .checkout-order-review-wrap #place_order, .checkout-order-review-wrap .sticky-atc-bar #place_order, .sticky-atc-bar .shipping-calculator-form button[name=calc_shipping], .shipping-calculator-form .sticky-atc-bar button[name=calc_shipping], .sticky-atc-bar .woocommerce-Reviews .form-submit input[type=submit], .woocommerce-Reviews .form-submit .sticky-atc-bar input[type=submit], .sticky-atc-bar .product-actions-row--variable .single_add_to_cart_button, .product-actions-row--variable .sticky-atc-bar .single_add_to_cart_button {
  flex: 1;
}
@media (max-width: 1024px) {
  .sticky-atc-bar {
    display: flex;
  }
}

.woocommerce-Reviews #comments {
  margin-top: 0;
}
.woocommerce-Reviews .comment-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.woocommerce-Reviews .comment_container {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee0e2;
}
.woocommerce-Reviews .star-rating {
  color: #f5b942;
}
.woocommerce-Reviews .star-rating::before {
  content: none;
}
.woocommerce-Reviews #review_form_wrapper {
  background: #fff8f6;
  border-radius: 14px;
  padding: 24px;
}
.woocommerce-Reviews .comment-form-rating select,
.woocommerce-Reviews #comment {
  width: 100%;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 6px;
}
.cart-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.cart-page-header h1 {
  margin-bottom: 4px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead th {
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8b93a1;
  padding: 12px 10px;
  border-bottom: 1px solid #eee0e2;
  background: #fdeef1;
}
.cart-table tbody tr {
  border-bottom: 1px solid #eee0e2;
}
.cart-table tbody td {
  padding: 16px 10px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }
  .cart-table tbody tr {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-areas: "img product remove" "img price price" "img qty qty";
    gap: 6px 12px;
    padding: 14px 0;
  }
  .cart-table tbody td:nth-child(1) {
    grid-area: img;
    padding: 0;
  }
  .cart-table tbody td:nth-child(2) {
    grid-area: product;
    padding: 0;
  }
  .cart-table tbody td:nth-child(3) {
    grid-area: price;
    padding: 0;
  }
  .cart-table tbody td:nth-child(4) {
    grid-area: qty;
    padding: 0;
  }
  .cart-table tbody td:nth-child(5) {
    display: none;
  }
  .cart-table tbody td:nth-child(6) {
    grid-area: remove;
    padding: 0;
    justify-self: end;
    align-self: start;
  }
}

.cart-item__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff8f6;
}
.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__name {
  font-weight: 700;
  color: #1f2937;
  display: block;
  margin-bottom: 4px;
}
.cart-item__name:hover {
  color: #EC268F;
}

.cart-item__meta {
  font-size: 0.8rem;
  color: #8b93a1;
  display: block;
}

.cart-item__price {
  font-weight: 600;
  color: #1f2937;
}

.cart-item__price del {
  color: #8b93a1;
  font-weight: 400;
  margin-right: 6px;
}

.cart-item__remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #8b93a1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item__remove:hover {
  background: #fdeef1;
  color: #e25555;
}
.cart-item__remove svg {
  width: 16px;
  height: 16px;
}

.cart-item__subtotal {
  font-weight: 700;
  color: #EC268F;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #eee0e2;
  border-radius: 8px;
  overflow: hidden;
}
.cart-qty-stepper button {
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-stepper button:hover {
  background: #ffe3e9;
  color: #EC268F;
}
.cart-qty-stepper button svg {
  width: 13px;
  height: 13px;
}
.cart-qty-stepper input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #eee0e2;
  border-right: 1px solid #eee0e2;
  height: 32px;
  font-weight: 700;
}

.cart-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coupon-box {
  border: 1px solid #eee0e2;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 20px;
}
.coupon-box__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.coupon-box__label svg {
  width: 16px;
  height: 16px;
  color: #EC268F;
}
.coupon-box form {
  display: flex;
  gap: 10px;
}
.coupon-box input[type=text] {
  flex: 1;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
}
.coupon-box input[type=text]:focus {
  border-color: #EC268F;
}
.coupon-box .coupon-message {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}
.coupon-box .coupon-message.is-success {
  color: #4caf82;
}
.coupon-box .coupon-message.is-error {
  color: #e25555;
}
.coupon-box .applied-coupon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf6ee;
  color: #4caf82;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 10px;
}
.coupon-box .applied-coupon button {
  background: none;
  border: none;
  color: inherit;
  display: flex;
}
.coupon-box .applied-coupon svg {
  width: 13px;
  height: 13px;
}

.order-summary {
  border: 1px solid #eee0e2;
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.order-summary h3 {
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.order-summary h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: #EC268F;
  border-radius: 999px;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: #4b5563;
}
.order-summary__row--total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2937;
  border-top: 1px solid #eee0e2;
  padding-top: 14px;
  margin-top: 6px;
}
.order-summary__row--total span:last-child {
  color: #EC268F;
}
.order-summary__vat-note {
  font-size: 0.75rem;
  color: #8b93a1;
  margin: -6px 0 16px;
}
.order-summary .btn, .order-summary .woocommerce-form-login button[type=submit], .woocommerce-form-login .order-summary button[type=submit],
.order-summary .woocommerce-form-register button[type=submit],
.woocommerce-form-register .order-summary button[type=submit], .order-summary .woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .order-summary button.woocommerce-Button, .order-summary .woocommerce-account .woocommerce-MyAccount-content input.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content .order-summary input.woocommerce-Button, .order-summary .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .order-summary .button,
.order-summary .woocommerce-account .woocommerce-MyAccount-content a.button,
.woocommerce-account .woocommerce-MyAccount-content .order-summary a.button, .order-summary .checkout-order-review-wrap #place_order, .checkout-order-review-wrap .order-summary #place_order, .order-summary .shipping-calculator-form button[name=calc_shipping], .shipping-calculator-form .order-summary button[name=calc_shipping], .order-summary .product-actions-row--variable .single_add_to_cart_button, .product-actions-row--variable .order-summary .single_add_to_cart_button, .order-summary .woocommerce-Reviews .form-submit input[type=submit], .woocommerce-Reviews .form-submit .order-summary input[type=submit] {
  width: 100%;
  margin-bottom: 10px;
}
.order-summary .we-accept {
  margin-top: 18px;
}
.order-summary .we-accept p {
  font-size: 0.8rem;
  color: #8b93a1;
  margin-bottom: 8px;
}
.order-summary .we-accept .payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.free-shipping-bar {
  background: #eaf6ee;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 18px 0;
}
.free-shipping-bar p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 8px;
}
.free-shipping-bar p.is-qualified {
  color: #4caf82;
}
.free-shipping-bar__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  overflow: hidden;
}
.free-shipping-bar__fill {
  height: 100%;
  background: #4caf82;
  border-radius: 999px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shipping-calculator-form {
  margin-top: 6px;
}
.shipping-calculator-form p.form-row {
  margin-bottom: 10px;
}
.shipping-calculator-form select, .shipping-calculator-form input[type=text] {
  width: 100%;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  padding: 9px 12px;
  outline: none;
}
.shipping-calculator-form select:focus, .shipping-calculator-form input[type=text]:focus {
  border-color: #EC268F;
}
.woocommerce-shipping-calculator .shipping-calculator-button {
  font-size: 0.85rem;
  font-weight: 700;
  color: #EC268F;
  text-decoration: underline;
}

.cart-cross-sells {
  margin-top: 48px;
}
.cart-cross-sells h2 {
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.cart-cross-sells h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: #EC268F;
  border-radius: 999px;
}

.cart-empty-state {
  text-align: center;
  padding: 80px 24px;
}
.cart-empty-state svg {
  width: 64px;
  height: 64px;
  color: #EC268F;
  margin-bottom: 16px;
}
.cart-empty-state h2 {
  margin-bottom: 8px;
}
.cart-empty-state p {
  color: #8b93a1;
  margin-bottom: 24px;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  max-height: 100vh;
  background: #fff;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(31, 41, 55, 0.15);
  overflow: hidden !important;
}
.mini-cart-drawer.is-open {
  transform: translateX(0);
}

body.admin-bar .mini-cart-drawer {
  top: 32px;
  height: calc(100vh - 32px);
  max-height: calc(100vh - 32px);
}

.mini-cart-drawer__header {
  background: #1f2937;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  min-height: 0;
}
.mini-cart-drawer__header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.mini-cart-drawer__header h3 svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.mini-cart-drawer__header .icon-btn {
  color: #fff;
}
.mini-cart-drawer__header .icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #EC268F;
}

.mini-cart-drawer__body,
.mini-cart-drawer.is-open .mini-cart-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 0;
  height: calc(100vh - 64px) !important;
  max-height: calc(100vh - 64px) !important;
}
.mini-cart-drawer__body::-webkit-scrollbar,
.mini-cart-drawer.is-open .mini-cart-drawer__body::-webkit-scrollbar {
  width: 8px;
}
.mini-cart-drawer__body::-webkit-scrollbar-track,
.mini-cart-drawer.is-open .mini-cart-drawer__body::-webkit-scrollbar-track {
  background: #f8fafc;
}
.mini-cart-drawer__body::-webkit-scrollbar-thumb,
.mini-cart-drawer.is-open .mini-cart-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(31, 41, 55, 0.22);
  border-radius: 999px;
}
.mini-cart-drawer__body::-webkit-scrollbar-thumb:hover,
.mini-cart-drawer.is-open .mini-cart-drawer__body::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 41, 55, 0.4);
}
.mini-cart-drawer__body,
.mini-cart-drawer.is-open .mini-cart-drawer__body {
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 41, 55, 0.25) #f8fafc;
}

/* WooCommerce fragment wrapper = same element as .mini-cart-drawer__body.
   When Woo AJAX replaces innerHTML via wc_fragments_refreshed, this
   re-enforces height/overflow so scrollbar appears reliably. */
.mini-cart-drawer__body.widget_shopping_cart_content {
  display: flex !important;
  flex-direction: column !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  height: calc(100vh - 64px) !important;
  max-height: calc(100vh - 64px) !important;
  min-height: 0 !important;
}

body.admin-bar .mini-cart-drawer__body,
body.admin-bar .mini-cart-drawer.is-open .mini-cart-drawer__body,
body.admin-bar .mini-cart-drawer__body.widget_shopping_cart_content {
  height: calc(100vh - 32px - 64px) !important;
  max-height: calc(100vh - 32px - 64px) !important;
}

.mini-cart-items-list {
  flex: 0 0 auto;
  min-height: 0;
}

.mini-cart-footer-summary {
  flex: 0 0 auto;
  margin-top: auto;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee0e2;
  align-items: center;
}
.mini-cart-item__thumb {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff8f6;
}
.mini-cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-cart-item__details {
  display: flex;
  flex-direction: column;
}
.mini-cart-item__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2937;
  display: block;
  margin-bottom: 4px;
}
.mini-cart-item__name:hover {
  color: #EC268F;
}
.mini-cart-item__price {
  font-weight: 800;
  color: #EC268F;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.mini-cart-item__meta {
  font-size: 0.76rem;
  color: #8b93a1;
  display: block;
  margin-bottom: 6px;
}
.mini-cart-item__remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: none;
  color: #8b93a1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  cursor: pointer;
}
.mini-cart-item__remove:hover {
  background: #fdeef1;
  color: #e25555;
}
.mini-cart-item__remove svg {
  width: 15px;
  height: 15px;
}

.mini-cart-footer-summary {
  border-top: 1px solid #eee0e2;
  padding-top: 16px;
  margin-top: auto;
}

.mini-cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.mini-cart-subtotal-label {
  color: #4b5563;
  font-weight: 600;
}

.mini-cart-subtotal-amount {
  color: #EC268F;
  font-weight: 800;
  font-size: 1.2rem;
}

.mini-cart-secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #4caf82;
  font-weight: 600;
  margin-bottom: 14px;
}
.mini-cart-secure-note svg {
  width: 14px;
  height: 14px;
}

.mini-cart-btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}
.mini-cart-btn-whatsapp:hover {
  background: #1eb857 !important;
  color: #fff !important;
}

.mini-cart-btn-checkout {
  background: #EC268F !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}
.mini-cart-btn-checkout:hover {
  background: #e2506b !important;
  color: #fff !important;
}

.mini-cart-btn-viewcart {
  background: #fff !important;
  border: 1.5px solid #1f2937 !important;
  color: #1f2937 !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
  transition: all 0.2s ease !important;
}
.mini-cart-btn-viewcart:hover {
  background: #EC268F !important;
  border-color: #EC268F !important;
  color: #fff !important;
}

.mini-cart-payment-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.mini-cart-payment-badges span {
  font-size: 0.7rem;
  font-weight: 700;
  background: #fff8f6;
  color: #8b93a1;
  padding: 4px 10px;
  border-radius: 4px;
}

.mini-cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #8b93a1;
}
.mini-cart-empty svg {
  width: 48px;
  height: 48px;
  color: #EC268F;
  margin-bottom: 12px;
}

.mini-cart-loading-overlay {
  position: relative;
}
.mini-cart-loading-overlay.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-section {
  margin-bottom: 32px;
}
.checkout-section h3 {
  font-size: 1.15rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.checkout-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: #EC268F;
  border-radius: 999px;
}

.woocommerce-checkout .form-row {
  position: relative;
  margin: 0 0 18px;
}
.woocommerce-checkout .form-row label {
  position: absolute;
  left: 15px;
  top: 14px;
  font-size: 0.95rem;
  color: #8b93a1;
  transition: all 0.15s ease;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
  z-index: 2;
}
.woocommerce-checkout .form-row label .required {
  color: #EC268F;
  text-decoration: none;
}
.woocommerce-checkout .form-row:has(input:focus) label, .woocommerce-checkout .form-row:has(input:not(:placeholder-shown)) label, .woocommerce-checkout .form-row:has(textarea:focus) label, .woocommerce-checkout .form-row:has(textarea:not(:placeholder-shown)) label, .woocommerce-checkout .form-row:has(select:focus) label, .woocommerce-checkout .form-row.woocommerce-invalid label {
  top: -8px;
  left: 11px;
  font-size: 0.72rem;
  color: #EC268F;
}
.woocommerce-checkout .form-row:has(select) label {
  top: -8px;
  left: 11px;
  font-size: 0.72rem;
}
.woocommerce-checkout .form-row input, .woocommerce-checkout .form-row select, .woocommerce-checkout .form-row textarea {
  width: 100%;
  border: 1.5px solid #eee0e2;
  border-radius: 8px;
  padding: 17px 14px 7px;
  font-size: 0.95rem;
  background: #fff;
  outline: none;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce-checkout .form-row input:focus, .woocommerce-checkout .form-row select:focus, .woocommerce-checkout .form-row textarea:focus {
  border-color: #EC268F;
}
.woocommerce-checkout .form-row textarea {
  padding-top: 20px;
  min-height: 90px;
}
.woocommerce-checkout .form-row.woocommerce-invalid input, .woocommerce-checkout .form-row.woocommerce-invalid select {
  border-color: #e25555;
}
.woocommerce-checkout .form-row .woocommerce-input-wrapper {
  display: block;
}
@media (max-width: 480px) {
  .woocommerce-checkout .form-row-first, .woocommerce-checkout .form-row-last {
    width: 100%;
    float: none;
  }
}
.woocommerce-checkout #ship-to-different-address label {
  position: static;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
}
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_comments_field {
  margin-top: 8px;
}
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3 {
  display: none;
}

.checkout-order-review-wrap {
  border: 1px solid #eee0e2;
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.checkout-order-review-wrap h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.checkout-order-review-wrap table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.checkout-order-review-wrap table.shop_table thead {
  display: none;
}
.checkout-order-review-wrap table.shop_table tbody tr {
  border-bottom: 1px solid #eee0e2;
}
.checkout-order-review-wrap table.shop_table tbody td, .checkout-order-review-wrap table.shop_table tbody th {
  padding: 10px 0;
  font-size: 0.9rem;
  text-align: left;
}
.checkout-order-review-wrap table.shop_table tbody td:last-child {
  text-align: right;
  font-weight: 600;
}
.checkout-order-review-wrap table.shop_table .product-name {
  display: flex;
  justify-content: space-between;
}
.checkout-order-review-wrap table.shop_table .product-quantity {
  color: #8b93a1;
  font-weight: 500;
}
.checkout-order-review-wrap table.shop_table tfoot tr {
  border-bottom: none;
}
.checkout-order-review-wrap table.shop_table tfoot th, .checkout-order-review-wrap table.shop_table tfoot td {
  padding: 8px 0;
  font-size: 0.9rem;
  text-align: left;
}
.checkout-order-review-wrap table.shop_table tfoot td {
  text-align: right;
}
.checkout-order-review-wrap table.shop_table tfoot .order-total th, .checkout-order-review-wrap table.shop_table tfoot .order-total td {
  font-size: 1.1rem;
  font-weight: 800;
  border-top: 1px solid #eee0e2;
  padding-top: 14px;
  color: #EC268F;
}
.checkout-order-review-wrap .woocommerce-checkout-payment {
  background: #fff8f6;
  border-radius: 14px;
  padding: 16px;
}
.checkout-order-review-wrap ul.wc_payment_methods {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.checkout-order-review-wrap ul.wc_payment_methods li.wc_payment_method {
  border-bottom: 1px solid #eee0e2;
  padding: 12px 0;
}
.checkout-order-review-wrap ul.wc_payment_methods li.wc_payment_method:last-child {
  border-bottom: none;
}
.checkout-order-review-wrap ul.wc_payment_methods li.wc_payment_method label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-order-review-wrap ul.wc_payment_methods li.wc_payment_method input[type=radio] {
  accent-color: #EC268F;
  width: 16px;
  height: 16px;
}
.checkout-order-review-wrap ul.wc_payment_methods li.wc_payment_method .payment_box {
  margin-top: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #4b5563;
}
.checkout-order-review-wrap #place_order {
  margin-top: 6px;
}
.checkout-order-review-wrap .woocommerce-terms-and-conditions-wrapper {
  font-size: 0.82rem;
  margin: 12px 0;
}
.checkout-order-review-wrap .woocommerce-terms-and-conditions-wrapper label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkout-order-review-wrap .woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
  margin-top: 3px;
  accent-color: #EC268F;
}

.checkout-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eee0e2;
}
.checkout-trust-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #4b5563;
}
.checkout-trust-badges svg {
  width: 18px;
  height: 18px;
  color: #EC268F;
  flex-shrink: 0;
}

.checkout-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #8b93a1;
}
.checkout-step.is-completed {
  color: #4caf82;
}
.checkout-step.is-active {
  color: #EC268F;
}
.checkout-step__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff8f6;
  color: #8b93a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.checkout-step.is-completed .checkout-step__badge {
  background: #25d366;
  color: #fff;
}
.checkout-step.is-active .checkout-step__badge {
  background: #EC268F;
  color: #fff;
}
.checkout-step__line {
  width: 44px;
  height: 2px;
  background: #eee0e2;
  border-radius: 999px;
}

.checkout-card {
  background: #fff;
  border: 1px solid #eee0e2;
  border-radius: 20px;
  overflow: hidden;
}
.checkout-card__header {
  background: #1f2937;
  color: #fff;
  padding: 14px 20px;
}
.checkout-card__header h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}
.checkout-card__body {
  padding: 24px;
}

.checkout-section-subtitle {
  font-size: 0.82rem;
  font-weight: 800;
  color: #8b93a1;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #EC268F;
  display: inline-block;
}

.checkout-order-items-list {
  margin-bottom: 18px;
}

.checkout-order-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee0e2;
}
.checkout-order-item__thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff8f6;
}
.checkout-order-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-order-item__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2937;
  display: block;
}
.checkout-order-item__qty {
  font-size: 0.78rem;
  color: #8b93a1;
  display: block;
}
.checkout-order-item__price {
  font-weight: 800;
  color: #EC268F;
  font-size: 0.95rem;
}

.checkout-order-totals {
  border-top: 1.5px solid #eee0e2;
  padding-top: 14px;
  margin-top: 10px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 6px 0;
  color: #4b5563;
}
.checkout-total-row--final {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2937;
  border-top: 1px solid #eee0e2;
  padding-top: 12px;
  margin-top: 6px;
}
.checkout-total-row--final .checkout-total-amount {
  color: #EC268F;
  font-size: 1.25rem;
  font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin-bottom: 6px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #4b5563;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:hover a {
  background: #ffe3e9;
  color: #EC268F;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #EC268F;
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message {
  background: #fdeef1;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-left: 3px solid #EC268F;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table th, .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee0e2;
  text-align: left;
  font-size: 0.9rem;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table th,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
  color: #8b93a1;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid #eee0e2;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content legend {
  font-weight: 700;
  padding: 0 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
  border: 1px solid #eee0e2;
  border-radius: 14px;
  padding: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  color: #4b5563;
  line-height: 1.7;
}
.woocommerce-account .woocommerce-MyAccount-content p.form-row input, .woocommerce-account .woocommerce-MyAccount-content p.form-row select, .woocommerce-account .woocommerce-MyAccount-content p.form-row textarea {
  width: 100%;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 4px;
  outline: none;
}
.woocommerce-account .woocommerce-MyAccount-content p.form-row input:focus, .woocommerce-account .woocommerce-MyAccount-content p.form-row select:focus, .woocommerce-account .woocommerce-MyAccount-content p.form-row textarea:focus {
  border-color: #EC268F;
}
.woocommerce-account .u-columns {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .woocommerce-account .u-columns {
    grid-template-columns: 1fr;
  }
}

.woocommerce-form-login,
.woocommerce-form-register {
  max-width: 420px;
}
.woocommerce-form-login p.form-row input,
.woocommerce-form-register p.form-row input {
  width: 100%;
  border: 1px solid #eee0e2;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 4px;
  outline: none;
}
.woocommerce-form-login p.form-row input:focus,
.woocommerce-form-register p.form-row input:focus {
  border-color: #EC268F;
}
.woocommerce-form-login .woocommerce-form-login__rememberme,
.woocommerce-form-register .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.due-date-calc-page {
  background: #fffaf9;
}

.calc-hero-section {
  background: linear-gradient(135deg, #fff8f6 0%, #fff0f3 50%, #fff5f8 100%);
  padding: 48px 0 56px;
  border-bottom: 1px solid #eee0e2;
}

.calc-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.calc-breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.calc-breadcrumbs a:hover {
  color: #EC268F;
}
.calc-breadcrumbs .sep {
  color: #d1d5db;
  font-weight: 700;
}
.calc-breadcrumbs .current {
  color: #1f2937;
  font-weight: 700;
}

.calc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .calc-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.calc-hero-left h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .calc-hero-left h1 {
    font-size: 1.8rem;
  }
}
.calc-hero-left p {
  font-size: 1.08rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-check-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-check-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f4d5dc;
  color: #1f2937;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(236, 38, 143, 0.06);
}
.hero-check-badges span svg {
  width: 16px;
  height: 16px;
  color: #EC268F;
  flex-shrink: 0;
}

.calc-hero-right img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid #eee0e2;
  box-shadow: 0 16px 48px rgba(236, 38, 143, 0.12);
}
@media (max-width: 768px) {
  .calc-hero-right img {
    height: 240px;
  }
}

.section--calc-main {
  padding: 56px 0;
}

.calc-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .calc-box-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.calc-card {
  background: #fff;
  border: 1px solid #eee0e2;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(31, 41, 55, 0.04);
}
@media (max-width: 576px) {
  .calc-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
}
.calc-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
}

.method-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 4px;
  background: #fff8f6;
  border-radius: 999px;
  border: 1px solid #f4d5dc;
}

.method-tab {
  flex: 1;
  min-width: fit-content;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.method-tab:hover {
  color: #EC268F;
}
.method-tab.is-active {
  background: #EC268F;
  color: #fff;
  box-shadow: 0 4px 12px rgba(236, 38, 143, 0.25);
}

.method-panel {
  animation: fadeSlideIn 0.35s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.due-date-calculator-form .form-group {
  margin-bottom: 20px;
}
.due-date-calculator-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}
.due-date-calculator-form .form-group label .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #fff8f6;
  border: 1px solid #f4d5dc;
  border-radius: 50%;
  font-size: 0.68rem;
  color: #EC268F;
  cursor: help;
  margin-left: 4px;
  vertical-align: middle;
  font-style: normal;
}
.due-date-calculator-form .form-group input[type=date],
.due-date-calculator-form .form-group input[type=number],
.due-date-calculator-form .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #eee0e2;
  border-radius: 12px;
  background: #fff;
  font-size: 0.95rem;
  color: #1f2937;
  transition: all 0.2s ease;
  font-family: inherit;
}
.due-date-calculator-form .form-group input[type=date]:focus,
.due-date-calculator-form .form-group input[type=number]:focus,
.due-date-calculator-form .form-group select:focus {
  outline: none;
  border-color: #EC268F;
  box-shadow: 0 0 0 3px rgba(236, 38, 143, 0.1);
  background: #fff;
}
.due-date-calculator-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.note-box {
  background: linear-gradient(135deg, #fff8f6 0%, #fdeef1 100%);
  border: 1px solid #f4d5dc;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 4px;
}

.radio-pill-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid #eee0e2;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.radio-pill:hover {
  border-color: #f9a8d4;
}
.radio-pill input {
  margin: 0;
  accent-color: #EC268F;
}
input:checked + .radio-pill, .radio-pill:has(input:checked) {
  border-color: #EC268F;
  background: #fdf2f8;
  color: #EC268F;
}

.calc-card--result {
  background: linear-gradient(160deg, #fff 0%, #fff8f6 100%);
  position: relative;
  overflow: hidden;
}
.calc-card--result::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.result-header-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fdeef1 0%, #f9a8d4 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(236, 38, 143, 0.15);
}

.result-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.result-edd-date {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 2px;
  line-height: 1.15;
}
@media (max-width: 576px) {
  .result-edd-date {
    font-size: 1.6rem;
  }
}

.result-edd-day {
  font-size: 1rem;
  color: #EC268F;
  font-weight: 700;
  margin-bottom: 28px;
}

.result-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .result-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric-box {
  background: #fff;
  border: 1px solid #eee0e2;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: transform 0.2s ease;
}
.metric-box:hover {
  transform: translateY(-2px);
  border-color: #f9a8d4;
}

.metric-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.metric-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 2px;
}

.metric-sub {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 500;
}

.pregnancy-progress-wrap {
  margin-bottom: 20px;
}

.progress-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.progress-bar-head span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
}
.progress-bar-head strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #EC268F;
}

.progress-bar-track {
  width: 100%;
  height: 12px;
  background: #fff8f6;
  border: 1px solid #eee0e2;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f9a8d4 0%, #EC268F 50%, #ec4899 100%);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.heart-note-card {
  background: linear-gradient(135deg, #fdf2f8 0%, #fff8f6 100%);
  border: 1px solid #f4d5dc;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.55;
}
.heart-note-card strong {
  color: #1f2937;
}

.section--pregnancy-journey {
  padding: 56px 0;
  background: #fff;
}

.journey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.journey-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
}
@media (max-width: 768px) {
  .journey-header h2 {
    font-size: 1.4rem;
  }
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #EC268F 0%, #ec4899 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(236, 38, 143, 0.22);
}

.timeline-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 36px;
  position: relative;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .timeline-stepper {
    gap: 4px;
    padding: 0;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.step-item .step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff8f6;
  border: 2px solid #eee0e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .step-item .step-circle {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}
.step-item strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: #6b7280;
  display: block;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
@media (max-width: 576px) {
  .step-item strong {
    font-size: 0.7rem;
  }
}
.step-item span {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
}
@media (max-width: 576px) {
  .step-item span {
    font-size: 0.62rem;
  }
}
.step-item.is-active .step-circle {
  background: linear-gradient(135deg, #EC268F 0%, #ec4899 100%);
  border-color: #EC268F;
  box-shadow: 0 6px 18px rgba(236, 38, 143, 0.3);
  transform: scale(1.08);
}
.step-item.is-active strong {
  color: #EC268F;
}

.step-line {
  flex: 0 0 40px;
  height: 3px;
  background: #eee0e2;
  border-radius: 999px;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .step-line {
    flex: 0 0 20px;
    margin-top: 20px;
  }
}

.week-development-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #fff8f6 0%, #fdf2f8 100%);
  border: 1px solid #f4d5dc;
  border-radius: 18px;
  padding: 24px 28px;
}
@media (max-width: 768px) {
  .week-development-card {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
  }
}

.doctor-avatar {
  width: 72px;
  height: 72px;
  background: #fff;
  border: 2px solid #f9a8d4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(236, 38, 143, 0.1);
}
@media (max-width: 768px) {
  .doctor-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    border-radius: 16px;
  }
}

.week-dev-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .week-dev-action {
    grid-column: 1/-1;
    justify-self: start;
  }
}

.section--stage-checklist {
  padding: 56px 0;
  background: #fffaf9;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.details-card,
.checklist-card {
  background: #fff;
  border: 1px solid #eee0e2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.03);
}
.details-card h3,
.checklist-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.checklist-card p {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.metrics-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.metrics-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f8f0f2;
  font-size: 0.9rem;
  color: #6b7280;
}
.metrics-list li:last-child {
  border-bottom: none;
}
.metrics-list li span {
  font-weight: 600;
}
.metrics-list li strong {
  color: #1f2937;
  font-weight: 800;
  text-align: right;
}

.doctor-advice-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.88rem;
  color: #166534;
  line-height: 1.55;
}
.doctor-advice-box strong {
  color: #15803d;
}

.checklist-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff8f6;
  border: 1px solid #f4d5dc;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}
.check-label:hover {
  background: #fdf2f8;
  border-color: #f9a8d4;
}
.check-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #EC268F;
  flex-shrink: 0;
  margin: 0;
}
.check-label span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f2937;
}

.section--recommended-products {
  padding: 56px 0;
  background: #fff;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 6px;
}
.section-title.text-center {
  text-align: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
}

.section-subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #EC268F;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.view-all-link:hover {
  transform: translateX(3px);
}

.section--pregnancy-shopping-list {
  padding: 56px 0;
  background: linear-gradient(180deg, #fffaf9 0%, #fff 100%);
}

.stage-shopping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .stage-shopping-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .stage-shopping-grid {
    grid-template-columns: 1fr;
  }
}

.stage-shop-card {
  background: #fff;
  border: 1px solid #eee0e2;
  border-radius: 18px;
  padding: 24px 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stage-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(236, 38, 143, 0.1);
  border-color: #f9a8d4;
}

.stage-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EC268F 0%, #ec4899 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.stage-shop-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 14px;
}
.stage-shop-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stage-shop-card ul li {
  margin-bottom: 10px;
}
.stage-shop-card ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 0;
  transition: all 0.2s ease;
}
.stage-shop-card ul li a:hover {
  color: #EC268F;
  padding-left: 4px;
}

.section--calc-toolbar {
  padding: 36px 0 56px;
}

.calc-toolbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eee0e2;
  border-radius: 18px;
  padding: 20px 28px;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.04);
}
@media (max-width: 768px) {
  .calc-toolbar-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
}

.toolbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .toolbar-actions {
    justify-content: center;
  }
}

.toolbar-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .toolbar-share {
    justify-content: center;
  }
}

.share-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6b7280;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff8f6;
  border: 1px solid #eee0e2;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.share-icon svg {
  width: 18px;
  height: 18px;
}
.share-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.share-icon.wa {
  color: #25d366;
}
.share-icon.wa:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.share-icon.fb {
  color: #1877f2;
}
.share-icon.fb:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}
.share-icon.copy:hover {
  background: #EC268F;
  color: #fff;
  border-color: #EC268F;
}

.calc-email-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.6);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.calc-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .calc-modal-content {
    padding: 24px 20px;
  }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.calc-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #fff8f6;
  border: 1px solid #eee0e2;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.4rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.calc-modal-close:hover {
  background: #EC268F;
  color: #fff;
  border-color: #EC268F;
}

.calc-modal-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 10px;
  padding-right: 40px;
}
.calc-modal-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 20px;
}

.section--disclaimer {
  padding: 20px 0 64px;
}

.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.55;
  text-align: center;
}
.disclaimer-box strong {
  color: #78350f;
}

@media print {
  .no-print,
  header,
  footer,
  #wpadminbar,
  .floating-whatsapp,
  .back-to-top,
  .calc-toolbar-card,
  .section--recommended-products,
  .section--pregnancy-shopping-list,
  .section--disclaimer {
    display: none !important;
  }
  .due-date-calc-page,
  .calc-hero-section,
  .section--pregnancy-journey,
  .section--stage-checklist {
    background: #fff !important;
    padding: 0 !important;
  }
  .calc-box-grid,
  .checklist-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .calc-card,
  .details-card,
  .checklist-card {
    box-shadow: none !important;
    border-color: #ccc !important;
    break-inside: avoid;
  }
  .calc-card--result {
    background: #fff !important;
  }
}
.menu-item-has-mega {
  position: relative;
}
.menu-item-has-mega .mega-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  padding: 20px;
  width: 480px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
}
@media (max-width: 1024px) {
  .menu-item-has-mega .mega-dropdown {
    display: none;
  }
}
.menu-item-has-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.categories-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.categories-menu--mobile {
  grid-template-columns: 1fr;
}
.categories-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
}
.categories-menu__item:hover, .categories-menu__item.is-active {
  background: #ffe3e9;
}
.categories-menu__item strong {
  display: block;
  font-size: 0.9rem;
  color: #1f2937;
}
.categories-menu__item em {
  display: block;
  font-style: normal;
  font-size: 0.76rem;
  color: #8b93a1;
}
.categories-menu__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff8f6;
}
.categories-menu__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories-menu__all {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid #eee0e2;
  font-weight: 700;
  font-size: 0.88rem;
  color: #EC268F;
}
.categories-menu__all svg {
  width: 14px;
  height: 14px;
}

.categories-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 1000;
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -10px 30px rgba(31, 41, 55, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.categories-sheet.is-open {
  transform: translateY(0);
}
.categories-sheet__handle {
  width: 40px;
  height: 4px;
  background: #eee0e2;
  border-radius: 999px;
  margin: 12px auto 4px;
  flex-shrink: 0;
}
.categories-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 14px;
  flex-shrink: 0;
}
.categories-sheet__header h3 {
  margin: 0;
  font-size: 1.05rem;
}
.categories-sheet__body {
  overflow-y: auto;
  padding: 0 20px 24px;
}

.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee0e2;
  z-index: 480;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (max-width: 1024px) {
  .bottom-nav {
    display: flex;
  }
}
.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px 8px;
  color: #8b93a1;
  font-size: 0.68rem;
  font-weight: 600;
  position: relative;
  background: none;
  border: none;
}
.bottom-nav__item svg {
  width: 21px;
  height: 21px;
}
.bottom-nav__item.is-active {
  color: #EC268F;
}
.bottom-nav__item .badge-count {
  top: 2px;
  right: 18%;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 64px;
  }
  .floating-whatsapp {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
  .back-to-top {
    bottom: calc(146px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-notice {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-atc-bar {
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  body.single-product .bottom-nav {
    display: none;
  }
  body.single-product {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .icon-btn, .product-card__wishlist, .cart-item__remove, .mini-cart-item__remove {
    min-width: 36px;
    min-height: 36px;
  }
}
.site-footer--baby {
  background: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.footer-trust-top,
.ft-trust-grid,
.ft-trust-item,
.ft-trust-divider,
.ft-trust-icon,
.ft-trust-text {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

.footer-wave {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  background: #fff0f3;
  position: relative;
  z-index: 1;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px;
}

.footer-main {
  background: linear-gradient(180deg, rgba(236, 38, 143, 0.18) 0%, rgba(236, 38, 143, 0.04) 10%, transparent 18%), linear-gradient(160deg, #3a2f5c 0%, #352b58 22%, #2f335a 48%, #2a355e 75%, #253256 100%);
  padding: 64px 0 0;
  position: relative;
  color: #d5d9e3;
  overflow: hidden;
}
.footer-main .container,
.footer-main > .container {
  display: block;
  grid-template-columns: none;
}
.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 192, 203, 0.06) 0, transparent 30%), radial-gradient(circle at 90% 60%, rgba(111, 168, 220, 0.06) 0, transparent 35%), radial-gradient(circle at 60% 95%, rgba(236, 38, 143, 0.06) 0, transparent 30%);
  pointer-events: none;
}
.footer-main::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 820' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3C!-- ========= LEFT COLUMN ========= --%3E%3C!-- TEDDY BEAR (top left) --%3E%3Cg transform='translate(72 86)'%3E%3Ccircle cx='30' cy='14' r='18'/%3E%3Ccircle cx='100' cy='14' r='18'/%3E%3Cpath d='M8 42 C4 70 20 110 65 112 C110 114 126 74 122 42 C104 28 26 28 8 42 Z'/%3E%3Ccircle cx='42' cy='62' r='4' fill='%23ffffff'/%3E%3Ccircle cx='88' cy='62' r='4' fill='%23ffffff'/%3E%3Cellipse cx='65' cy='78' rx='10' ry='6'/%3E%3Cpath d='M65 78 L65 88'/%3E%3Cpath d='M50 98 L65 94 L80 98'/%3E%3Cpath d='M45 112 L40 138'/%3E%3Cpath d='M85 112 L90 138'/%3E%3Cpath d='M18 82 L4 100'/%3E%3Cpath d='M112 82 L126 100'/%3E%3C/g%3E%3C!-- ONESIE / BABY ROMPER --%3E%3Cg transform='translate(56 292)'%3E%3Cpath d='M70 6 L46 30 L16 40 L22 66 L34 72 L32 120 L50 128 L70 130 L90 128 L108 120 L106 72 L118 66 L124 40 L94 30 Z'/%3E%3Cpath d='M56 12 L56 22'/%3E%3Cpath d='M84 12 L84 22'/%3E%3Cpath d='M70 10 C54 14 52 28 60 34 C66 38 74 38 80 34 C88 28 86 14 70 10 Z'/%3E%3Cpath d='M34 72 L22 80'/%3E%3Cpath d='M106 72 L118 80'/%3E%3Cpath d='M50 128 L54 134'/%3E%3Cpath d='M90 128 L86 134'/%3E%3Cpath d='M64 98 L64 106 M72 98 L72 106 M80 98 L80 106'/%3E%3Cpath transform='translate(62 58) scale(0.72)' d='M10 0 C4 0 0 6 0 12 C0 20 6 26 14 26 L14 28 C12 28 10 30 10 32 C10 35 13 36 14 32 L16 26 C24 26 30 20 30 12 C30 6 26 0 20 0 C16 0 13 2 10 0 Z' fill='%23ffffff' stroke='none' opacity='0.35'/%3E%3C/g%3E%3C!-- PACIFIER (left lower mid) --%3E%3Cg transform='translate(70 510)'%3E%3Cpath d='M50 10 C22 10 4 28 4 56 C4 78 20 96 44 100 C48 86 58 78 72 78 C86 78 96 86 100 100 C124 96 140 78 140 56 C140 28 122 10 94 10 C82 10 72 16 70 24 C68 16 58 10 50 10 Z'/%3E%3Cpath d='M58 22 C64 18 78 18 86 22'/%3E%3Cpath d='M50 56 L94 56'/%3E%3Cpath d='M52 74 L60 74'/%3E%3Cpath d='M84 74 L92 74'/%3E%3Ccircle cx='72' cy='108' r='14'/%3E%3Cpath d='M72 100 L72 122 M62 108 L82 108'/%3E%3C/g%3E%3C!-- BABY BOTTLE (bottom left, rotated ccw) --%3E%3Cg transform='translate(100 660) rotate(-14)'%3E%3Cpath d='M64 0 L54 20 L74 20 Z'/%3E%3Crect x='48' y='20' width='82' height='20' rx='7'/%3E%3Cpath d='M48 40 C38 44 34 60 42 74 L42 198 C42 220 76 238 104 238 C132 238 166 220 166 198 L166 74 C174 60 170 44 160 40 Z'/%3E%3Cline x1='62' y1='106' x2='146' y2='106'/%3E%3Cline x1='62' y1='132' x2='146' y2='132'/%3E%3Cline x1='62' y1='158' x2='146' y2='158'/%3E%3Cline x1='62' y1='184' x2='124' y2='184'/%3E%3Cpath d='M78 106 L78 184' opacity='0.5'/%3E%3C/g%3E%3C!-- ========= RIGHT COLUMN ========= --%3E%3C!-- RATTLE (top right) --%3E%3Cg transform='translate(1428 134)'%3E%3Ccircle cx='70' cy='56' r='50'/%3E%3Cpath d='M28 56 C32 72 46 86 70 90 C94 86 108 72 112 56'/%3E%3Cpath d='M70 6 C74 20 84 30 104 42'/%3E%3Cline x1='70' y1='6' x2='70' y2='106'/%3E%3Cline x1='20' y1='56' x2='120' y2='56'/%3E%3Cpath d='M116 92 C122 100 120 112 112 118'/%3E%3Cpath d='M118 126 L150 138 L158 162 L176 160 L160 142 L152 118 Z' fill='%23ffffff' fill-opacity='0.18'/%3E%3Cpath d='M118 126 L150 138 L158 162 L176 160 L160 142 L152 118'/%3E%3Ccircle cx='140' cy='204' r='18'/%3E%3Cpath d='M124 204 L156 204 M140 188 L140 220'/%3E%3C/g%3E%3C!-- STROLLER / CARRIAGE (mid right) --%3E%3Cg transform='translate(1404 386)'%3E%3Cpath d='M40 30 C72 6 120 6 150 30 L158 64 C156 86 140 104 112 108 L64 108 C42 104 26 86 24 64 Z'/%3E%3Cpath d='M28 60 C20 60 16 64 16 72 C16 80 20 84 28 84 L62 84 C72 84 80 84 84 92 C92 100 96 106 118 106 L162 106 C164 96 160 82 168 80'/%3E%3Cpath d='M50 30 L50 10 L56 6 L60 20'/%3E%3Cpath d='M148 60 L170 60 L178 54'/%3E%3Cpath d='M168 54 L182 52'/%3E%3Ccircle cx='78' cy='142' r='22'/%3E%3Ccircle cx='78' cy='142' r='10'/%3E%3Cpath d='M78 120 L78 164 M56 142 L100 142'/%3E%3Ccircle cx='150' cy='142' r='22'/%3E%3Ccircle cx='150' cy='142' r='10'/%3E%3Cpath d='M150 120 L150 164 M128 142 L172 142'/%3E%3C/g%3E%3C!-- BABY SNEAKERS PAIR (bottom right) --%3E%3Cg transform='translate(1356 658)'%3E%3Cg%3E%3Cpath d='M14 58 C10 46 16 30 32 20 C36 10 52 4 74 10 C92 14 120 14 148 34 L166 68 C168 80 160 92 148 92 L30 92 C18 92 10 82 10 70 Z'/%3E%3Cpath d='M32 20 C38 30 50 30 62 30'/%3E%3Cpath d='M78 22 C94 26 110 36 120 50'/%3E%3Cpath d='M42 42 C58 44 74 48 84 60'/%3E%3Cpath d='M112 60 L130 60 L146 62'/%3E%3Cpath d='M40 74 L150 74' opacity='0.6'/%3E%3Cpath d='M52 62 C68 66 86 68 110 66' stroke-dasharray='3 4'/%3E%3Cpath d='M74 10 L82 6' opacity='0.7'/%3E%3C/g%3E%3Cg transform='translate(104 -6) scale(0.92)'%3E%3Cpath d='M14 58 C10 46 16 30 32 20 C36 10 52 4 74 10 C92 14 120 14 148 34 L166 68 C168 80 160 92 148 92 L30 92 C18 92 10 82 10 70 Z'/%3E%3Cpath d='M32 20 C38 30 50 30 62 30'/%3E%3Cpath d='M78 22 C94 26 110 36 120 50'/%3E%3Cpath d='M42 42 C58 44 74 48 84 60'/%3E%3Cpath d='M112 60 L130 60 L146 62'/%3E%3Cpath d='M40 74 L150 74' opacity='0.6'/%3E%3Cpath d='M52 62 C68 66 86 68 110 66' stroke-dasharray='3 4'/%3E%3Cpath d='M74 10 L82 6' opacity='0.7'/%3E%3C/g%3E%3C/g%3E%3C!-- ========== DECORATIVE HEARTS ========== --%3E%3Cg fill='%23ffffff' fill-opacity='0.55' stroke='none'%3E%3Cpath transform='translate(246 108)' d='M14 0 C10 -4 2 -4 0 6 C-2 -4 -10 -4 -14 0 C-22 8 -16 22 0 30 C16 22 22 8 14 0 Z'/%3E%3Cpath transform='translate(1394 442)' d='M14 0 C10 -4 2 -4 0 6 C-2 -4 -10 -4 -14 0 C-22 8 -16 22 0 30 C16 22 22 8 14 0 Z'/%3E%3Cpath transform='translate(1548 624)' d='M16 0 C12 -4 4 -4 0 6 C-2 -4 -10 -4 -16 0 C-24 8 -18 24 0 34 C18 24 24 8 16 0 Z'/%3E%3Cpath transform='translate(310 772)' d='M12 0 C8 -4 2 -4 0 6 C-2 -4 -8 -4 -12 0 C-18 6 -14 18 0 26 C14 18 18 6 12 0 Z'/%3E%3Cpath transform='translate(162 1082)' d='M14 0 C10 -4 2 -4 0 6 C-2 -4 -10 -4 -14 0 C-22 8 -16 22 0 30 C16 22 22 8 14 0 Z'/%3E%3C/g%3E%3C!-- ========== DECORATIVE STARS ========== --%3E%3Cg fill='%23ffffff' fill-opacity='0.4' stroke='none'%3E%3Cpath transform='translate(30 298)' d='M0 -24 L7 -7 L24 -7 L10 4 L15 22 L0 11 L-15 22 L-10 4 L-24 -7 L-7 -7 Z'/%3E%3Cpath transform='translate(224 360)' d='M0 -20 L6 -6 L20 -6 L8 4 L12 18 L0 10 L-12 18 L-8 4 L-20 -6 L-6 -6 Z'/%3E%3Cpath transform='translate(56 706)' d='M0 -20 L6 -6 L20 -6 L8 4 L12 18 L0 10 L-12 18 L-8 4 L-20 -6 L-6 -6 Z'/%3E%3Cpath transform='translate(446 812)' d='M0 -22 L7 -7 L22 -7 L9 4 L13 20 L0 11 L-13 20 L-9 4 L-22 -7 L-7 -7 Z'/%3E%3Cpath transform='translate(822 186)' d='M0 -18 L5 -5 L18 -5 L7 3 L11 16 L0 9 L-11 16 L-7 3 L-18 -5 L-5 -5 Z'/%3E%3Cpath transform='translate(1424 148)' d='M0 -22 L7 -7 L22 -7 L9 4 L13 20 L0 11 L-13 20 L-9 4 L-22 -7 L-7 -7 Z'/%3E%3Cpath transform='translate(1180 832)' d='M0 -20 L6 -6 L20 -6 L8 4 L12 18 L0 10 L-12 18 L-8 4 L-20 -6 L-6 -6 Z'/%3E%3Cpath transform='translate(1248 860)' d='M0 -14 L4 -4 L14 -4 L6 3 L9 13 L0 7 L-9 13 L-6 3 L-14 -4 L-4 -4 Z'/%3E%3C/g%3E%3C!-- ========== DOTTED / DASHED STITCH TRAILS (like mockup) ========== --%3E%3Cg stroke='%23ffffff' stroke-width='1.8' fill='none' stroke-dasharray='2 6' stroke-linecap='round'%3E%3Cpath d='M172 198 C210 190 260 178 300 170 C334 164 350 142 322 124'/%3E%3Cpath d='M222 398 C250 430 282 472 282 520 C282 576 244 618 226 676'/%3E%3Cpath d='M120 618 C148 640 176 658 210 670 C250 684 282 708 322 718'/%3E%3Cpath d='M280 760 C320 798 358 834 410 860 C442 876 480 878 524 872'/%3E%3Cpath d='M1512 210 C1540 250 1568 300 1578 354 C1586 398 1578 428 1558 452'/%3E%3Cpath d='M1446 320 C1408 368 1390 434 1382 502 C1378 544 1368 578 1346 608'/%3E%3Cpath d='M1298 768 C1278 802 1258 832 1224 854 C1182 882 1138 896 1094 900'/%3E%3Cpath d='M1282 522 C1268 556 1274 586 1300 610 C1328 636 1366 648 1396 652'/%3E%3C/g%3E%3C!-- ========== LOOSE DOTS ========== --%3E%3Cg fill='%23ffffff' fill-opacity='0.55' stroke='none'%3E%3Ccircle cx='32' cy='340' r='3.5'/%3E%3Ccircle cx='318' cy='146' r='3'/%3E%3Ccircle cx='342' cy='126' r='2.4'/%3E%3Ccircle cx='266' cy='120' r='2.6'/%3E%3Ccircle cx='204' cy='144' r='2.4'/%3E%3Ccircle cx='288' cy='318' r='3.2'/%3E%3Ccircle cx='274' cy='482' r='3.2'/%3E%3Ccircle cx='258' cy='554' r='2.8'/%3E%3Ccircle cx='208' cy='634' r='3.4'/%3E%3Ccircle cx='262' cy='676' r='3'/%3E%3Ccircle cx='304' cy='732' r='2.8'/%3E%3Ccircle cx='400' cy='848' r='3'/%3E%3Ccircle cx='504' cy='860' r='3.2'/%3E%3Ccircle cx='1532' cy='126' r='3'/%3E%3Ccircle cx='1568' cy='330' r='3.5'/%3E%3Ccircle cx='1592' cy='462' r='3'/%3E%3Ccircle cx='1550' cy='490' r='2.6'/%3E%3Ccircle cx='1520' cy='584' r='3.2'/%3E%3Ccircle cx='1490' cy='718' r='2.8'/%3E%3Ccircle cx='1456' cy='836' r='3'/%3E%3Ccircle cx='1388' cy='870' r='2.6'/%3E%3Ccircle cx='1332' cy='578' r='2.8'/%3E%3Ccircle cx='1254' cy='542' r='3'/%3E%3Ccircle cx='1188' cy='592' r='3'/%3E%3Ccircle cx='1224' cy='780' r='3.2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.footer-main > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 1.15fr 1.05fr 1.5fr;
  gap: 40px 44px;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col-title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #EC268F;
  margin: 0 0 22px;
  padding: 0 0 10px;
  position: relative;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #EC268F, transparent);
  border-radius: 999px;
}

.footer-col--brand {
  max-width: none;
}

.footer-logo {
  margin-bottom: 16px;
}
.footer-logo .custom-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #c7ccd8;
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 22em;
}

.footer-socials--circles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d5d9e3;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-social-link:hover {
  background: #EC268F;
  color: #fff;
  border-color: #EC268F;
  transform: translateY(-2px);
}

.need-help-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(236, 38, 143, 0.28);
  border-radius: 14px;
  padding: 20px 22px;
}
.need-help-card h5 {
  color: #EC268F;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.need-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.need-help-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c7ccd8;
  font-size: 0.88rem;
}
.need-help-list li a {
  color: #c7ccd8;
  text-decoration: none;
  transition: color 0.18s ease;
}
.need-help-list li a:hover {
  color: #fff;
}

.nh-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nh-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li {
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #c7ccd8;
  font-size: 0.9rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.18s ease, padding-left 0.18s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #EC268F;
  padding-left: 4px;
}
.footer-links-subhead {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: #EC268F;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 14px;
  margin-top: 4px;
  position: relative;
  opacity: 0.92;
}
.footer-links-subhead::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 38, 143, 0.55), transparent);
  margin-bottom: 8px;
}
.footer-links-subhead:first-child, li:first-child + .footer-links-subhead {
  padding-top: 8px;
}

.footer-col--newsletter {
  position: relative;
}

.footer-newsletter-sub {
  font-size: 0.92rem;
  color: #c7ccd8;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 24em;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 8px;
  margin-bottom: 14px;
  gap: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.footer-newsletter-form input[type=email] {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  min-width: 0;
  font-family: inherit;
}
.footer-newsletter-form input[type=email]::placeholder {
  color: rgba(213, 217, 227, 0.65);
}

.footer-newsletter-btn {
  background: #EC268F;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 26px;
  height: 44px;
  min-width: 112px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(236, 38, 143, 0.28);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.footer-newsletter-btn:hover {
  background: rgb(93.8226873572%, 34.2557440154%, 45.2866594491%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(236, 38, 143, 0.34);
}

.footer-newsletter-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #a8b0bf;
  margin: 0 0 10px;
}
.footer-newsletter-note .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(236, 38, 143, 0.2);
  color: #EC268F;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.newsletter-msg-inline {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #EC268F;
  min-height: 0;
}

.footer-bear {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.footer-bear img {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.28));
  transform: translateY(4px);
}

.footer-trust-bottom {
  margin: 52px 0 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 768px) {
  .footer-trust-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .footer-trust-bottom {
    grid-template-columns: 1fr;
  }
}

.fb-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 26px;
  position: relative;
}

.fb-trust-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .fb-trust-divider {
    border-left: none;
  }
}

.fb-trust-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fb-trust-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.fb-trust-text strong {
  display: block;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.fb-trust-text span {
  display: block;
  font-size: 0.8rem;
  color: #a8b0bf;
  margin-top: 3px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
  padding: 22px 0;
}
.footer-copyright > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-copyright > .container {
    justify-content: center;
    text-align: center;
  }
}

.copyright-text {
  font-size: 0.84rem;
  color: #a8b0bf;
}

.credit-text {
  font-size: 0.82rem;
  color: #a8b0bf;
}
.credit-text strong {
  color: #fff;
  font-weight: 700;
}

.payment-marks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pm svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1025px) {
  .bottom-nav,
  body .bottom-nav,
  html body .bottom-nav,
  #colophon + .bottom-nav {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
  body,
  html body {
    padding-bottom: 0 !important;
  }
  .floating-whatsapp {
    bottom: 24px !important;
  }
  .back-to-top {
    bottom: 90px !important;
  }
  .sticky-atc-bar {
    bottom: 0 !important;
  }
  .cookie-notice {
    padding-bottom: 16px !important;
  }
}

/* =========================================================
   PBC HOMEPAGE (House of Vee layout, pink palette)
   Compiled fallback layer — mirrored from _hero.scss + _home-sections.scss
   ========================================================= */

/* ── Wrap & Guard ── */
html, body { overflow-x: hidden; max-width: 100%; }
.wrap { padding-left: 14px; padding-right: 14px; max-width: 1280px; margin: 0 auto; box-sizing: border-box; }
.pbc-home { margin-top: 0 !important; }

/* =============================================
   1. HERO LAYOUT (3-col desktop, stacked mobile)
   ============================================= */
.hero-layout { margin-top: 20px; }
@media (min-width: 1025px) {
  .hero-layout { grid-template-columns: 220px 1fr 260px; display: grid; gap: 14px; }
  .cat-sidebar { display: block; }
}
.cat-sidebar { display: none; background: #fff; border: 1px solid rgba(236, 38, 143,0.15); border-radius: 12px; overflow: hidden; align-self: start; }
.sidebar-title { background: linear-gradient(135deg, #EC268F 0%, #f58aa0 100%); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 12px 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; font-size: 0.82rem; color: #1f2937; text-decoration: none; border-bottom: 1px solid rgba(236, 38, 143,0.08); }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link .count { font-size: 0.7rem; background: rgba(236, 38, 143,0.12); color: #EC268F; padding: 2px 8px; border-radius: 999px; font-weight: 600; }

.hero-main { width: 100%; min-height: 320px; border-radius: 14px; overflow: hidden; position: relative; }
@media (min-width: 1025px) { .hero-main { min-height: 420px; } }
.h-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.h-slide.on { opacity: 1; pointer-events: auto; }
.h-bg { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(135deg, #1f2937 0%, #2d3748 100%); }
.h-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.h-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,41,55,0.82) 0%, rgba(31,41,55,0.42) 60%, rgba(31,41,55,0.18) 100%); z-index: 1; }
.h-text { position: absolute; left: 24px; right: 24px; top: 50%; transform: translateY(-50%); z-index: 2; max-width: 520px; color: #fff; }
.h-label { display: inline-block; background: rgba(236, 38, 143,0.95); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.h-title { font-family: "Poppins", -apple-system, sans-serif; font-size: clamp(1.5rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; margin: 0 0 10px 0; }
.h-title span { color: #EC268F; }
.h-sub { font-size: clamp(0.78rem, 1.5vw, 0.95rem); color: rgba(255,255,255,0.88); line-height: 1.55; margin: 0 0 14px 0; }
.h-price { font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 16px; }
.h-price::before { content: "💝 "; }
.h-cta { display: inline-flex; align-items: center; justify-content: center; padding: 11px 24px; background: #00AFEF; color: #fff; text-decoration: none; border-radius: 999px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em; box-shadow: 0 6px 18px rgba(0,175,239,0.45); }
.h-cta:hover { background: #0098CF; color: #fff; }
.h-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 3; }
.h-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.2s ease; }
.h-dot.on { background: #EC268F; width: 22px; border-radius: 999px; }
.h-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; background: rgba(255,255,255,0.85); border: none; border-radius: 50%; cursor: pointer; font-size: 1.3rem; font-weight: 700; color: #1f2937; z-index: 4; display: flex; align-items: center; justify-content: center; }
.h-nav-btn:hover { background: #00AFEF; color: #fff; }
.h-prev { left: 12px; } .h-next { right: 12px; }

.hero-right { display: flex; flex-direction: column; width: 100%; min-height: 200px; gap: 14px; }
@media (max-width: 1024px) { .hero-right { flex-direction: row; min-height: 130px; margin-top: 14px; } }
.mini-banner { flex: 1; position: relative; border-radius: 14px; overflow: hidden; min-height: 100px; background: linear-gradient(135deg, #EC268F 0%, #f7a6b6 100%); }
.mini-banner-text { position: relative; z-index: 2; padding: 16px 18px; height: 100%; display: flex; flex-direction: column; justify-content: center; color: #fff; background: linear-gradient(120deg, rgba(31,41,55,0.55) 0%, rgba(31,41,55,0.25) 65%, transparent 100%); }
.mini-banner-text .tag { display: inline-block; background: rgba(236, 38, 143,0.92); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 7px; align-self: flex-start; }
.mini-banner-text h4 { font-size: clamp(0.9rem, 1.8vw, 1.05rem); font-weight: 700; margin: 0 0 8px 0; line-height: 1.3; color: #fff; }
.mini-link { color: #fff; font-size: 0.8rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.18); padding: 5px 12px; border-radius: 999px; align-self: flex-start; }
.mini-link:hover { background: #EC268F; color: #fff; }

/* =============================================
   2. TRUST BAR
   ============================================= */
.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #fff; border: 1px solid rgba(236, 38, 143,0.15); border-radius: 14px; padding: 10px; margin: 22px 0; }
@media (max-width: 768px) { .trust-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .trust-bar { grid-template-columns: 1fr; } }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-right: 1px solid rgba(236, 38, 143,0.12); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 38px; height: 38px; flex: 0 0 38px; background: linear-gradient(135deg, rgba(236, 38, 143,0.12) 0%, rgba(236, 38, 143,0.06) 100%); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.trust-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: #1f2937; line-height: 1.2; }
.trust-text span { display: block; font-size: 0.75rem; color: #8b93a1; margin-top: 2px; }

/* =============================================
   3. CATEGORY MARQUEE
   ============================================= */
.cat-section { margin: 28px 0; }
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 0 4px; }
.sec-header h2 { font-family: "Poppins", -apple-system, sans-serif; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; color: #1f2937; margin: 0; }
.sec-header h2 span { color: #EC268F; }
.sec-all { color: #EC268F; font-size: 0.82rem; font-weight: 700; text-decoration: none; }

.cat-marquee-wrap { overflow: hidden; width: 100%; }
.cat-marquee-track { display: flex; gap: 20px; width: max-content; animation: catScroll 30s linear infinite; }
.cat-marquee-wrap:hover .cat-marquee-track { animation-play-state: paused; }
@keyframes catScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.cat-circle { display: flex; flex-direction: column; align-items: center; text-decoration: none; gap: 7px; min-width: 90px; }
.cat-circle-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; position: relative; background: linear-gradient(135deg, #FFF0F3 0%, #ffe6ec 100%); display: flex; align-items: center; justify-content: center; border: 2.5px solid rgba(236, 38, 143,0.2); box-shadow: 0 6px 16px rgba(236, 38, 143,0.12); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.cat-circle:hover .cat-circle-img { transform: translateY(-2px); border-color: #EC268F; box-shadow: 0 10px 22px rgba(236, 38, 143,0.22); }
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-circle-emoji { font-size: 2.2rem; line-height: 1; }
.cat-circle-name { font-size: 0.78rem; font-weight: 600; color: #1f2937; text-align: center; line-height: 1.3; }
.cat-circle-count { font-size: 0.68rem; color: #EC268F; font-weight: 600; text-align: center; }
@media (max-width: 600px) {
  .cat-circle-img { width: 68px; height: 68px; }
  .cat-circle-emoji { font-size: 1.8rem; }
  .cat-circle-name { font-size: 0.7rem; }
  .cat-circle-count { font-size: 0.62rem; }
  .cat-marquee-track { gap: 14px; }
  .cat-circle { min-width: 78px; }
}

/* =============================================
   4. FLASH SALE + COUNTDOWN + SLIDER
   ============================================= */
.flash-section { background: linear-gradient(135deg, rgba(236, 38, 143,0.08) 0%, rgba(236, 38, 143,0.03) 100%); border: 1px solid rgba(236, 38, 143,0.15); border-radius: 14px; padding: 18px 0; margin: 22px 0; }
.flash-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 20px 16px 20px; flex-wrap: wrap; }
.flash-title { font-family: "Poppins", -apple-system, sans-serif; font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 800; color: #EC268F; }
.flash-title span { color: #1f2937; }
.countdown { display: inline-flex; align-items: center; gap: 4px; background: #fff; border: 1.5px solid #EC268F; border-radius: 999px; padding: 5px 12px; }
.cd-unit { display: inline-flex; flex-direction: column; align-items: center; }
.cd-num { font-size: 0.82rem; font-weight: 800; color: #EC268F; line-height: 1; }
.cd-label { font-size: 0.58rem; color: #8b93a1; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.cd-sep { color: #EC268F; font-weight: 800; font-size: 0.78rem; padding: 0 1px; }
.flash-all { color: #EC268F; font-size: 0.8rem; font-weight: 700; text-decoration: none; }

.slider-outer { position: relative; overflow: hidden !important; padding: 0 36px; }
.slider-inner { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; }
.slider-inner::-webkit-scrollbar { display: none; }
.slider-inner > div { flex: 0 0 200px; max-width: 200px; }
@media (max-width: 768px) {
  .slider-outer { padding-left: 6px !important; padding-right: 6px !important; }
  .slider-inner > div { flex: 0 0 160px !important; max-width: 160px; }
}
@media (max-width: 400px) { .slider-inner > div { flex: 0 0 140px !important; max-width: 140px; } }

.s-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; background: #fff; border: 1.5px solid rgba(236, 38, 143,0.2); border-radius: 50%; cursor: pointer; font-size: 1.3rem; font-weight: 700; color: #EC268F; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: background 0.15s ease, color 0.15s ease; }
.s-btn:hover { background: #EC268F; color: #fff; border-color: #EC268F; }
.s-prev { left: 0; } .s-next { right: 0; }

/* =============================================
   5. PROMO BANNERS (3-col)
   ============================================= */
.promo-banner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0; }
@media (max-width: 768px) { .promo-banner { grid-template-columns: 1fr !important; gap: 10px; } }
.pb { position: relative; min-height: 160px; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #EC268F 0%, #f7a6b6 100%); }
.pb-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(31,41,55,0.62) 0%, rgba(31,41,55,0.25) 60%, transparent 100%); }
.pb-content { position: relative; z-index: 2; padding: 20px 22px; height: 100%; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.pb-label { display: inline-block; background: rgba(236, 38, 143,0.9); font-size: 0.68rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; align-self: flex-start; }
.pb-title { font-family: "Poppins", -apple-system, sans-serif; font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 700; color: #fff; margin: 0 0 5px 0; line-height: 1.3; }
.pb-sub { font-size: 0.8rem; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.pb-btn { display: inline-flex; align-items: center; justify-content: center; background: #fff; color: #EC268F; font-size: 0.78rem; font-weight: 700; padding: 8px 18px; border-radius: 999px; text-decoration: none; align-self: flex-start; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.pb-btn:hover { transform: translateY(-1px); color: #e45672; }

/* =============================================
   6. NEW ARRIVALS (Tabs + Grid)
   ============================================= */
.hov-section { margin: 28px 0; }
.tabs { display: flex; gap: 8px; margin-bottom: 18px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 2px; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; background: #fff; border: 1.5px solid rgba(236, 38, 143,0.2); color: #1f2937; font-size: 0.8rem; font-weight: 600; padding: 8px 18px; border-radius: 999px; cursor: pointer; white-space: nowrap; }
.tab:hover { border-color: #EC268F; color: #EC268F; }
.tab.on { background: #EC268F; border-color: #EC268F; color: #fff; }

.g4, .g5 { display: grid; gap: 14px; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .g4, .g5 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; } }
@media (max-width: 380px) { .g4, .g5 { grid-template-columns: 1fr !important; } }
.arrival-item { transition: opacity 0.25s ease; }

/* =============================================
   7. SAVE BANNER (pink with hearts)
   ============================================= */
.save-banner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(135deg, #EC268F 0%, #f58aa0 50%, #f7a6b6 100%); border-radius: 16px; padding: 30px 36px; margin: 22px 0; overflow: hidden; }
.save-banner::before, .save-banner::after { content: "♡"; position: absolute; font-size: 8rem; color: rgba(255,255,255,0.08); line-height: 1; pointer-events: none; }
.save-banner::before { top: -20px; left: 20px; transform: rotate(-15deg); }
.save-banner::after { bottom: -30px; right: 30px; transform: rotate(20deg); font-size: 10rem; }
.sb-content { position: relative; z-index: 1; flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.save-banner .label { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.save-banner h3 { font-family: "Poppins", -apple-system, sans-serif; font-size: clamp(1.15rem, 2.5vw, 1.75rem); font-weight: 800; color: #fff; margin: 0 0 6px 0; line-height: 1.2; }
.save-banner p { color: rgba(255,255,255,0.92); font-size: 0.9rem; margin: 0 0 16px 0; max-width: 520px; }
.sb-btn { display: inline-flex; align-items: center; justify-content: center; background: #fff; color: #EC268F; font-size: 0.85rem; font-weight: 700; padding: 12px 26px; border-radius: 999px; text-decoration: none; box-shadow: 0 8px 20px rgba(0,0,0,0.12); white-space: nowrap; }
.sb-btn:hover { transform: translateY(-1px); color: #e45672; }
@media (max-width: 768px) {
  .save-banner { flex-direction: column; padding: 22px 16px; gap: 12px; text-align: left; }
  .sb-content { flex-direction: column; align-items: flex-start; gap: 12px; }
  .save-banner h3 { font-size: 1.2rem; }
  .save-banner p { font-size: 0.8rem; }
  .sb-btn { padding: 10px 20px; font-size: 0.8rem; }
  .save-banner::before, .save-banner::after { display: none; }
}

/* =============================================
   8+9. BEST SELLERS slider + FEATURED ROW
   ============================================= */
.featured-row { display: flex; gap: 20px; margin: 28px 0; align-items: stretch; }
@media (max-width: 900px) { .featured-row { flex-direction: column !important; display: flex !important; gap: 14px; } }
.featured-left { flex: 0 0 300px; min-height: 400px; position: relative; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, #FFF0F3 0%, #ffe6ec 100%); }
@media (max-width: 900px) { .featured-left { min-height: 220px; width: 100%; flex: none; } }
.featured-left-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,41,55,0.12) 0%, rgba(31,41,55,0.55) 100%); z-index: 1; }
.featured-left-text { position: absolute; bottom: 26px; left: 24px; right: 24px; z-index: 2; color: #fff; }
.featured-left-text .tag { display: inline-block; background: rgba(236, 38, 143,0.95); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 13px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.featured-left-text h3 { font-family: "Poppins", -apple-system, sans-serif; font-size: 1.5rem; font-weight: 800; margin: 0 0 14px 0; line-height: 1.25; color: #fff; }
.featured-left-text a { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #EC268F; font-weight: 700; font-size: 0.82rem; padding: 9px 20px; border-radius: 999px; text-decoration: none; box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.featured-left-text a:hover { transform: translateY(-1px); color: #e45672; }
.featured-row > div:nth-child(2) { flex: 1; display: flex; flex-direction: column; }
.featured-row .g4 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }

/* =============================================
   10. NEWSLETTER
   ============================================= */
.newsletter { background: linear-gradient(135deg, #fff 0%, #FFF0F3 100%); border: 1px solid rgba(236, 38, 143,0.2); border-radius: 16px; padding: 36px 28px; text-align: center; margin: 28px 0; }
.newsletter h2 { font-family: "Poppins", -apple-system, sans-serif; font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 800; color: #1f2937; margin: 0 0 8px 0; }
.newsletter h2 span { color: #EC268F; }
.newsletter > p { color: #6b7280; font-size: 0.9rem; margin: 0 0 20px 0; }
.nl-form { display: flex; max-width: 480px; margin: 0 auto; background: #fff; border: 1.5px solid rgba(236, 38, 143,0.25); border-radius: 999px; overflow: hidden; }
.nl-form:focus-within { border-color: #EC268F; }
.nl-input { flex: 1; border: none; background: transparent; padding: 12px 22px; font-size: 0.85rem; color: #1f2937; outline: none; }
.nl-btn { background: #EC268F; color: #fff; border: none; padding: 12px 24px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; cursor: pointer; }
.nl-btn:hover { background: #e45672; }
.nl-note { margin: 12px 0 0 0; font-size: 0.72rem; color: #9ca3af; }
@media (max-width: 600px) {
  .newsletter { padding: 26px 16px; }
  .newsletter h2 { font-size: 1.2rem; }
  .newsletter > p { font-size: 0.78rem; margin-bottom: 16px; }
  .nl-form { flex-direction: column; max-width: 100%; gap: 0; border-radius: 12px; overflow: hidden; }
  .nl-input { width: 100%; }
  .nl-btn { width: 100%; border-radius: 0; padding: 12px; }
}

/* =============================================
   11. BLOG 3-col GRID
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 18px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr !important; } }
.blog-card { background: #fff; border: 1px solid rgba(236, 38, 143,0.12); border-radius: 14px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(236, 38, 143,0.15); border-color: rgba(236, 38, 143,0.3); }
.blog-img { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #FFF0F3 0%, #ffe6ec 100%); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-date { position: absolute; top: 10px; left: 10px; background: rgba(236, 38, 143,0.95); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; }
.blog-cat { position: absolute; bottom: 10px; right: 10px; background: #fff; color: #EC268F; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; box-shadow: 0 3px 8px rgba(0,0,0,0.1); }
.blog-title { font-family: "Poppins", -apple-system, sans-serif; font-size: 0.95rem; font-weight: 700; margin: 14px 16px 8px 16px; line-height: 1.4; }
.blog-title a { color: #1f2937; text-decoration: none; }
.blog-title a:hover { color: #EC268F; }
.blog-excerpt { font-size: 0.8rem; color: #6b7280; line-height: 1.55; margin: 0 16px 12px 16px; }
.blog-meta { display: flex; justify-content: space-between; padding: 0 16px; margin-bottom: 10px; font-size: 0.68rem; color: #9ca3af; }
.blog-read { display: inline-block; margin: 0 16px 18px 16px; color: #EC268F; font-weight: 700; font-size: 0.78rem; text-decoration: none; }
.blog-read:hover { color: #e45672; }

/* =============================================
   Gallery hover flip dots & responsive tweaks
   ============================================= */
.stanc-gallery-wrap { position: relative; overflow-y: hidden !important; }
.stanc-gallery-wrap .stanc-gallery-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: inline-flex; gap: 4px; z-index: 5; opacity: 0; transition: opacity 0.2s ease; background: rgba(0,0,0,0.35); border-radius: 999px; padding: 5px 8px; }
.stanc-gallery-wrap:hover .stanc-gallery-dots { opacity: 1; }
.stanc-gdot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); border: 1.5px solid rgba(0,0,0,.3); transition: background .15s, transform .15s; display: inline-block; flex-shrink: 0; }
.stanc-gdot.active { background: #EC268F; transform: scale(1.35); border-color: rgba(236, 38, 143,.5); }
.stanc-gallery-wrap img.stanc-thumb-img { transition: opacity .2s ease; }
.stanc-gallery-wrap img.stanc-thumb-img.stanc-fading { opacity: 0; }
.stanc-gallery-wrap::-webkit-scrollbar, .pc::-webkit-scrollbar, .pc-img::-webkit-scrollbar { display: none !important; width: 0 !important; }

@media (max-width: 600px) {
  .sec-header h2 { font-size: 1rem; }
  .sec-all { font-size: 0.75rem; }
}
@media (max-width: 768px) {
  .hov-section { margin: 22px 0; }
  .flash-section { margin: 16px 0; }
  .promo-banner { margin: 16px 0; }
  .save-banner { margin: 16px 0; }
  .newsletter { margin: 20px 0; }
  .cat-section { margin: 22px 0; }
}


.btn--mpesa {
  --mpesa-green: #009933;
  --mpesa-green-dark: #007a2a;
  --mpesa-shadow: 0 6px 18px rgba(0, 153, 51, 0.28);
  background: #009933;
  color: #fff;
  border-color: #009933;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 153, 51, 0.28);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.btn--mpesa .stanc-mpesa-icon { width: 26px; height: 26px; margin-right: 8px; flex-shrink: 0; }
.btn--mpesa .stanc-mpesa-btn-text em { font-style: normal; font-weight: 700; opacity: 0.92; margin-left: 6px; }
.btn--mpesa:hover:not(:disabled) {
  background: #007a2a; border-color: #007a2a; transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 153, 51, 0.36); color: #fff;
}
.btn--mpesa:active:not(:disabled) { transform: translateY(0); box-shadow: 0 3px 8px rgba(0, 153, 51, 0.25); }
.btn--mpesa:disabled, .btn--mpesa[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn--mpesa .stanc-mpesa-btn-spinner {
  display: none; width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: stanc-mpesa-spin 0.8s linear infinite;
  margin-left: 8px;
}
.btn--mpesa.is-loading .stanc-mpesa-btn-spinner { display: inline-block; }
@keyframes stanc-mpesa-spin { to { transform: rotate(360deg); } }
/* M-Pesa Daraja - STK Pay block + Modal */
.stanc-mpesa-block { margin: 12px 0 18px; padding: 14px 14px 6px; border-radius: 16px; background: linear-gradient(180deg, #eaf7ee 0%, #ffffff 100%); border: 1px solid rgba(0, 153, 51, 0.18); box-shadow: 0 8px 22px rgba(0, 153, 51, 0.08); }
.stanc-mpesa-label { display: block; margin: 0 0 10px; }
.stanc-mpesa-label .stanc-mpesa-label-main { display: block; font-weight: 800; font-size: 0.92rem; color: #007a2a; letter-spacing: 0.02em; }
.stanc-mpesa-label .stanc-mpesa-hint { display: block; font-size: 0.78rem; color: #4a6f59; margin-top: 2px; line-height: 1.35; font-weight: 500; }
.stanc-mpesa-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.stanc-mpesa-prefix { display: inline-flex; align-items: center; height: 42px; padding: 0 10px 0 12px; border-radius: 999px; background: #fff; color: #1f2937; border: 1.5px solid rgba(0, 153, 51, 0.35); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.03em; flex-shrink: 0; }
.stanc-mpesa-input { flex: 1 1 180px; min-width: 150px; height: 42px; padding: 0 14px; border-radius: 999px; border: 1.5px solid rgba(0, 153, 51, 0.3); background: #fff; color: #1f2937; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; outline: none; transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.stanc-mpesa-input::placeholder { color: #9ab3a3; font-weight: 500; letter-spacing: 0; }
.stanc-mpesa-input:focus { border-color: #009933; box-shadow: 0 0 0 3px rgba(0, 153, 51, 0.14); }
.stanc-mpesa-input:disabled { opacity: 0.55; cursor: not-allowed; }
.stanc-mpesa-block .btn--mpesa { flex: 1 1 260px; height: 44px; }
.stanc-mpesa-msg { display: none; margin-top: 10px; padding: 8px 12px; border-radius: 10px; font-size: 0.82rem; font-weight: 600; line-height: 1.45; }
.stanc-mpesa-msg.is-info    { background: rgba(0, 153, 51, 0.09); color: #006622; border: 1px solid rgba(0,153,51,0.18); }
.stanc-mpesa-msg.is-success { background: #eaf7ee;              color: #006622; border: 1px solid rgba(0,153,51,0.28); }
.stanc-mpesa-msg.is-error   { background: #fff1f1;              color: #b42318; border: 1px solid rgba(180,35,24,0.22); }

.stanc-mpesa-modal { position: fixed; inset: 0; z-index: 99999; display: none; align-items: center; justify-content: center; padding: 20px; }
.stanc-mpesa-modal.is-open { display: flex; }
.stanc-mpesa-modal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(2px); }
.stanc-mpesa-modal__dialog { position: relative; width: 100%; max-width: 420px; background: #fff; border-radius: 22px; padding: 26px 22px 20px; box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3); overflow: hidden; }
.stanc-mpesa-modal__dialog::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 8px; background: linear-gradient(90deg, #009933, #66c26d, #009933); }
.stanc-mpesa-modal__dialog.is-pending::before { animation: stanc-mpesa-glow 1.6s ease-in-out infinite alternate; }
.stanc-mpesa-modal__dialog.is-success::before { background: linear-gradient(90deg, #009933, #25d366); }
.stanc-mpesa-modal__dialog.is-failed::before  { background: linear-gradient(90deg, #d92d20, #e06a5c); }
@keyframes stanc-mpesa-glow { from { filter: brightness(0.95); } to { filter: brightness(1.25); } }
.stanc-mpesa-modal__close { position: absolute; top: 10px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: #f1f5f9; border: none; color: #475569; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background 0.18s ease, color 0.18s ease; }
.stanc-mpesa-modal__close:hover { background: #e2e8f0; color: #1f2937; }
.stanc-mpesa-modal__title { margin: 0 0 18px; font-size: 1.2rem; font-weight: 800; color: #1f2937; padding-right: 40px; }
.stanc-mpesa-modal__body { display: flex; flex-direction: column; gap: 14px; }
.stanc-mpesa-modal__phone,
.stanc-mpesa-modal__amount { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: 12px; background: #f8fafc; border: 1px solid #e2e8f0; font-size: 0.92rem; }
.stanc-mpesa-modal__phone span, .stanc-mpesa-modal__amount span { color: #64748b; font-weight: 600; }
.stanc-mpesa-modal__phone strong, .stanc-mpesa-modal__amount strong { color: #0f172a; font-weight: 800; }

.stanc-mpesa-modal__prompt { display: grid; grid-template-columns: 60px 1fr; gap: 14px; align-items: center; padding: 14px; border-radius: 14px; background: rgba(0, 153, 51, 0.06); border: 1px solid rgba(0,153,51,0.18); }
.stanc-mpesa-modal__prompt svg { width: 60px; height: 60px; animation: stanc-mpesa-ring 2.2s ease-in-out infinite; }
.stanc-mpesa-modal__prompt svg circle { stroke: #009933; stroke-width: 3; stroke-dasharray: 40 20; animation: stanc-mpesa-dash 3s linear infinite; transform-origin: 50% 50%; }
.stanc-mpesa-modal__prompt .stanc-mpesa-modal__msg { margin: 0; font-size: 0.9rem; font-weight: 600; color: #006622; line-height: 1.5; }
@keyframes stanc-mpesa-ring { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes stanc-mpesa-dash { to { transform: rotate(360deg); } }

.stanc-mpesa-modal__status { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; font-size: 0.88rem; font-weight: 700; color: #0f172a; background: #fff7ed; border: 1px solid rgba(251, 146, 60, 0.3); }
.stanc-mpesa-dot { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); animation: stanc-mpesa-pulse 1.3s ease-in-out infinite; flex-shrink: 0; }
@keyframes stanc-mpesa-pulse {
  0%   { box-shadow: 0 0 0 0     rgba(245, 158, 11, 0.55); }
  70%  { box-shadow: 0 0 0 12px  rgba(245, 158, 11, 0);    }
  100% { box-shadow: 0 0 0 0     rgba(245, 158, 11, 0);    }
}
.stanc-mpesa-modal__dialog.is-success .stanc-mpesa-modal__status { background: #eaf7ee; border-color: rgba(0, 153, 51, 0.3); color: #006622; }
.stanc-mpesa-modal__dialog.is-success .stanc-mpesa-dot { background: #009933; animation: none; box-shadow: none; }
.stanc-mpesa-modal__dialog.is-failed .stanc-mpesa-modal__status  { background: #fff1f1; border-color: rgba(217, 45, 32, 0.26); color: #b42318; }
.stanc-mpesa-modal__dialog.is-failed .stanc-mpesa-dot  { background: #d92d20; animation: none; box-shadow: none; }

.stanc-mpesa-modal__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.stanc-mpesa-modal__actions .btn { width: 100%; margin: 0; }

@media (max-width: 480px) {
  .stanc-mpesa-prefix { padding: 0 8px 0 10px; font-size: 0.8rem; height: 40px; }
  .stanc-mpesa-input  { height: 40px; font-size: 0.9rem; }
  .stanc-mpesa-block .btn--mpesa { height: 44px; }
}