/* Perfora custom styles */
.announcement-bar {
  background: #9594da;
  color: #fff;
  overflow: hidden;
  padding: 6px 0;
  font-size: 14px;
}

.announcement-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.announcement-item svg { flex-shrink: 0; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header--sticky {
  position: sticky;
  top: 0;
  z-index: 4;
}

.anb-sticky { top: 0; z-index: 5; }

.homepageslideshow { list-style: none; margin: 0; padding: 0; }

.slide-item-homepage img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.slide-desktop { display: none; }
.slide-mobile { display: block; }

@media (min-width: 769px) {
  .slide-desktop { display: block; }
  .slide-mobile { display: none; }
}

.custom-category-section-wrapper {
  margin: 20px 0;
  padding: 0 var(--gutter-container);
  overflow: hidden;
  max-width: 100%;
}
.custom-category-section-title { text-align: center; margin-top: 20px; }
.custom-category-section-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.custom-category-section-slider::-webkit-scrollbar { height: 0; }
.custom-category-section-slide { min-width: 150px; text-align: center; }
.custom-category-section-slide img { width: 100%; max-width: 200px; display: block; margin: 0 auto; }
.custom-category-section-slide p {
  text-align: center;
  font-weight: 600;
  color: black;
  margin-top: 10px;
  line-height: 100%;
  padding: 0 5px;
  font-size: 16px;
}

@media (max-width: 600px) {
  .custom-category-section-wrapper { margin: 20px 5px; }
  .custom-category-section-slide { min-width: 90px; }
  .custom-category-section-slide p { font-size: 14px; }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* grid breakpoints in responsive.css */

.product-card .card__media { aspect-ratio: 1; overflow: hidden; background: #f8f8fa; }
.product-card .card__media img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .3s; }
.product-card:hover .card__media img { transform: scale(1.05); }

.product-card .card__vendor { font-size: 12px; color: rgba(var(--color-normal-text-rgb), .6); margin-bottom: 4px; }
.product-card .card__heading { font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
.product-card .card__subtitle { font-size: 13px; color: rgba(var(--color-normal-text-rgb), .6); margin-bottom: 8px; }

.price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-item--sale { font-weight: 600; }
.price-item--regular { text-decoration: line-through; color: rgba(var(--color-normal-text-rgb), .4); font-size: 14px; }
.price-badge { background: var(--color-sale-badge-bg); color: #fff; font-size: 11px; padding: 2px 6px; }

.product-promo {
  font-size: 12px;
  color: #9594da;
  margin-top: 8px;
  font-weight: 600;
}

.rating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 1;
}

.bestseller-badge {
  position: absolute;
  top: 12px;
  right: 0;
  background: var(--color-badge-background);
  color: var(--color-badge-text);
  font-size: 11px;
  padding: 4px 12px;
  clip-path: polygon(1rem 0%, 100% 0%, calc(100% - 1rem) 100%, 0% 100%);
}

.tab__header { position: relative; display: flex; overflow-x: auto; justify-content: center; gap: 8px; padding: 0 var(--gutter-container) 16px; }
.tab__link { position: relative; white-space: nowrap; cursor: pointer; padding: 10px 18px; border: 1px solid var(--color-divider); border-radius: 50px; text-decoration: none; color: var(--color-normal-text); transition: background .2s, color .2s, border-color .2s; }
.tab__link--active { background: #9594da; color: #fff; border-color: #9594da; }
.tab__panel { display: none; }
.tab__panel.active { display: block; }

/* Product carousel – center mode like Perfora mobile */
.product-carousel {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-carousel__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  padding: 8px max(8px, calc(50% - min(40vw, 155px)));
}

.product-carousel__track::-webkit-scrollbar { display: none; }

.product-carousel__slide {
  flex: 0 0 min(80vw, 300px);
  max-width: 300px;
  scroll-snap-align: center;
}

.product-carousel__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #9594da;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.product-carousel__arrow--prev { left: 4px; }
.product-carousel__arrow--next { right: 4px; }

/* Carousel product card */
.product-carousel-card {
  background: #f3f2fc;
  border: 2px solid #9594da;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.product-carousel-card__image-wrap {
  display: block;
  background: #fff;
  margin: 12px 12px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-carousel-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-carousel-card__badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 12px 0;
}

.product-carousel-card__rating {
  background: #212121;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.product-carousel-card__clinical {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(var(--color-normal-text-rgb), .7);
  white-space: nowrap;
}

.product-carousel-card__tag {
  margin-left: auto;
  background: #9594da;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: .03em;
}

.product-carousel-card__body {
  padding: 10px 12px 14px;
}

.product-carousel-card__title {
  font-family: var(--font-heading-family);
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.product-carousel-card__title a {
  color: #3d3b8e;
  text-decoration: none;
}

.product-carousel-card__subtitle {
  font-size: 11px;
  color: rgba(var(--color-normal-text-rgb), .55);
  margin: 0 0 10px;
  line-height: 1.4;
}

.product-carousel-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-carousel-card__price .price-item--sale {
  font-size: 18px;
  font-weight: 700;
}

.product-carousel-card__price .price-item--regular {
  font-size: 13px;
}

.price-badge--green {
  background: var(--color-success);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}

.product-carousel-card__variant {
  width: 100%;
  appearance: none;
  background: #e8e7f8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%230e0d1c' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: none;
  border-radius: 8px;
  padding: 12px 36px 12px 14px;
  font-family: var(--font-body-family);
  font-size: 13px;
  color: var(--color-normal-text);
  margin-bottom: 10px;
  cursor: pointer;
}

.product-carousel-card__cart {
  border-radius: 50px;
  min-height: 44px;
  font-size: 15px;
}

.show-more-btn {
  display: block;
  margin: 24px auto 0;
  border-radius: 50px;
  min-width: 160px;
  text-align: center;
  text-decoration: none;
}

.concern-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px var(--gutter-container) 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.concern-tabs::-webkit-scrollbar { display: none; }

.concern-tab {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 6px 14px;
  position: relative;
  min-width: 88px;
}

.concern-tab__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3f2fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concern-tab__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.concern-tab__label {
  font-size: 13px;
  font-family: var(--font-body-family);
  color: var(--color-normal-text);
  white-space: nowrap;
  line-height: 1.2;
}

.concern-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 8px);
  max-width: 96px;
  height: 3px;
  background: #212121;
  border-radius: 2px;
}

.concern-panel { display: none; margin-top: 8px; }
.concern-panel.active { display: block; }

.shop-by-concern-section { overflow: hidden; }

.concern-carousel { margin-top: 4px; }

.our-story-section {
  text-align: center;
  padding: 48px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.our-story-section img { max-width: 100%; margin-top: 32px; border-radius: 8px; }

.focus-banner img { width: 100%; display: block; }

.deal-countdown {
  text-align: center;
  padding: 40px 0 36px;
  background: #9b8afc;
  overflow: hidden;
}

.deal-countdown__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter-container);
}

.deal-countdown__logo {
  display: block;
  margin: 0 auto 8px;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.deal-countdown__title {
  color: #fff;
  font-size: 32px;
  margin: 0 0 8px;
}

.deal-countdown__expires {
  color: #0e0d1c;
  font-family: var(--font-heading-family);
  font-size: 16px;
  margin: 12px 0 16px;
}

.deal-countdown__timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.deal-countdown__timer .countdown-unit span {
  background: #fff;
  border-radius: 10px;
  min-width: 56px;
  padding: 10px 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0e0d1c;
  line-height: 1;
  margin-bottom: 6px;
}

.deal-countdown__timer .countdown-unit label {
  font-size: 12px;
  color: #0e0d1c;
  font-weight: 500;
}

.deal-countdown__cta {
  display: inline-block;
  margin-top: 28px;
  border-radius: 50px;
  min-width: 200px;
  text-decoration: none;
  padding: 14px 32px;
}

/* Deal carousel */
.deal-carousel {
  margin-top: 8px;
}

.deal-carousel .product-carousel__track {
  padding: 24px calc(50% - min(42vw, 170px)) 12px;
}

.deal-carousel .product-carousel__slide {
  flex: 0 0 min(84vw, 340px);
}

.deal-carousel .product-carousel__arrow {
  top: 42%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  box-shadow: none;
}

.deal-carousel__slide {
  opacity: 0.45;
  filter: blur(1px);
  transform: scale(0.94);
  transition: opacity .3s, filter .3s, transform .3s;
}

.deal-carousel__slide.is-center {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

/* Deal card */
.deal-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.deal-card__timer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #4a6cf7;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.deal-card__media {
  position: relative;
  margin: 16px 16px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8fa;
  aspect-ratio: 1;
}

.deal-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.deal-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.deal-card__offer {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  background: #212121;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  clip-path: polygon(50% 0%, 61% 11%, 75% 5%, 78% 20%, 93% 25%, 88% 39%, 100% 50%, 88% 61%, 93% 75%, 78% 80%, 75% 95%, 61% 89%, 50% 100%, 39% 89%, 25% 95%, 22% 80%, 7% 75%, 12% 61%, 0% 50%, 12% 39%, 7% 25%, 22% 20%, 25% 5%, 39% 11%);
}

.deal-card__rating {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  background: #212121;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.deal-card__body {
  padding: 14px 16px 18px;
}

.deal-card__title {
  font-family: var(--font-heading-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #1a1a3e;
}

.deal-card__title a {
  color: inherit;
  text-decoration: none;
}

.deal-card__subtitle {
  font-size: 11px;
  color: rgba(var(--color-normal-text-rgb), 0.55);
  margin: 0 0 12px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.deal-card__price .price-item--sale {
  font-size: 20px;
  font-weight: 700;
}

.deal-card__price .price-item--regular {
  font-size: 13px;
}

.deal-card__cart {
  border-radius: 50px;
  min-height: 46px;
  font-size: 15px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.countdown-unit {
  text-align: center;
  min-width: 60px;
}

.countdown-unit span {
  display: block;
  font-size: 28px;
  font-weight: 600;
}

.countdown-unit label { font-size: 12px; color: rgba(var(--color-normal-text-rgb), .6); }

.mega-menu-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-divider);
  padding: 24px var(--gutter-container);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.menu__item-megamenu:hover .mega-menu-wrapper { display: block; }

.mega-menu-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.mega-menu-img-inner { text-align: center; }
.mega-menu-img-inner img { width: 80px; height: 80px; object-fit: contain; }
.mega-menu-img-inner p { margin-top: 8px; font-size: 14px; font-weight: 600; }

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 20;
  transform: translateX(-100%);
  transition: transform .3s;
  overflow-y: auto;
}

.mobile-menu-drawer.open { transform: translateX(0); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.menu-overlay.open { opacity: 1; visibility: visible; }

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 24px var(--gutter-container);
}

/* responsive breakpoints in responsive.css */

.product-gallery img { width: 100%; border-radius: 4px; display: block; }

.size-options, .color-options { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }

.size-option, .color-option {
  padding: 10px 20px;
  border: 1px solid var(--color-divider);
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}

.size-option.selected, .color-option.selected {
  background: #212121;
  color: #fff;
  border-color: #212121;
}

.add-to-cart-btn { width: 100%; margin-top: 16px; }

.page-content { padding: 48px var(--gutter-container); max-width: 900px; margin: 0 auto; }
.page-content h1 { margin-bottom: 24px; }

.collection-header { text-align: center; padding: 32px var(--gutter-container); }

.splide__slide { flex-shrink: 0; }

.hero-slider { position: relative; overflow: hidden; }
.hero-slides { display: flex; transition: transform .5s ease; }
.hero-slide { min-width: 100%; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--color-normal-text-rgb), .3);
  border: none;
  cursor: pointer;
  padding: 0;
}

.slider-dot.active { background: #212121; }

.hidden { display: none !important; }

.header__cart-count {
  background: #9594da;
  color: #fff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  right: 4px;
  bottom: 4px;
}

/* Video reels – Real Customers, Real Reviews */
.video-reviews-section { overflow: hidden; }

.video-reels-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gutter-container) 8px;
  scrollbar-width: none;
}

.video-reels-track::-webkit-scrollbar { display: none; }

.video-reel-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  cursor: pointer;
}

