@charset "UTF-8";
/*!
 * Brand Store — compiled from assets/scss/
 * Do not edit assets/css/style.css directly; it is generated.
 * Edit the Sass sources and run `npm run css`.
 */
:root {
  --blue: #1741b9;
  --blue-dark: #123497;
  --blue-soft: #e8eefb;
  --navy: #102a4a;
  --green: #0ab27f;
  --green-dark: #08986c;
  --green-soft: #e3f7f0;
  --ink: #1b2433;
  --muted: #5c6b80;
  --line: #c9d8f2;
  --bg: #f4f7fb;
  --white: #fff;
  --star: #f5a524;
  --radius: 18px;
  --radius-card: 24px;
  --radius-btn: 8px;
  --radius-input: 6px;
  --shadow-sm: 0 8px 24px rgba(16, 42, 74, 0.04);
  --shadow-md: 0 18px 50px rgba(16, 42, 74, 0.08);
  --ease: all 0.2s ease;
  --bs-primary: #1741b9;
  --bs-primary-rgb: 23, 65, 185;
  --bs-link-color: #1741b9;
  --bs-link-color-rgb: 23, 65, 185;
  --bs-link-hover-color: #123497;
  --bs-body-color: #1b2433;
  --bs-body-bg: #f4f7fb;
  --bs-border-color: #c9d8f2;
  --bs-body-font-family: "Hind Siliguri", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.6;
  --bs-emphasis-color: #1b2433;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 104px;
}
@media (min-width: 992px) {
  [id] {
    scroll-margin-top: 140px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

h1,
.h1 {
  line-height: 1.15;
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(23, 65, 185, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.text-blue {
  color: var(--blue) !important;
}

.text-green {
  color: var(--green) !important;
}

.text-muted-ink {
  color: var(--muted) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-blue-soft {
  background-color: var(--blue-soft) !important;
}

.bg-green-soft {
  background-color: var(--green-soft) !important;
}

.clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

@media (min-width: 1400px) {
  .row-cols-xxl-8 > * {
    flex: 0 0 auto;
    width: 12.5%;
  }
}
.border-dashed {
  border-style: dashed !important;
}

.section {
  padding-block: 48px;
}

.section-rule {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid var(--line);
  overflow: visible;
  transition: box-shadow 0.2s ease;
}
.site-header.is-stuck {
  box-shadow: var(--shadow-sm);
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
}
@media (min-width: 992px) {
  .brand-logo {
    width: 200px;
  }
}

.search-form {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  z-index: 1040;
}
.search-form .form-control {
  border-color: #c9d8f2;
  box-shadow: unset;
  font-size: 0.9375rem;
}
.search-form .input-group {
  background: #fff;
  transition: var(--ease);
}
.search-form .input-group input {
  border: 1.5px solid #c9d8f2;
}
.search-form .btn {
  border: 0;
  background-color: var(--blue);
  color: #fff;
  font-weight: 600;
  padding-inline: 20px;
  padding-block: 10px;
}
.search-form .btn:hover {
  background-color: var(--blue-dark);
}
.search-form .btn:focus {
  box-shadow: unset;
}

.search-feedback {
  font-size: 0.8125rem;
  color: var(--green-dark);
}

.search-suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 1040;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
}

.search-suggest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.search-suggest__item:last-child {
  border-bottom: 0;
}
.search-suggest__item:hover, .search-suggest__item:focus-visible {
  background: var(--blue-soft);
  color: var(--ink);
}

.search-suggest__img {
  width: 44px;
  height: 44px;
  flex: none;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg);
}

.search-suggest__empty {
  padding: 12px 14px;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  border-radius: var(--radius-btn);
  color: var(--ink);
  transition: var(--ease);
}
.header-action .header-action__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--blue-soft);
  color: var(--blue);
  font-size: 1.25rem;
  flex: none;
  transition: var(--ease);
}
.header-action .header-action__icon:hover {
  background-color: var(--blue-dark);
  color: #fff;
}
.header-action .header-action__icon:focus {
  box-shadow: unset;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background-color: var(--green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.main-nav {
  background-color: #fff;
  border-bottom: 1px solid var(--line);
}
.main-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 14px 14px;
  transition: var(--ease);
}
.main-nav .nav-link:hover, .main-nav .nav-link:focus-visible {
  color: var(--green-dark);
}
.main-nav .nav-link.active {
  color: var(--blue);
  font-weight: 600;
}
.main-nav .nav-item.dropdown {
  position: relative;
}
.main-nav .nav-item.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}
.main-nav .nav-item.dropdown:hover > .dropdown-menu, .main-nav .nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
}
.main-nav .nav-item.dropdown:hover > .dropdown-toggle, .main-nav .nav-item.dropdown:focus-within > .dropdown-toggle {
  color: var(--green-dark);
}