.video-reel-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f2;
}

.video-reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-reel-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
}

.video-reel-card__play.is-hidden { opacity: 0; pointer-events: none; }

.video-reel-card__rating {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
}

.video-reel-card__info { padding: 10px 2px 0; }

.video-reel-card__caption {
  font-size: 13px;
  color: var(--color-light-text);
  margin: 0 0 4px;
  line-height: 1.4;
}

.video-reel-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-normal-text);
  text-decoration: none;
}

.video-reel-card__link:hover { text-decoration: underline; }

/* Fullscreen video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

.video-modal.open { opacity: 1; visibility: visible; }

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(90vw, 400px);
  max-height: 90vh;
}

.video-modal__content video {
  width: 100%;
  border-radius: 12px;
  display: block;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* Product page video */
.product-gallery__video { margin-top: 16px; }

.product-video-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.product-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
}

.product-video-play.is-hidden { opacity: 0; pointer-events: none; }

.product-video-wrap.is-playing { cursor: default; }

.product-video-player {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: contain;
}

@media (min-width: 769px) {
  .video-reel-card { flex: 0 0 260px; }
}

/* Extended product page (water-flosser) */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 16px var(--gutter-container) 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pdp-layout > * {
  min-width: 0;
}

@media (min-width: 769px) {
  .pdp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 32px var(--gutter-container) 64px;
  }
}

.pdp-gallery__main {
  position: relative;
  background: #f8f8fa;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  touch-action: pan-y;
  cursor: grab;
  padding: 16px;
  box-sizing: border-box;
}

.pdp-gallery__main:active {
  cursor: grabbing;
}

.product-gallery__main {
  touch-action: pan-y;
  cursor: grab;
}

.product-gallery__main:active {
  cursor: grabbing;
}

.pdp-gallery__image,
.pdp-gallery__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
}

.pdp-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 12px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.pdp-gallery__thumbs::-webkit-scrollbar { display: none; }

.pdp-gallery__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #f8f8fa;
  position: relative;
}

.pdp-gallery__thumb.active { border-color: #212121; }

.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-gallery__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 18px;
}

.pdp-details__title { margin-bottom: 4px; }
.pdp-details__reviews-link { font-size: 14px; color: var(--color-light-text); margin-bottom: 16px; }

.pdp-bullets {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

.pdp-bullets li { margin-bottom: 8px; }

.pdp-price-block__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-price-block__sale {
  font-size: clamp(1.75rem, 6vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
  letter-spacing: -0.02em;
}

.pdp-price-block__compare {
  text-decoration: line-through;
  color: #888;
  font-size: 15px;
  font-family: var(--font-heading-family);
}

.pdp-price-block__tax {
  font-size: 12px;
  color: #888;
  margin: 6px 0 0;
  font-style: italic;
}

.pdp-save-badge {
  background: #2db872;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  font-family: var(--font-body-family);
}

.pdp-coins-banner {
  background: #dcd9f5;
  border-radius: 999px;
  padding: 13px 18px;
  text-align: center;
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.45;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
}

.pdp-coins-banner strong {
  font-weight: 700;
}

.pdp-personalize {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 14px;
}

.pdp-personalize__title-btn {
  width: 100%;
  background: #9594da;
  color: #fff;
  border: none;
  font-family: var(--font-heading-family);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 14px 20px;
  text-align: center;
  border-radius: 999px;
  display: block;
}

.pdp-personalize.is-open {
  background: #edeaf7;
  border-radius: 12px;
  padding: 14px 16px;
}

.pdp-personalize__form {
  display: none;
}

.pdp-personalize.is-open .pdp-personalize__title-btn {
  display: none;
}

.pdp-personalize.is-open .pdp-personalize__form {
  display: block;
}

.pdp-personalize__title {
  text-align: center;
  font-family: var(--font-heading-family);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
}

.pdp-personalize__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.pdp-personalize__input {
  flex: 1;
  min-width: 0;
  border: 1px solid #c8c8d4;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: inherit;
}

.pdp-personalize__input.is-error {
  border-color: #c0392b;
  outline: none;
}

.pdp-personalize__input:focus {
  border-color: #9594da;
  outline: none;
  box-shadow: 0 0 0 2px rgba(149, 148, 218, 0.25);
}

.pdp-personalize__add {
  background: #212121;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
}

.pdp-personalize__add:disabled {
  opacity: 0.65;
  cursor: default;
}

.pdp-personalize__note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: var(--color-light-text);
  margin: 10px 0 0;
  line-height: 1.45;
}

.pdp-personalize__clock {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
}

.pdp-personalize__success {
  margin: 10px 0 0;
  font-size: 13px;
  color: #1b8a3e;
  font-weight: 600;
}

.pdp-price-block__stock {
  color: #2db872;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading-family);
  margin-top: 16px;
}

.pdp-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.pdp-qty > .h6 {
  font-family: var(--font-heading-family);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.pdp-qty__controls {
  display: flex;
  align-items: stretch;
  border: 1px solid #ccc;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.pdp-qty__btn {
  width: 40px;
  min-height: 40px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #0e0d1c;
  padding: 0;
  font-family: var(--font-body-family);
  flex-shrink: 0;
}

.pdp-qty__btn:hover {
  background: #f5f5f5;
}

.pdp-qty__input {
  width: 52px;
  min-height: 40px;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  font-family: var(--font-heading-family);
  font-size: 15px;
  font-weight: 600;
  color: #0e0d1c;
  background: #fff;
  -moz-appearance: textfield;
}

.pdp-qty__input::-webkit-outer-spin-button,
.pdp-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-delivery {
  font-size: 14px;
  color: #888;
  font-family: var(--font-heading-family);
  margin-top: 16px;
}

.pdp-trust p {
  font-size: 14px;
  margin: 8px 0 0;
  padding-left: 22px;
  position: relative;
  font-family: var(--font-heading-family);
  color: #333;
}

.pdp-trust p::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2db872;
  font-weight: 700;
  font-size: 15px;
}

.pdp-section {
  padding: 40px var(--gutter-container);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--color-divider);
}