.dropdown-menu {
  --bs-dropdown-border-color: var(--line);
  --bs-dropdown-border-radius: 12px;
  --bs-dropdown-link-active-bg: var(--blue);
  --bs-dropdown-link-hover-bg: var(--blue-soft);
  --bs-dropdown-link-hover-color: var(--blue);
  --bs-dropdown-font-size: 0.9375rem;
  --bs-dropdown-spacer: 0;
  min-width: 240px;
  box-shadow: var(--shadow-md);
  border-radius: unset;
}
.dropdown-menu .dropdown-item {
  padding: 8px 12px;
}

.offcanvas-nav .nav-link {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.offcanvas-nav .nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}
.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo-chip {
  display: inline-block;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
}
.footer-logo-chip img {
  display: block;
  width: 170px;
  height: auto;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-list a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  padding: 5px 0;
  transition: var(--ease);
}
.footer-link-list a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  padding: 5px 0;
}
.footer-contact i {
  color: var(--green);
  margin-top: 4px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-contact a:hover {
  color: #fff;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 1.125rem;
  transition: var(--ease);
}
.social-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.social-btn.social-btn--green:hover {
  background-color: var(--green);
  border-color: var(--green);
}

.footer-fb {
  max-width: 340px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.footer-fb iframe {
  display: block;
  width: 100%;
  border: 0;
}

.copyright-bar {
  background-color: #0c2038;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
}
.copyright-bar a {
  color: rgba(255, 255, 255, 0.82);
}
.copyright-bar a:hover {
  color: #fff;
}

@media (max-width: 767.98px) {
  .footer-accordion .footer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin-bottom: 0;
    padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-accordion .footer-heading::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 0.75rem;
    transition: transform 0.2s ease;
  }
  .footer-accordion .footer-heading[aria-expanded=true]::after {
    transform: rotate(180deg);
  }
  .footer-accordion .footer-link-list {
    padding-block: 8px;
  }
}
@media (min-width: 768px) {
  .footer-accordion .collapse {
    display: block !important;
    height: auto !important;
  }
  .footer-accordion .footer-heading {
    pointer-events: none;
  }
}

.brand-btn,
.brand-btn-outline {
  --bs-btn-font-weight: 600;
  --bs-btn-focus-shadow-rgb: 23, 65, 185;
  transition: var(--ease);
}

.brand-btn {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--blue-dark);
  --bs-btn-hover-border-color: var(--blue-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--blue-dark);
  --bs-btn-active-border-color: var(--blue-dark);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--blue);
  --bs-btn-disabled-border-color: var(--blue);
}

.brand-btn-outline {
  --bs-btn-color: var(--blue);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--blue);
  --bs-btn-hover-border-color: var(--blue);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--blue-dark);
  --bs-btn-active-border-color: var(--blue-dark);
}

.brand-btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--green);
  --bs-btn-border-color: var(--green);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--green-dark);
  --bs-btn-hover-border-color: var(--green-dark);
}

.icon-btn {
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background-color: #fff;
  color: var(--blue);
  font-size: 1.0625rem;
  transition: var(--ease);
}
.icon-btn:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-heartbeat {
  animation: pulse-btn 1.35s ease-in-out infinite;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--bs-danger);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 8px rgba(225, 29, 72, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}