.pdp-offers-inline {
  margin-left: calc(-1 * var(--gutter-container));
  margin-right: calc(-1 * var(--gutter-container));
  padding: 0 var(--gutter-container);
}

.pdp-offers {
  border-top: none;
  padding-top: 28px;
  padding-bottom: 24px;
}

.pdp-offers__title {
  font-family: var(--font-heading-family);
}

.pdp-offers-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 4px;
}

.pdp-offers-carousel::-webkit-scrollbar { display: none; }

.pdp-offers-carousel__track {
  display: flex;
  gap: 12px;
  width: max-content;
  min-width: 100%;
}

.pdp-offers__title {
  font-family: var(--font-heading-family);
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 700;
  color: #0e0d1c;
}

.pdp-offer-coupon {
  flex: 0 0 78%;
  max-width: 280px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8d6ee;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.pdp-offer-coupon__top {
  background: #dcd9f5;
  padding: 14px 16px 16px;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.pdp-offer-coupon__watermark {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 72px;
  font-weight: 700;
  color: rgba(149, 148, 218, 0.35);
  line-height: 1;
  pointer-events: none;
}

.pdp-offer-coupon__code {
  display: block;
  font-size: 11px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  font-family: var(--font-body-family);
}

.pdp-offer-coupon__code strong {
  font-weight: 800;
  font-size: 12px;
}

.pdp-offer-coupon__title {
  font-weight: 600;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  font-family: var(--font-heading-family);
  position: relative;
  z-index: 1;
}

.pdp-offer-coupon__desc {
  font-size: 12px;
  color: #333;
  margin: 4px 0 0;
  line-height: 1.35;
  font-family: var(--font-heading-family);
  position: relative;
  z-index: 1;
}

.pdp-offer-coupon__body {
  display: none;
}

.pdp-offer-coupon__tear {
  height: 12px;
  background: #fff;
  position: relative;
  border-top: 2px dashed #d8d8e4;
  margin: 0 10px;
}

.pdp-offer-coupon__tear::before,
.pdp-offer-coupon__tear::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e4e4ec;
}

.pdp-offer-coupon__tear::before { left: -18px; }
.pdp-offer-coupon__tear::after { right: -18px; }

.pdp-offer-coupon__footer {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff;
  font-family: var(--font-body-family);
}

.pdp-offer-coupon__icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.pdp-offer-coupon__copy {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.pdp-offers-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
}

.pdp-offers-scroll__arrow {
  font-size: 18px;
  color: #bbb;
  line-height: 1;
  user-select: none;
}

.pdp-offers-scroll__track {
  flex: 1;
  height: 4px;
  background: #e8e8ee;
  border-radius: 999px;
  overflow: hidden;
}

.pdp-offers-scroll__bar {
  height: 100%;
  background: #888;
  border-radius: 999px;
  width: 40%;
  transition: margin-left 0.1s ease;
}

/* Sticky bottom bar (mobile) */
body.has-pdp-sticky {
  padding-bottom: 76px;
}

.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 10px var(--gutter-container);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.pdp-sticky-bar__price {
  flex: 1;
  min-width: 0;
}

.pdp-sticky-bar__row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pdp-sticky-bar__sale {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
}

.pdp-sticky-bar__compare {
  font-size: 12px;
  text-decoration: line-through;
  color: #888;
}

.pdp-sticky-bar__badge {
  background: #2db872;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
}

.pdp-sticky-bar__tax {
  display: block;
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

.pdp-sticky-bar__cart {
  flex-shrink: 0;
  min-width: 148px !important;
  width: auto !important;
  border-radius: 6px !important;
  min-height: 50px !important;
  padding: 12px 22px !important;
  font-size: 15px !important;
  font-family: var(--font-heading-family) !important;
  background: #0e0d1c !important;
  border: none !important;
}

/* ── Reviews (Judge.me style) ── */
.pdp-reviews {
  padding-top: 36px;
  padding-bottom: 36px;
}

.pdp-reviews__heading {
  font-family: var(--font-heading-family);
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 4px;
  text-align: center;
  color: #0e0d1c;
}

.pdp-reviews__count {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 0 0 20px;
}

.pdp-reviews__photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.pdp-reviews__photo-strip::-webkit-scrollbar { display: none; }

.pdp-reviews__photo-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  border: 1px solid #eee;
}

.pdp-reviews__photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-reviews__summary {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.pdp-reviews__score {
  text-align: center;
}

.pdp-reviews__stars-lg,
.pdp-reviews__stars {
  color: #eca92a;
  letter-spacing: 3px;
  font-size: 18px;
  line-height: 1;
}

.pdp-reviews__score-text {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

.pdp-review-bar {
  display: grid;
  grid-template-columns: 32px 1fr 72px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 6px;
}

.pdp-review-bar__label {
  color: #333;
}

.pdp-review-bar__track {
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.pdp-review-bar__fill {
  height: 100%;
  background: #beabff;
  border-radius: 999px;
}

.pdp-review-bar__pct {
  font-size: 11px;
  color: #666;
  text-align: right;
}

.pdp-reviews__write-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 28px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #212121;
  border-radius: 999px;
  font-family: var(--font-heading-family);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #0e0d1c;
}

.pdp-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
}

.pdp-review {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.pdp-review__header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.pdp-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #beabff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.pdp-review__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp-review__name {
  font-size: 14px;
  font-weight: 700;
  color: #0e0d1c;
}

.pdp-review__verified {
  font-size: 10px;
  font-weight: 600;
  color: #2db872;
  border: 1px solid #2db872;
  border-radius: 3px;
  padding: 1px 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pdp-review__stars {
  color: #eca92a;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 2px 0;
}

.pdp-review__date {
  font-size: 11px;
  color: #999;
}

.pdp-review__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
}

.pdp-review__body {
  font-size: 13px;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.pdp-review__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pdp-review__photo {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  border: 1px solid #eee;
}

.pdp-review__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-reviews__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pdp-reviews__page {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  background: #fff;
  padding: 0;
  font-family: inherit;
  line-height: 1;
}

.pdp-reviews__page:hover {
  border-color: #999;
}

.pdp-reviews__page.is-active {
  background: #0e0d1c;
  color: #fff;
  border-color: #0e0d1c;
}

@media (min-width: 769px) {
  .pdp-reviews__summary {
    grid-template-columns: 180px 1fr;
    align-items: start;
  }

  .pdp-reviews__score {
    text-align: left;
  }

  .pdp-reviews__heading,
  .pdp-reviews__count {
    text-align: left;
  }
}

@media (min-width: 769px) {
  .pdp-sticky-bar { display: none; }
  body.has-pdp-sticky { padding-bottom: 0; }
}

.pdp-offers__grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 769px) {
  .pdp-offers__grid { grid-template-columns: repeat(2, 1fr); }
}

.pdp-offer-card {
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  padding: 14px 16px;
}

.pdp-offer-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pdp-offer-card__code { font-size: 12px; }

.pdp-offer-card__tag {
  background: #212121;
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
}

.pdp-offer-card__copy {
  border: 1px solid var(--color-divider);
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
}

.pdp-offer-card__title { font-weight: 600; margin: 0; font-size: 14px; }
.pdp-offer-card__desc { font-size: 12px; color: var(--color-light-text); margin: 4px 0 0; }

.pdp-difference {
  text-align: center;
}

.pdp-banners {
  max-width: none;
  padding: 32px var(--gutter-container) 24px;
  border-top: 1px solid var(--color-divider);
}

.pdp-banners__title {
  padding: 0;
  margin: 0 0 20px;
  font-family: var(--font-heading-family);
}

.pdp-banners__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.pdp-banner {
  width: 100%;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8fa;
}

.pdp-banner picture,
.pdp-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 769px) {
  .pdp-banners {
    padding: 48px var(--gutter-container) 40px;
  }

  .pdp-banners__list {
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.pdp-star { color: #ddd; }
.pdp-star--on,
.pdp-star--half { color: #eca92a; }

.pdp-faq-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
  padding: 40px var(--gutter-container) 48px;
  box-sizing: border-box;
}

.pdp-faq-section__head {
  text-align: center;
  margin-bottom: 32px;
}

.pdp-faq-section__title {
  font-family: var(--font-heading-family);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #0e0d1c;
  margin: 0 0 16px;
}

.pdp-faq-section__divider {
  position: relative;
  height: 1px;
  background: #d8d8d8;
  max-width: 100%;
}

.pdp-faq-section__star {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #0e0d1c;
  background: #fff;
  padding-left: 8px;
  line-height: 1;
}

.pdp-faq-group {
  margin-bottom: 40px;
}

.pdp-faq-group:last-child {
  margin-bottom: 0;
}

.pdp-faq-group__intro {
  margin-bottom: 8px;
}

.pdp-faq-group__title {
  font-family: var(--font-heading-family);
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 700;
  color: #0e0d1c;
  margin: 0 0 6px;
}

.pdp-faq-group__subtitle {
  font-family: var(--font-heading-family);
  font-size: 14px;
  color: #444;
  margin: 0 0 8px;
  line-height: 1.45;
}

.pdp-faq-item {
  border-top: 1px solid #d8d8d8;
}

.pdp-faq-item:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.pdp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-heading-family);
}

.pdp-faq-item summary::-webkit-details-marker { display: none; }

.pdp-faq-item__q {
  flex: 1;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  font-weight: 700;
  color: #0e0d1c;
  line-height: 1.4;
}

.pdp-faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #0e0d1c;
}

.pdp-faq-item__icon::before {
  content: '+';
}

.pdp-faq-item[open] .pdp-faq-item__icon::before {
  content: '−';
}

.pdp-faq-item__a {
  padding: 0 0 20px;
}

.pdp-faq-item__a p {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}

.pdp-know-more-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pdp-know-more-bar {
  width: 100%;
  border: none;
  background: #eee;
  color: #0e0d1c;
  font-family: var(--font-heading-family);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 600;
  text-align: center;
  padding: 16px var(--gutter-container);
  cursor: pointer;
  display: block;
}

.pdp-know-more-bar.is-active {
  background: #0e0d1c;
  color: #fff;
}

.pdp-know-more-panel {
  background: #eee;
}

.pdp-know-more-panel__inner {
  padding: 24px var(--gutter-container) 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pdp-know-more-panel__title {
  font-family: var(--font-heading-family);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #0e0d1c;
}

.pdp-know-more-panel__inner p {
  font-family: var(--font-heading-family);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 6px;
  color: #333;
}

.footer-contact-link {
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: 15px;
}

.footer-contact-link__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.footer-contact-link__icon--img {
  background: transparent;
  padding: 0;
}

.footer-contact-link__icon--img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.footer-contact-link--whatsapp .footer-contact-link__icon {
  background: transparent;
}

.footer-contact-link__icon--email {
  background: #1a2744;
  color: #fff;
}

.footer-contact-link--email .footer-contact-link__icon {
  background: #1a2744;
}

body.pdp-page footer.color-scheme-footer {
  background: #0e0d1c;
  color: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 32px;
}

body.pdp-page footer.color-scheme-footer .h6,
body.pdp-page footer.color-scheme-footer p,
body.pdp-page footer.color-scheme-footer a {
  color: #fff;
  font-family: var(--font-heading-family);
}

body.pdp-page footer.color-scheme-footer .text-block p {
  font-size: 15px;
  line-height: 1.55;
}

body.pdp-page footer.color-scheme-footer .footer__nav__list,
body.pdp-page footer.color-scheme-footer .footer-newsletter,
body.pdp-page footer.color-scheme-footer .footer__content__bottom {
  display: none;
}

body.pdp-page footer.color-scheme-footer .clm:not(:first-child) {
  display: none;
}

body.pdp-page footer.color-scheme-footer .p-sides {
  padding-left: var(--gutter-container);
  padding-right: var(--gutter-container);
}

@media (min-width: 769px) {
  body.pdp-page footer.color-scheme-footer {
    width: auto;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  body.pdp-page footer.color-scheme-footer .footer__nav__list,
  body.pdp-page footer.color-scheme-footer .footer-newsletter,
  body.pdp-page footer.color-scheme-footer .footer__content__bottom {
    display: block;
  }

  body.pdp-page footer.color-scheme-footer .clm:not(:first-child) {
    display: block;
  }

  body.pdp-page footer.color-scheme-footer .footer__nav__list {
    display: grid;
  }

  .pdp-faq-group {
    display: grid;
    grid-template-columns: minmax(180px, 28%) 1fr;
    gap: 32px 48px;
    align-items: start;
  }

  .pdp-faq-group__intro {
    margin-bottom: 0;
  }
}

/* ── Product page: full width + buttons fix ── */
#product-content,
.product-page-content,
.product-page-main {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-page-main {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Override base.css word-break on all buttons */
.btn {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.pdp-layout,
.pdp-details,
.pdp-gallery,
.pdp-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pdp-details {
  min-width: 0;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pdp-actions .btn,
.product-details .add-to-cart-btn,
.product-details .btn-secondary.btn-large,
.product-details .btn-primary.btn-large {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  word-break: normal !important;
  white-space: normal !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 50px;
  min-height: 48px;
  padding: 12px 24px !important;
}

.product-carousel-card__cart,
.deal-card__cart {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  word-break: normal !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .pdp-actions {
    display: none;
  }

  .pdp-layout {
    padding: 12px var(--gutter-container) 32px;
    gap: 20px;
  }

  .pdp-gallery__main {
    aspect-ratio: unset;
    height: auto;
    min-height: 260px;
    max-height: min(72vw, 340px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 8px;
  }

  .pdp-gallery__image,
  .pdp-gallery__video {
    width: 100%;
    height: auto;
    max-height: min(68vw, 320px);
    object-fit: contain;
  }

  .pdp-gallery__thumbs {
    margin-top: 12px;
    gap: 10px;
  }

  .pdp-gallery__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .pdp-details__title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .pdp-section {
    padding: 28px var(--gutter-container);
  }

  .product-gallery__main {
    aspect-ratio: unset;
    max-height: min(72vw, 340px);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .product-gallery__main img {
    width: 100%;
    height: auto;
    max-height: min(68vw, 320px);
    object-fit: contain;
  }

  .product-page-grid {
    padding: 12px var(--gutter-container) 40px;
    gap: 20px;
  }

  .product-details {
    width: 100%;
    min-width: 0;
  }
}

/* Cart drawer — Perfora copy */
.cart-drawer {
  z-index: 200;
}

.cart-drawer__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100dvh;
  width: 100%;
  max-width: 100%;
  background: #fff;
}

.cart-drawer__header {
  padding: 18px 20px 12px;
  flex-shrink: 0;
}

.cart-drawer__heading {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: 1.8rem;
  font-weight: 600;
  color: #0e0d1c;
  letter-spacing: 0;
}

.cart-drawer__close {
  color: #0e0d1c;
  opacity: 0.85;
}

.cart-drawer__body {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 16px 12px;
  align-items: stretch !important;
  justify-content: flex-start !important;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer__body .cart-lines {
  display: flex;
  flex-direction: column;
}

/* Gift tier progress bar */
.cart-gift-bar {
  background: #ebebf5;
  border-radius: 10px;
  padding: 14px 12px 12px;
  margin-bottom: 18px;
}

.cart-gift-bar__track {
  position: relative;
  margin-bottom: 10px;
  padding: 0 8px;
}

.cart-gift-bar__line {
  position: absolute;
  top: 14px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: #c8c8d8;
  z-index: 0;
}

.cart-gift-bar__steps {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-gift-bar__step {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cart-gift-bar__bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #c8c8d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.cart-gift-bar__step.is-unlocked .cart-gift-bar__bubble {
  background: #2db872;
  border-color: #2db872;
  color: #fff;
}

.cart-gift-bar__labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.cart-gift-bar__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  color: #666;
  font-family: var(--font-body-family);
}

.cart-gift-bar__text.is-unlocked {
  color: #0e0d1c;
}

/* Cart line item */
.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8ee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
}

.cart-item__body {
  flex: 1;
  min-width: 0;
}

.cart-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.cart-item__title {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0e0d1c;
  flex: 1;
  min-width: 0;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cart-item__icon-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.cart-item__icon-btn:hover {
  color: #0e0d1c;
}

.cart-item__qty-num {
  min-width: 18px;
  text-align: center;
  font-size: 1.35rem;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
}

.cart-item__qty-plus {
  width: 26px;
  height: 26px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: #0e0d1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-family);
  padding: 0;
}

.cart-item__price {
  margin: 0 0 6px;
  font-family: var(--font-heading-family);
  font-size: 1.55rem;
  font-weight: 700;
  color: #4268f6;
  line-height: 1.2;
}

/* Personalization sub-row */
.cart-item__pers {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.cart-item__pers-main {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.cart-item__pers-icon {
  flex-shrink: 0;
  color: #0e0d1c;
  margin-top: 2px;
  line-height: 0;
}

.cart-item__pers-copy {
  min-width: 0;
}

.cart-item__pers-title {
  margin: 0 0 2px;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
}

.cart-item__pers-name {
  margin: 0 0 3px;
  font-size: 1.05rem;
  color: #777;
  font-family: var(--font-body-family);
}

.cart-item__pers-price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading-family);
  color: #0e0d1c;
}

/* Cart footer */
.cart-drawer__footer {
  flex-shrink: 0;
  border-top: 1px solid #e8e8ee;
  padding: 16px 20px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: #fff;
}

.cart-drawer__total {
  margin-bottom: 14px;
}

.cart-drawer__total-label {
  font-family: var(--font-heading-family);
  font-size: 1.7rem;
  font-weight: 600;
  color: #0e0d1c;
}

.cart-drawer__total-value {
  font-family: var(--font-heading-family);
  font-size: 1.8rem;
  font-weight: 700;
  color: #4268f6;
}

.cart-drawer__checkout {
  min-height: 52px !important;
  border-radius: 6px !important;
  font-family: var(--font-heading-family) !important;
  font-size: 1.6rem !important;
  background: #0e0d1c !important;
  border: none !important;
}

/* ── Checkout / GoKwik splash ── */
.checkout-page {
  background: #fff;
  min-height: 100dvh;
}

.checkout-page.checkout-ready {
  background: #f3f3f3;
}

/* GoKwik securing screen */
.gokwik-splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 24px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.gokwik-splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.gokwik-splash.is-done {
  opacity: 0;
  visibility: hidden;
}

.gokwik-splash.hidden {
  display: none;
}

.gokwik-splash__text {
  margin: 0 0 42px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6d6d6d;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
}

.gokwik-logo {
  margin: 0 0 48px;
  animation: gokwikLogoPulse 1.8s ease-in-out infinite;
}

.gokwik-logo__icon {
  display: block;
  width: min(130px, 36vw);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

@keyframes gokwikLogoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.92;
  }
}

.gokwik-splash__powered {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.gokwik-splash__powered-text {
  font-size: 1.25rem;
  color: #9a9a9a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
}

.gokwik-splash__brand-img {
  display: block;
  width: 96px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* GoKwik checkout page (boat-style) */
.gk-checkout {
  min-height: 100dvh;
  background: #f3f3f3;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111;
}

.gk-checkout.hidden {
  display: none;
}

.gk-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.gk-header__back {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #111;
  display: inline-flex;
  flex-shrink: 0;
}

.gk-header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.gk-header__logo img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.gk-header__summary {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 0;
}

.gk-saved-pill {
  background: #e8f8ee;
  color: #1a8f4a;
  font-size: 1rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.gk-cart-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
}

.gk-cart-toggle__count {
  font-size: 1.15rem;
  color: #333;
}

.gk-cart-toggle__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.gk-cart-toggle__compare {
  font-size: 1.1rem;
  color: #999;
}

.gk-cart-toggle__sale {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
}

.gk-cart-toggle__chev {
  transition: transform 0.2s;
}

.gk-cart-toggle.is-open .gk-cart-toggle__chev {
  transform: rotate(180deg);
}

.gk-cart-drop {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 14px;
}

.gk-cart-drop.hidden {
  display: none;
}

.gk-cart-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.gk-cart-item:last-child {
  border-bottom: none;
}

.gk-cart-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.gk-cart-item__title {
  margin: 0 0 2px;
  font-size: 1.2rem;
  font-weight: 600;
}

.gk-cart-item__meta,
.gk-cart-item__pers {
  margin: 0;
  font-size: 1.05rem;
  color: #666;
}

.gk-body {
  padding: 12px 12px 28px;
  max-width: 480px;
  margin: 0 auto;
}

.gk-section {
  margin-bottom: 14px;
}

.gk-section__label {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #888;
}

.gk-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 14px;
}

.gk-address-view__top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.gk-address-view__main {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.gk-pin {
  flex-shrink: 0;
  margin-top: 2px;
  color: #333;
}

.gk-address-view__name {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 700;
}

.gk-address-view__line {
  margin: 0 0 3px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.4;
  word-break: break-word;
}

.gk-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: 6px;
  font-size: 1.1rem;
  color: #111;
  text-decoration: underline;
  cursor: pointer;
}

.gk-link-btn--bold {
  font-weight: 700;
}

.gk-change-btn {
  flex-shrink: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.gk-shipping-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fafafa;
}

.gk-shipping-box__title {
  margin: 0 0 2px;
  font-size: 1.15rem;
  font-weight: 600;
}

.gk-shipping-box__eta {
  margin: 0;
  font-size: 1.05rem;
  color: #1a8f4a;
  font-weight: 500;
}

.gk-shipping-box__badge {
  background: #1a8f4a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.gk-address-form__title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.gk-address-form.hidden,
.gk-address-view.hidden {
  display: none;
}

.gk-field {
  margin-bottom: 8px;
}

.gk-field input,
.gk-field-row input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1.2rem;
  font-family: inherit;
}

.gk-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.gk-save-address-btn {
  width: 100%;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 11px;
  cursor: pointer;
}

.gk-coupon-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: inherit;
}

.gk-offers-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: #444;
}

.gk-offers-row__left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gk-upi-card {
  margin-bottom: 10px;
}

.gk-upi-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.gk-upi-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.35rem;
  font-weight: 700;
}

.gk-upi-card__amount {
  font-size: 1.5rem;
  font-weight: 700;
}

.gk-upi-tap-label {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8a8a8a;
  text-transform: uppercase;
}

.gk-upi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
  overflow: visible;
}

.gk-upi-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 118px;
  padding: 14px 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  overflow: visible;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.gk-upi-tile.is-active {
  border-color: #5f259f;
  background: #fdf9f4;
  box-shadow: 0 0 0 3px rgba(95, 37, 159, 0.18);
}

.gk-upi-tile[data-upi-app="paytm"].is-active {
  border-color: #00baf2;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(0, 186, 242, 0.22);
}

.gk-upi-tile[data-upi-app="bhim"].is-active {
  border-color: #1a8f4a;
  background: #f3fbf6;
  box-shadow: 0 0 0 3px rgba(26, 143, 74, 0.2);
}

.gk-upi-tile[data-upi-app="whatsapp"].is-active {
  border-color: #25d366;
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
}

.gk-upi-tile__badge {
  display: none;
  position: absolute;
  top: -8px;
  right: -4px;
  background: #1a8f4a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1.2;
  z-index: 2;
}

.gk-upi-tile.is-active .gk-upi-tile__badge {
  display: block;
}

.gk-upi-tile__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gk-upi-tile__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.gk-upi-tile__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.2;
}

.gk-upi-tile__price {
  display: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a8f4a;
}

.gk-upi-tile.is-active .gk-upi-tile__price {
  display: block;
}

.gk-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: #999;
  font-size: 1rem;
}

.gk-or::before,
.gk-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.gk-upi-id-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  font-size: 1.15rem;
  font-family: inherit;
  background: #f8f8f8;
  color: #333;
}

.gk-upi-opening {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #eef8f1;
  border: 1px solid #b8e6c8;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #1a5c32;
  line-height: 1.45;
  text-align: center;
}

.gk-upi-opening.hidden {
  display: none;
}

.gk-upi-vpa {
  word-break: break-all;
  font-weight: 600;
}

.gk-upi-fallback {
  margin: 10px 0 0;
  font-size: 1.05rem;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

.gk-upi-fallback.hidden {
  display: none;
}

.gk-upi-fallback__link {
  color: #5f259f;
  font-weight: 700;
  text-decoration: underline;
}

.gk-pay-cta {
  width: 100%;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 11px;
  cursor: pointer;
}

.gk-pay-cta.hidden {
  display: none;
}

.gk-pay-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gk-pay-row-wrap {
  position: relative;
}

.gk-pay-ribbon {
  position: absolute;
  top: -9px;
  left: 12px;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
}

.gk-pay-ribbon--green {
  background: #1a8f4a;
}

.gk-pay-ribbon--red {
  background: #d32f2f;
}

.gk-pay-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  padding: 14px 12px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.gk-pay-row__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.gk-pay-row__body {
  flex: 1;
  min-width: 0;
}

.gk-pay-row__body strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.gk-pay-row__body small {
  display: block;
  font-size: 1rem;
  color: #666;
  margin-top: 2px;
}

.gk-pay-row__amt {
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.gk-pay-row__amt--emi {
  font-size: 1rem;
  max-width: 90px;
  text-align: right;
  line-height: 1.3;
}

.gk-user-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  margin: 14px 0;
  font-size: 1.1rem;
  color: #444;
}

.gk-user-bar strong {
  color: #111;
}

.gk-logout-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  color: #111;
}

.gk-footer {
  text-align: center;
  padding: 16px 8px 8px;
}

.gk-footer__powered {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #888;
}

.gk-footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
  background: transparent;
}

.gk-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 12px;
}

.gk-footer__legal {
  margin: 0;
  font-size: 0.95rem;
  color: #999;
  line-height: 1.5;
}

.gk-footer__legal a {
  color: #555;
  text-decoration: underline;
}

.checkout-success {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-success.hidden {
  display: none;
}

.checkout-success__card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
}

.checkout-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2db872;
  color: #fff;
  font-size: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.checkout-success__card h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading-family);
  font-size: 2rem;
}

.checkout-success__card p {
  margin: 0 0 20px;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .gk-field-row {
    grid-template-columns: 1fr;
  }

  .gokwik-logo__icon {
    width: min(118px, 34vw);
  }

  .gokwik-splash__text {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }

  .gokwik-logo {
    margin-bottom: 40px;
  }

  .gokwik-splash__brand-img {
    width: 88px;
  }
}