.btn-shaking {
  animation: skew-y-shaking 1.35s ease-in-out infinite;
}

@keyframes skew-y-shaking {
  0% {
    transform: skewY(-1deg);
  }
  5% {
    transform: skewY(1deg);
  }
  10% {
    transform: skewY(-1deg);
  }
  15% {
    transform: skewY(1deg);
  }
  20% {
    transform: skewY(0deg);
  }
  100% {
    transform: skewY(0deg);
  }
}
.hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
  }
}
.hero .swiper-slide {
  background-color: var(--blue-soft);
}
.hero .swiper-button-next,
.hero .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  background-color: #fff;
  color: var(--green-dark);
}
.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    display: none;
  }
}
.hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: 0.6;
}
.hero .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background-color: var(--green);
  opacity: 1;
}

.hero__img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero__img {
    aspect-ratio: 12/4;
  }
}

.category-card {
  text-align: center;
  height: 100%;
  transition: var(--ease);
}
.category-card:hover .category-card__media, .category-card:focus-visible .category-card__media {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.category-card:hover .category-card__media img, .category-card:focus-visible .category-card__media img {
  transform: scale(1.06);
}
.category-card:hover .category-card__name, .category-card:focus-visible .category-card__name {
  color: var(--blue);
}

.category-card__media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
  background-color: var(--blue-soft);
  border: 2px solid transparent;
  transition: var(--ease);
}
.category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 12px 0 0;
  transition: var(--ease);
}
@media (max-width: 767.98px) {
  .category-card__name {
    margin-bottom: 12px;
  }
}

.feature-card {
  transition: var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: #c9d8f2;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  background-color: var(--blue-soft);
  color: var(--blue);
  font-size: 1.375rem;
}

.feature-card__icon--green {
  background-color: var(--green-soft);
  color: var(--green-dark);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  transition: var(--ease);
  gap: 10px;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: #c9d8f2;
  box-shadow: var(--shadow-md);
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__media {
  position: relative;
  background-color: var(--bg);
  overflow: hidden;
}
.product-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.discount-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  background: linear-gradient(135deg, #d61f4a 0%, #ef4444 48%, #f97316 100%);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(214, 31, 74, 0.38);
  overflow: hidden;
  animation: discount-pulse 1.8s ease-in-out infinite;
}
.product-card__media .discount-badge, .pdp-gallery__main .discount-badge {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 2;
  border-radius: 0 999px 999px 0;
}
.discount-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(214, 31, 74, 0.45);
}
.discount-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.55) 50%, transparent 64%);
  transform: translateX(-140%);
  animation: discount-shine 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes discount-pulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}
@keyframes discount-shine {
  0%, 45% {
    transform: translateX(-140%);
  }
  75%, 100% {
    transform: translateX(140%);
  }
}
.stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--bs-danger);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.stockout-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background-color: rgba(220, 38, 38, 0.62);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-card.is-stockout:hover {
  transform: none;
  box-shadow: none;
}
.product-card.is-stockout:hover .product-card__media img {
  transform: none;
}
.product-card.is-stockout .product-card__media img {
  filter: grayscale(0.4);
}
.product-card.is-stockout .product-card__actions .btn {
  pointer-events: none;
  opacity: 0.55;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.product-card__title {
  font-size: 0.9375rem;
  margin: 0;
  font-weight: 500;
  height: 2.2rem;
}
.product-card__title a {
  color: var(--ink);
  transition: var(--ease);
}
.product-card__title a:hover {
  color: var(--blue);
}

.price-current {
  font-weight: 700;
  color: var(--bs-danger);
}

.price-old {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-card__actions {
  display: flex;
  align-items: center;
}
.product-card__actions .brand-btn {
  flex: 1 1 auto;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .product-card__actions {
    gap: 6px;
  }
  .product-card__actions .brand-btn {
    --bs-btn-padding-x: 8px;
    font-size: 0.8125rem;
  }
  .product-card__actions .icon-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background-color: #fff;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--ease);
}
.filter-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-tab.is-active {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.filter-tab.is-active:hover {
  color: #fff;
}

.delivery-band {
  background: linear-gradient(135deg, rgba(23, 65, 185, 0.06), rgba(10, 178, 127, 0.06)), var(--bg);
}

.ship-board {
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
}

.ship-board__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.ship-card {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 8px 10px;
  border-radius: 12px;
  background-color: var(--blue-soft);
}

.ship-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background-color: #fff;
  color: var(--blue);
  font-size: 0.9375rem;
}

.ship-card__zone {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.ship-card__meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.3;
}
.ship-card__meta strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
}

.ship-card--free {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.ship-card--free .ship-card__icon {
  color: var(--green-dark);
}
.ship-card--free .ship-card__zone,
.ship-card--free .ship-card__meta,
.ship-card--free .ship-card__meta strong {
  color: #fff;
}

.review-card {
  position: relative;
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card__quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--blue-soft);
}

.review-card__text {
  color: var(--ink);
  font-size: 0.9375rem;
  margin: 0;
  flex: 1 1 auto;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background-color: var(--blue-soft);
}

.review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}

.verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green-dark);
  background-color: var(--green-soft);
  padding: 2px 8px;
  border-radius: 999px;
}

.review-card__product {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 10px;
  margin: 0;
}

.reviews-swiper,
.video-reviews-slider {
  padding-bottom: 44px;
}
.reviews-swiper .swiper-slide,
.video-reviews-slider .swiper-slide {
  height: auto;
}
.reviews-swiper .swiper-pagination-bullet,
.video-reviews-slider .swiper-pagination-bullet {
  background-color: var(--blue);
}
.reviews-swiper .swiper-pagination-bullet-active,
.video-reviews-slider .swiper-pagination-bullet-active {
  background-color: var(--green);
}

.cart-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item .cart-item__img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.cart-item .price-current {
  font-size: 0.9375rem;
  white-space: nowrap;
}
.cart-item .icon-btn {
  width: 28px;
  height: 28px;
  font-size: 0.875rem;
}

@media (max-width: 575.98px) {
  .cart-item:has(.qty-stepper) {
    grid-template-columns: 48px 1fr;
  }
  .cart-item:has(.qty-stepper) > :last-child {
    grid-column: 2;
  }
}
.cart-item__img {
  flex: none;
  object-fit: cover;
  background-color: var(--bg);
}

.cart-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 2px;
}

.cart-item__meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.modal-round {
  border: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background-color: var(--navy);
  cursor: pointer;
}
.video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-thumb:hover .video-thumb__play, .video-thumb:focus-visible .video-thumb__play {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: var(--green);
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--blue);
  color: #fff;
  font-size: 1.75rem;
  transform: translate(-50%, -50%);
  transition: var(--ease);
  box-shadow: var(--shadow-md);
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1035;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background-color: var(--green);
}

.pdp-gallery__main {
  position: relative;
  background-color: var(--bg);
}
.pdp-gallery__main .swiper-slide img,
.pdp-gallery__main .swiper-slide .pdp-video img,
.pdp-gallery__main .swiper-slide video {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.pdp-gallery__main .swiper-button-next,
.pdp-gallery__main .swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.pdp-gallery__main .swiper-button-next::after,
.pdp-gallery__main .swiper-button-prev::after {
  font-size: 0.875rem;
  font-weight: 700;
}

.pdp-gallery__thumbs {
  padding: 12px;
}
.pdp-gallery__thumbs .swiper-slide {
  width: 64px;
  height: 64px;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
}
.pdp-gallery__thumbs .swiper-slide img,
.pdp-gallery__thumbs .swiper-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--blue);
  opacity: 1;
}
.pdp-gallery__thumbs .pdp-thumb-video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.pdp-gallery__thumbs .pdp-thumb-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background-color: var(--navy);
  cursor: pointer;
}
.pdp-video:hover .pdp-video__play, .pdp-video:focus-visible .pdp-video__play {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: var(--green);
}

.pdp-video__play,
.pdp-thumb__play {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  pointer-events: none;
}

.pdp-video__play {
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--blue);
  font-size: 1.75rem;
  transform: translate(-50%, -50%);
  transition: var(--ease);
  box-shadow: var(--shadow-md);
}

.pdp-gallery__thumbs .pdp-thumb--video {
  position: relative;
}
.pdp-gallery__thumbs .pdp-thumb--video .pdp-thumb__play {
  inset: 0;
  background-color: rgba(16, 42, 74, 0.4);
  font-size: 1.125rem;
}

.rating__stars {
  color: var(--star);
  letter-spacing: 1px;
}

.pdp-ship {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.pdp-ship__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  padding: 8px 6px;
  line-height: 1.25;
  background-color: var(--green-soft);
  border: 1px solid rgba(10, 178, 127, 0.28);
  border-radius: 8px;
}
.pdp-ship__item strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.pdp-ship__item em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.pdp-ship__row {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.pdp-ship__item--free {
  background-color: var(--green);
  border-color: var(--green);
}
.pdp-ship__item--free .pdp-ship__row,
.pdp-ship__item--free strong,
.pdp-ship__item--free em {
  color: #fff;
}

@media (max-width: 575.98px) {
  .pdp-ship {
    gap: 5px;
  }
  .pdp-ship__item {
    padding: 6px 4px;
  }
  .pdp-ship__item em {
    white-space: normal;
  }
}
.pdp-chip {
  padding: 5px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  background: #fff;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--ease);
}
.pdp-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.pdp-chip.is-active {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.pdp-cta .btn {
  flex: 1 1 160px;
}

.pdp-call {
  font-size: 0.9375rem;
  font-weight: 500;
}
.pdp-call a {
  font-weight: 700;
}
.pdp-call i {
  font-size: 1.125rem;
}
.pdp-call.phone-call {
  background: var(--blue-soft);
  color: var(--blue);
}
.pdp-call.phone-call a,
.pdp-call.phone-call i {
  color: var(--blue);
}
.pdp-call.whatsapp-call {
  background: #e7f8ee;
  color: #075e54;
}
.pdp-call.whatsapp-call a,
.pdp-call.whatsapp-call i {
  color: #25d366;
}
.pdp-call.message-call {
  background: #e8f1fe;
  color: #1877f2;
}
.pdp-call.message-call a,
.pdp-call.message-call i {
  color: #1877f2;
}

.pdp-tabs .nav-tabs {
  border-bottom: 1px solid var(--line);
  gap: 4px;
}
.pdp-tabs .nav-link {
  color: var(--navy);
  font-weight: 600;
  border: 0;
  border-radius: 8px 8px 0 0;
  padding: 10px 16px;
  background: var(--bg);
}
.pdp-tabs .nav-link:hover {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: transparent;
}
.pdp-tabs .nav-link.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.pdp-tabs .tab-content {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
  padding: 20px 24px;
}

.pdp-buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.pdp-buybar .price-current {
  font-size: 1.125rem;
}
.pdp-buybar .btn {
  flex: 1 1 auto;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .pdp-page {
    padding-bottom: 76px;
  }
}
.checkout-summary {
  position: sticky;
  top: 104px;
}

#checkoutSuggest .cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  overflow: hidden;
  background: #fff;
}
.qty-stepper button {
  width: 26px;
  border: 0;
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.qty-stepper input {
  width: 32px;
  border: 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button {
  appearance: none;
}

.thanks-hero__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.75rem;
}

.track-steps {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}

.track-steps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  min-width: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.track-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--line);
}
.track-steps__item.is-done, .track-steps__item.is-current {
  color: var(--ink);
  font-weight: 600;
}
.track-steps__item.is-done:not(:last-child)::after {
  background: var(--green);
}

.track-steps__dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  color: var(--muted);
  z-index: 1;
  font-size: 0.875rem;
}

.track-steps__item.is-done .track-steps__dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.track-steps__item.is-current .track-steps__dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.page-content {
  line-height: 1.7;
}

.page-content > *:last-child {
  margin-bottom: 0;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-content p,
.page-content ul,
.page-content ol,
.page-content table {
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--blue);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
