/** Shopify CDN: Minification failed

Line 2820:8 Unexpected "{"
Line 2820:17 Expected ":"
Line 2820:24 Unexpected "{"

**/
/* ============================================================
   PREMIUM STORE — Global Styles
   Base: Dawn 15.5.0 | Dropshipping MX | Mobile-first
   ============================================================ */

/* ── Premium CSS Variables ───────────────────────────────── */
:root {
  /* Brand */
  --ps-primary:       #0f0f0f;
  --ps-primary-light: #1a1a1a;
  --ps-accent:        #e63946;
  --ps-accent-hover:  #c1121f;
  --ps-success:       #2d6a4f;
  --ps-warning:       #f4a261;

  /* Neutrals */
  --ps-white:         #ffffff;
  --ps-off-white:     #f8f8f8;
  --ps-border:        #e8e8e8;
  --ps-border-dark:   #d0d0d0;
  --ps-muted:         #6b7280;
  --ps-muted-light:   #9ca3af;

  /* Typography */
  --ps-font-xs:   1.1rem;
  --ps-font-sm:   1.3rem;
  --ps-font-base: 1.5rem;
  --ps-font-md:   1.7rem;
  --ps-font-lg:   2rem;
  --ps-font-xl:   2.4rem;
  --ps-font-2xl:  3rem;
  --ps-font-3xl:  3.8rem;
  --ps-font-4xl:  4.8rem;

  /* Spacing */
  --ps-space-xs:  0.4rem;
  --ps-space-sm:  0.8rem;
  --ps-space-md:  1.6rem;
  --ps-space-lg:  2.4rem;
  --ps-space-xl:  4rem;
  --ps-space-2xl: 6rem;
  --ps-space-3xl: 8rem;

  /* Borders */
  --ps-radius-sm: 4px;
  --ps-radius-md: 8px;
  --ps-radius-lg: 12px;
  --ps-radius-xl: 20px;
  --ps-radius-pill: 100px;

  /* Shadows */
  --ps-shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --ps-shadow-md:  0 4px 12px rgba(0,0,0,.1);
  --ps-shadow-lg:  0 10px 30px rgba(0,0,0,.12);
  --ps-shadow-xl:  0 20px 60px rgba(0,0,0,.15);

  /* Transitions */
  --ps-transition: 200ms ease;
  --ps-transition-slow: 350ms ease;

  /* Announcement bar */
  --ps-bar-bg:    #0f0f0f;
  --ps-bar-text:  #ffffff;
  --ps-bar-height: 4rem;

  /* Section spacing */
  --ps-section-padding-mobile: 3.2rem 1.6rem;
  --ps-section-padding-desktop: 5rem 2rem;
}

/* ── Reset / Global ──────────────────────────────────────── */
.ps-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Buttons ─────────────────────────────────────────────── */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 2.8rem;
  font-size: var(--ps-font-base);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--ps-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ps-transition);
  white-space: nowrap;
  line-height: 1;
}

.ps-btn--primary {
  background: var(--ps-primary);
  color: var(--ps-white);
  border-color: var(--ps-primary);
}
.ps-btn--primary:hover {
  background: var(--ps-primary-light);
  border-color: var(--ps-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--ps-shadow-md);
}

.ps-btn--accent {
  background: var(--ps-accent);
  color: var(--ps-white);
  border-color: var(--ps-accent);
}
.ps-btn--accent:hover {
  background: var(--ps-accent-hover);
  border-color: var(--ps-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230,57,70,.35);
}

.ps-btn--outline {
  background: transparent;
  color: var(--ps-primary);
  border-color: var(--ps-primary);
}
.ps-btn--outline:hover {
  background: var(--ps-primary);
  color: var(--ps-white);
}

.ps-btn--outline-white {
  background: transparent;
  color: var(--ps-white);
  border-color: rgba(255,255,255,.6);
}
.ps-btn--outline-white:hover {
  background: var(--ps-white);
  color: var(--ps-primary);
  border-color: var(--ps-white);
}

.ps-btn--lg {
  padding: 1.8rem 3.6rem;
  font-size: var(--ps-font-md);
}

.ps-btn--full {
  width: 100%;
}

/* ── Section Wrappers ────────────────────────────────────── */
.ps-section {
  padding: var(--ps-section-padding-mobile);
}

@media screen and (min-width: 990px) {
  .ps-section {
    padding: var(--ps-section-padding-desktop);
  }
}

.ps-container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}

@media screen and (min-width: 750px) {
  .ps-container { padding: 0 3.2rem; }
}

@media screen and (min-width: 990px) {
  .ps-container { padding: 0 4rem; }
}

.ps-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.ps-section__eyebrow {
  display: inline-block;
  font-size: var(--ps-font-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ps-accent);
  margin-bottom: 1.2rem;
}

.ps-section__title {
  font-size: var(--ps-font-2xl);
  font-weight: 700;
  color: var(--ps-primary);
  line-height: 1.2;
  margin: 0 0 1.2rem;
}

.ps-section__subtitle {
  font-size: var(--ps-font-base);
  color: var(--ps-muted);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media screen and (min-width: 990px) {
  .ps-section__title { font-size: var(--ps-font-3xl); }
}

/* ── Announcement Bar ────────────────────────────────────── */
.ps-announcement-bar {
  background: var(--ps-bar-bg);
  color: var(--ps-bar-text);
  height: var(--ps-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.ps-announcement-bar__track {
  display: flex;
  align-items: center;
  gap: 6rem;
  white-space: nowrap;
  animation: ps-marquee 28s linear infinite;
}

.ps-announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--ps-font-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ps-announcement-bar__item svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.ps-announcement-bar__separator {
  color: rgba(255,255,255,.3);
  font-size: 1.8rem;
}

@keyframes ps-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero Section ────────────────────────────────────────── */
.ps-hero {
  position: relative;
  min-height: 56rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ps-primary);
}

.ps-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ps-hero__media img,
.ps-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ps-hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 64rem;
  width: 100%;
}

.ps-hero--center .ps-hero__content { margin: 0 auto; text-align: center; }
.ps-hero--left .ps-hero__content   { text-align: left; }

.ps-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: var(--ps-radius-pill);
  font-size: var(--ps-font-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.ps-hero__title {
  font-size: var(--ps-font-3xl);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.6rem;
  letter-spacing: -0.02em;
}

.ps-hero__subtitle {
  font-size: var(--ps-font-md);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin: 0 0 3.2rem;
  max-width: 48rem;
}

.ps-hero--center .ps-hero__subtitle { margin-left: auto; margin-right: auto; }

.ps-hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

.ps-hero--center .ps-hero__actions { justify-content: center; }

.ps-hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.ps-hero--center .ps-hero__trust { justify-content: center; }

.ps-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.8);
  font-size: var(--ps-font-xs);
  font-weight: 500;
}

.ps-hero__trust-item svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #4ade80;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .ps-hero { min-height: 64rem; }
  .ps-hero__title { font-size: var(--ps-font-4xl); }
  .ps-hero__content { padding: 8rem 4rem; }
}

@media screen and (min-width: 990px) {
  .ps-hero { min-height: 72rem; }
  .ps-hero__content { padding: 10rem 6rem; }
}

/* ── Trust Badges ────────────────────────────────────────── */
.ps-trust-badges {
  padding: 3.2rem 0;
  background: var(--ps-off-white);
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}

.ps-trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media screen and (min-width: 750px) {
  .ps-trust-badges__grid { grid-template-columns: repeat(4, 1fr); }
}

@media screen and (min-width: 990px) {
  .ps-trust-badges__grid { grid-template-columns: repeat(5, 1fr); }
}

.ps-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.ps-trust-badge__icon {
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-md);
  box-shadow: var(--ps-shadow-sm);
  padding: 0.8rem;
}

.ps-trust-badge__icon svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--ps-primary);
}

.ps-trust-badge__title {
  font-size: var(--ps-font-sm);
  font-weight: 700;
  color: var(--ps-primary);
  line-height: 1.3;
}

.ps-trust-badge__desc {
  font-size: var(--ps-font-xs);
  color: var(--ps-muted);
  line-height: 1.4;
}

/* ── Featured Collections ────────────────────────────────── */
.ps-collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media screen and (min-width: 750px) {
  .ps-collections-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
}

@media screen and (min-width: 990px) {
  .ps-collections-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.ps-collection-card {
  position: relative;
  border-radius: var(--ps-radius-md);
  overflow: hidden;
  background: var(--ps-primary);
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  transition: transform var(--ps-transition), box-shadow var(--ps-transition);
}

.ps-collection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ps-shadow-lg);
}

.ps-collection-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ps-transition-slow);
}

.ps-collection-card:hover .ps-collection-card__img {
  transform: scale(1.04);
}

.ps-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}

.ps-collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.6rem 1.6rem;
  color: #fff;
}

.ps-collection-card__title {
  font-size: var(--ps-font-lg);
  font-weight: 700;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.ps-collection-card__desc {
  font-size: var(--ps-font-xs);
  color: rgba(255,255,255,.8);
  margin: 0 0 1.2rem;
  line-height: 1.4;
}

.ps-collection-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--ps-font-sm);
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 0.6rem 1.4rem;
  border-radius: var(--ps-radius-pill);
  transition: background var(--ps-transition);
  backdrop-filter: blur(4px);
}

.ps-collection-card:hover .ps-collection-card__cta {
  background: rgba(255,255,255,.25);
}

.ps-collection-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-collection-card__placeholder svg {
  width: 6rem;
  height: 6rem;
  color: rgba(255,255,255,.35);
}

/* ── Premium Logo ─────────────────────────────────────────── */
.ps-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  user-select: none;
}

.ps-logo__icon {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ps-accent);
  flex-shrink: 0;
}

.ps-logo__text {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ps-logo__brand {
  color: var(--ps-primary);
}

.ps-logo__accent {
  color: var(--ps-accent);
}

@media (max-width: 749px) {
  .ps-logo__text {
    font-size: 1.9rem;
  }
  .ps-logo__icon {
    width: 2.2rem;
    height: 2.2rem;
  }
}

/* ── Category-specific gradient placeholders */
.ps-col-placeholder--salud {
  background: linear-gradient(135deg, #134e4a 0%, #0d9488 50%, #5eead4 100%);
}
.ps-col-placeholder--belleza {
  background: linear-gradient(135deg, #4a1942 0%, #9d174d 50%, #f472b6 100%);
}
.ps-col-placeholder--cocina {
  background: linear-gradient(135deg, #431407 0%, #c2410c 50%, #fb923c 100%);
}
.ps-col-placeholder--bienestar {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 50%, #60a5fa 100%);
}

/* ── Premium Product Card ────────────────────────────────── */
.ps-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media screen and (min-width: 750px) {
  .ps-product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
}

@media screen and (min-width: 990px) {
  .ps-product-grid { gap: 2rem; }
}

.ps-product-card {
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-md);
  overflow: hidden;
  transition: box-shadow var(--ps-transition), transform var(--ps-transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ps-product-card:hover {
  box-shadow: var(--ps-shadow-lg);
  transform: translateY(-2px);
}

.ps-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--ps-off-white);
}

.ps-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ps-transition-slow), opacity var(--ps-transition);
  display: block;
}

.ps-product-card__img--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.ps-product-card:hover .ps-product-card__img--primary { opacity: 0; }
.ps-product-card:hover .ps-product-card__img--secondary { opacity: 1; }

.ps-product-card__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
}

.ps-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--ps-radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.ps-badge--sale {
  background: var(--ps-accent);
  color: #fff;
}

.ps-badge--best {
  background: var(--ps-primary);
  color: #fff;
}

.ps-badge--new {
  background: #16a34a;
  color: #fff;
}

.ps-badge--custom {
  background: #7c3aed;
  color: #fff;
}

.ps-badge--soldout {
  background: var(--ps-muted);
  color: #fff;
}

.ps-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--ps-transition);
}

.ps-product-card:hover .ps-product-card__quick-add {
  transform: translateY(0);
}

.ps-product-card__quick-add .ps-btn {
  width: 100%;
  padding: 1rem 1.6rem;
  font-size: var(--ps-font-sm);
}

.ps-product-card__info {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ps-product-card__title {
  font-size: var(--ps-font-sm);
  font-weight: 600;
  color: var(--ps-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.ps-product-card__title:hover { text-decoration: underline; }

.ps-product-card__benefit {
  font-size: var(--ps-font-xs);
  color: var(--ps-muted);
  line-height: 1.4;
}

.ps-product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ps-product-card__stars {
  display: flex;
  gap: 0.2rem;
}

.ps-product-card__stars svg {
  width: 1.2rem;
  height: 1.2rem;
  color: #f59e0b;
  fill: currentColor;
}

.ps-product-card__rating-text {
  font-size: 1rem;
  color: var(--ps-muted);
}

.ps-product-card__pricing {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.ps-price--current {
  font-size: var(--ps-font-md);
  font-weight: 700;
  color: var(--ps-primary);
}

.ps-price--current.is-sale {
  color: var(--ps-accent);
}

.ps-price--compare {
  font-size: var(--ps-font-sm);
  color: var(--ps-muted);
  text-decoration: line-through;
}

.ps-price--saving {
  font-size: var(--ps-font-xs);
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 0.2rem 0.6rem;
  border-radius: var(--ps-radius-sm);
}

/* ── How It Works ────────────────────────────────────────── */
.ps-how-it-works {
  background: var(--ps-off-white);
}

.ps-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  position: relative;
}

@media screen and (min-width: 750px) {
  .ps-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (min-width: 990px) {
  .ps-steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.ps-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-lg);
  padding: 2.4rem;
}

.ps-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--ps-primary);
  color: #fff;
  font-size: var(--ps-font-lg);
  font-weight: 800;
  flex-shrink: 0;
}

.ps-step__icon {
  width: 4.8rem;
  height: 4.8rem;
  color: var(--ps-primary);
}

.ps-step__title {
  font-size: var(--ps-font-md);
  font-weight: 700;
  color: var(--ps-primary);
  margin: 0;
}

.ps-step__desc {
  font-size: var(--ps-font-sm);
  color: var(--ps-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Social Proof ────────────────────────────────────────── */
.ps-social-proof {
  background: var(--ps-white);
}

.ps-rating-summary {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.ps-rating-summary__score {
  font-size: 5rem;
  font-weight: 800;
  color: var(--ps-primary);
  line-height: 1;
}

.ps-rating-summary__stars {
  display: flex;
  gap: 0.4rem;
}

.ps-rating-summary__stars svg {
  width: 2.4rem;
  height: 2.4rem;
  color: #f59e0b;
  fill: currentColor;
}

.ps-rating-summary__label {
  font-size: var(--ps-font-sm);
  color: var(--ps-muted);
  line-height: 1.4;
}

.ps-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media screen and (min-width: 750px) {
  .ps-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (min-width: 990px) {
  .ps-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.ps-testimonial {
  background: var(--ps-off-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-lg);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ps-testimonial__stars {
  display: flex;
  gap: 0.3rem;
}

.ps-testimonial__stars svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #f59e0b;
  fill: currentColor;
}

.ps-testimonial__text {
  font-size: var(--ps-font-sm);
  color: var(--ps-primary);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.ps-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ps-testimonial__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--ps-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ps-font-base);
  font-weight: 700;
  flex-shrink: 0;
}

.ps-testimonial__name {
  font-size: var(--ps-font-sm);
  font-weight: 700;
  color: var(--ps-primary);
}

.ps-testimonial__location {
  font-size: var(--ps-font-xs);
  color: var(--ps-muted);
}

.ps-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  color: #16a34a;
  font-weight: 600;
}

.ps-verified-badge svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

/* ── Why Buy From Us ─────────────────────────────────────── */
.ps-why-buy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media screen and (min-width: 750px) {
  .ps-why-buy__grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (min-width: 990px) {
  .ps-why-buy__grid { grid-template-columns: repeat(3, 1fr); }
}

.ps-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2rem;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-lg);
  background: var(--ps-white);
  transition: box-shadow var(--ps-transition);
}

.ps-why-item:hover {
  box-shadow: var(--ps-shadow-md);
}

.ps-why-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: var(--ps-radius-md);
  background: var(--ps-off-white);
  border: 1px solid var(--ps-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-why-item__icon svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--ps-primary);
}

.ps-why-item__title {
  font-size: var(--ps-font-base);
  font-weight: 700;
  color: var(--ps-primary);
  margin: 0 0 0.4rem;
}

.ps-why-item__desc {
  font-size: var(--ps-font-sm);
  color: var(--ps-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.ps-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 80rem;
  margin: 0 auto;
}

.ps-faq__item {
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-md);
  overflow: hidden;
  background: var(--ps-white);
}

.ps-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  cursor: pointer;
  text-align: left;
  font-size: var(--ps-font-base);
  font-weight: 600;
  color: var(--ps-primary);
  transition: background var(--ps-transition);
}

.ps-faq__question:hover { background: var(--ps-off-white); }

.ps-faq__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  transition: transform var(--ps-transition);
  color: var(--ps-muted);
}

.ps-faq__item.is-open .ps-faq__icon { transform: rotate(180deg); }

.ps-faq__answer {
  display: none;
  padding: 0 2.4rem 2rem;
  font-size: var(--ps-font-sm);
  color: var(--ps-muted);
  line-height: 1.7;
}

.ps-faq__item.is-open .ps-faq__answer { display: block; }

/* ── Product Spotlight ───────────────────────────────────── */
.ps-spotlight {
  background: var(--ps-off-white);
}

.ps-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media screen and (min-width: 990px) {
  .ps-spotlight__inner { grid-template-columns: 1fr 1fr; }
}

.ps-spotlight__media {
  border-radius: var(--ps-radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--ps-border);
}

.ps-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-spotlight__content { display: flex; flex-direction: column; gap: 2rem; }

.ps-spotlight__eyebrow {
  font-size: var(--ps-font-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-accent);
}

.ps-spotlight__title {
  font-size: var(--ps-font-2xl);
  font-weight: 800;
  color: var(--ps-primary);
  line-height: 1.2;
  margin: 0;
}

.ps-spotlight__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-spotlight__benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--ps-font-base);
  color: var(--ps-primary);
}

.ps-spotlight__benefit::before {
  content: '';
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ps-primary);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.ps-spotlight__pricing {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.ps-spotlight__price {
  font-size: var(--ps-font-3xl);
  font-weight: 800;
  color: var(--ps-primary);
}

.ps-spotlight__compare {
  font-size: var(--ps-font-lg);
  color: var(--ps-muted);
  text-decoration: line-through;
}

.ps-spotlight__saving {
  font-size: var(--ps-font-sm);
  font-weight: 700;
  color: #fff;
  background: #16a34a;
  padding: 0.4rem 1rem;
  border-radius: var(--ps-radius-pill);
}

/* ── Scarcity / Offer ────────────────────────────────────── */
.ps-scarcity {
  background: var(--ps-primary);
  color: #fff;
}

.ps-scarcity .ps-section__title { color: #fff; }
.ps-scarcity .ps-section__subtitle { color: rgba(255,255,255,.7); }
.ps-scarcity .ps-section__eyebrow { color: #fbbf24; }

.ps-scarcity__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  text-align: center;
}

@media screen and (min-width: 990px) {
  .ps-scarcity__inner { flex-direction: row; text-align: left; align-items: flex-start; }
}

.ps-scarcity__content { flex: 1; }

.ps-scarcity__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(251,191,36,.15);
  border: 1px solid rgba(251,191,36,.3);
  color: #fbbf24;
  padding: 0.8rem 1.6rem;
  border-radius: var(--ps-radius-pill);
  font-size: var(--ps-font-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.ps-countdown {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 990px) {
  .ps-countdown { justify-content: flex-start; }
}

.ps-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ps-radius-md);
  padding: 1.2rem 1.6rem;
  min-width: 6rem;
}

.ps-countdown__num {
  font-size: var(--ps-font-2xl);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ps-countdown__label {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.ps-countdown__separator {
  font-size: var(--ps-font-2xl);
  font-weight: 800;
  color: rgba(255,255,255,.4);
  align-self: center;
  padding-bottom: 2rem;
}

/* ── Newsletter / WhatsApp ───────────────────────────────── */
.ps-newsletter {
  background: var(--ps-off-white);
}

.ps-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media screen and (min-width: 990px) {
  .ps-newsletter__inner { grid-template-columns: 1fr 1fr; }
}

.ps-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 48rem;
}

.ps-newsletter__input {
  flex: 1;
  padding: 1.4rem 2rem;
  border: 2px solid var(--ps-border-dark);
  border-right: none;
  border-radius: var(--ps-radius-sm) 0 0 var(--ps-radius-sm);
  font-size: var(--ps-font-base);
  color: var(--ps-primary);
  background: var(--ps-white);
  outline: none;
  transition: border-color var(--ps-transition);
}

.ps-newsletter__input:focus { border-color: var(--ps-primary); }
.ps-newsletter__input::placeholder { color: var(--ps-muted-light); }

.ps-newsletter__submit {
  border-radius: 0 var(--ps-radius-sm) var(--ps-radius-sm) 0;
  white-space: nowrap;
}

.ps-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2.8rem;
  background: #25d366;
  color: #fff;
  font-size: var(--ps-font-base);
  font-weight: 700;
  border-radius: var(--ps-radius-sm);
  text-decoration: none;
  transition: all var(--ps-transition);
  border: 2px solid #25d366;
}

.ps-whatsapp-cta:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
}

.ps-whatsapp-cta svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

/* ── Collection Hero ─────────────────────────────────────── */
.ps-collection-hero {
  position: relative;
  min-height: 32rem;
  display: flex;
  align-items: center;
  background: var(--ps-primary);
  overflow: hidden;
}

.ps-collection-hero__media {
  position: absolute;
  inset: 0;
}

.ps-collection-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 100%);
}

.ps-collection-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 4rem 2rem;
}

.ps-collection-hero__eyebrow {
  display: inline-block;
  font-size: var(--ps-font-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}

.ps-collection-hero__title {
  font-size: var(--ps-font-3xl);
  font-weight: 800;
  margin: 0 0 1.2rem;
  line-height: 1.15;
}

.ps-collection-hero__desc {
  font-size: var(--ps-font-md);
  color: rgba(255,255,255,.8);
  max-width: 56rem;
  line-height: 1.6;
  margin: 0 0 2.4rem;
}

.ps-collection-hero__trust {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.ps-collection-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--ps-font-sm);
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

.ps-collection-hero__trust-item svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #4ade80;
}

@media screen and (min-width: 990px) {
  .ps-collection-hero { min-height: 40rem; }
  .ps-collection-hero__title { font-size: var(--ps-font-4xl); }
  .ps-collection-hero__content { padding: 6rem 4rem; }
}

/* ── Product Page Enhancements ───────────────────────────── */
.ps-product-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  background: var(--ps-off-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-md);
  margin: 1.6rem 0;
}

.ps-product-trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--ps-font-sm);
  color: var(--ps-primary);
  font-weight: 500;
}

.ps-product-trust__item svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--ps-success);
  flex-shrink: 0;
}

.ps-product-urgency {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--ps-radius-md);
  font-size: var(--ps-font-sm);
  color: #9a3412;
  font-weight: 600;
  margin: 1.2rem 0;
}

.ps-product-urgency svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--ps-warning);
  flex-shrink: 0;
}

.ps-product-microcopy {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--ps-font-sm);
  color: var(--ps-success);
  font-weight: 600;
  margin-top: 1.2rem;
}

.ps-product-microcopy svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
  flex-shrink: 0;
}

.ps-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ps-white);
  border-top: 1px solid var(--ps-border);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(100%);
  transition: transform var(--ps-transition);
}

.ps-sticky-atc.is-visible { transform: translateY(0); }

.ps-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 120rem;
  margin: 0 auto;
}

.ps-sticky-atc__title {
  font-size: var(--ps-font-sm);
  font-weight: 600;
  color: var(--ps-primary);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-sticky-atc__price {
  font-size: var(--ps-font-md);
  font-weight: 700;
  color: var(--ps-primary);
  white-space: nowrap;
}

.ps-sticky-atc__btn {
  flex-shrink: 0;
}

@media screen and (min-width: 990px) {
  .ps-sticky-atc { display: none; }
}

/* ── Cart Drawer Enhancements ────────────────────────────── */
.ps-cart-progress {
  padding: 1.6rem;
  background: var(--ps-off-white);
  border-bottom: 1px solid var(--ps-border);
}

.ps-cart-progress__bar-wrap {
  height: 6px;
  background: var(--ps-border);
  border-radius: var(--ps-radius-pill);
  overflow: hidden;
  margin: 0.8rem 0;
}

.ps-cart-progress__bar {
  height: 100%;
  background: #16a34a;
  border-radius: var(--ps-radius-pill);
  transition: width 0.5s ease;
}

.ps-cart-progress__text {
  font-size: var(--ps-font-xs);
  color: var(--ps-muted);
  text-align: center;
  font-weight: 500;
}

.ps-cart-progress__text strong { color: var(--ps-success); }

.ps-cart-cod {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
  font-size: var(--ps-font-sm);
  color: #166534;
  font-weight: 600;
}

.ps-cart-cod svg {
  width: 1.8rem;
  height: 1.8rem;
  color: #16a34a;
  flex-shrink: 0;
}

/* ── Cross-sell Section ──────────────────────────────────── */
.ps-cross-sell {
  border-top: 1px solid var(--ps-border);
  padding: 6rem 0;
}

/* ── Page: Track Order ───────────────────────────────────── */
.ps-track-order {
  max-width: 64rem;
  margin: 0 auto;
}

.ps-track-order__card {
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-lg);
  padding: 3.2rem;
  box-shadow: var(--ps-shadow-md);
}

.ps-track-order__timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.4rem 0;
}

.ps-track-order__step {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.ps-track-order__step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--ps-off-white);
  border: 2px solid var(--ps-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-track-order__step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--ps-muted);
}

/* ── Footer Premium ──────────────────────────────────────── */
.ps-footer {
  background: var(--ps-primary);
  color: rgba(255,255,255,.7);
  padding: 6rem 0 0;
}

.ps-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media screen and (min-width: 750px) {
  .ps-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media screen and (min-width: 990px) {
  .ps-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.ps-footer__brand-desc {
  font-size: var(--ps-font-sm);
  line-height: 1.7;
  margin: 1.6rem 0;
  max-width: 32rem;
}

.ps-footer__trust {
  font-size: var(--ps-font-xs);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ps-footer__trust svg { width: 1.4rem; height: 1.4rem; color: #4ade80; }

.ps-footer__col-title {
  font-size: var(--ps-font-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.ps-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-footer__link {
  text-decoration: none;
  color: rgba(255,255,255,.65);
  font-size: var(--ps-font-sm);
  transition: color var(--ps-transition);
}

.ps-footer__link:hover { color: #fff; }

.ps-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 2.4rem 0;
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
}

.ps-footer__copy {
  font-size: var(--ps-font-xs);
  color: rgba(255,255,255,.4);
}

.ps-footer__payments {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.ps-footer__payment-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--ps-radius-sm);
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.04em;
}

/* ── Utility ─────────────────────────────────────────────── */
.ps-text-center { text-align: center; }
.ps-text-muted  { color: var(--ps-muted); }
.ps-mb-md       { margin-bottom: var(--ps-space-md); }
.ps-mb-lg       { margin-bottom: var(--ps-space-lg); }
.ps-mt-lg       { margin-top: var(--ps-space-lg); }
.ps-gap-sm      { gap: var(--ps-space-sm); }

.ps-empty-state {
  padding: 4rem;
  text-align: center;
  color: var(--ps-muted);
  border: 2px dashed var(--ps-border);
  border-radius: var(--ps-radius-lg);
}

.ps-empty-state svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.6rem;
  color: var(--ps-border-dark);
}

.ps-empty-state p { margin: 0; font-size: var(--ps-font-sm); }

/* Dawn section spacing override */
.shopify-section + .shopify-section { margin-top: 0; }

/* ============================================================
   PRODUCT PAGE — Premium CRO Blocks
   ============================================================ */

/* COD Badge */
.ps-product-cod-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.4rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--ps-radius-md);
  font-size: var(--ps-font-sm);
  font-weight: 600;
  color: #166534;
  margin: 1.2rem 0;
}

.ps-product-cod-badge svg {
  flex-shrink: 0;
  color: #16a34a;
}

/* Trust Row Inline */
.ps-product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  padding: 1.2rem 0;
  margin: 0.4rem 0 1.2rem;
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}

.ps-product-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ps-muted);
}

.ps-product-trust-item svg {
  flex-shrink: 0;
  color: var(--ps-primary);
}

/* Urgency Badge */
.ps-product-urgency {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: var(--ps-radius-md);
  font-size: 1.25rem;
  font-weight: 600;
  color: #c2410c;
  margin: 1rem 0;
}

.ps-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: psPulse 1.5s infinite;
}

@keyframes psPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Scarcity Badge */
.ps-product-scarcity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ps-muted);
  margin: 0.6rem 0;
  padding: 0.7rem 1rem;
  background: var(--ps-off-white);
  border-radius: var(--ps-radius-sm);
}

.ps-product-scarcity svg {
  flex-shrink: 0;
  color: var(--ps-muted);
}

/* WhatsApp Product CTA */
.ps-btn-whatsapp-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.2rem 2rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--ps-radius-md);
  font-size: var(--ps-font-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0.8rem 0;
}

.ps-btn-whatsapp-product:hover {
  background: #1da851;
  color: #fff;
}

/* ── Sticky ATC Bar ──────────────────────────────────────────── */
.ps-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 2px solid var(--ps-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ps-sticky-atc.is-visible {
  transform: translateY(0);
}

.ps-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2rem;
}

.ps-sticky-atc__product {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.ps-sticky-atc__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--ps-radius-sm);
  border: 1px solid var(--ps-border);
  flex-shrink: 0;
}

.ps-sticky-atc__info { min-width: 0; }

.ps-sticky-atc__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ps-primary);
}

.ps-sticky-atc__price {
  font-size: 1.2rem;
  margin: 0;
  color: var(--ps-muted);
}

.ps-sticky-atc__price strong {
  color: var(--ps-accent);
  font-weight: 700;
}

.ps-sticky-atc__price s {
  font-size: 1.1rem;
  color: var(--ps-muted-light);
  text-decoration: line-through;
}

.ps-sticky-atc__form { display: flex; }

.ps-sticky-atc__btn {
  white-space: nowrap;
  padding: 1rem 1.8rem;
  font-size: 1.3rem;
  background: var(--ps-primary);
  color: #fff;
  border: none;
  border-radius: var(--ps-radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.ps-sticky-atc__btn:hover:not(:disabled) { background: var(--ps-primary-light); }

.ps-sticky-atc__btn--sold-out {
  background: var(--ps-muted-light);
  cursor: not-allowed;
}

/* Show only on mobile by default */
@media (min-width: 990px) {
  .ps-sticky-atc { display: none; }
}

/* ── Buy button full width on mobile ──────────────────────────── */
@media (max-width: 749px) {
  [id^="ps-atc-anchor-"] .product-form__submit,
  .product-form__buttons .product-form__submit {
    width: 100%;
  }

  .product-form__buttons {
    flex-direction: column;
  }
}

/* ── Product page layout improvements ─────────────────────────── */
.product__info-container .ps-product-cod-badge,
.product__info-container .ps-product-trust-row,
.product__info-container .ps-product-urgency,
.product__info-container .ps-product-scarcity,
.product__info-container .ps-btn-whatsapp-product {
  max-width: 100%;
}

/* Make buy button larger and more CRO-friendly */
.product-form__submit {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  padding: 1.6rem 3rem !important;
}

@media (max-width: 749px) {
  .product-form__submit {
    font-size: 1.5rem !important;
    padding: 1.4rem 2rem !important;
  }
}

/* ── Homepage Hero enhancements ───────────────────────────────── */
.ps-hero {
  position: relative;
  overflow: hidden;
}

/* Fix trust badges section spacing */
.shopify-section:has(.ps-trust-bar) {
  margin: 0 !important;
}

/* ── Product Description Premium Rendering ────────────────────── */
.product__description h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 2.4rem 0 1.2rem;
  color: var(--ps-primary);
}

.product__description h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.product__description p {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 1.2rem;
}

.product__description ul,
.product__description ol {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #374151;
  padding-left: 1.8rem;
}

.product__description table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
  margin: 1.6rem 0;
}

.product__description table th {
  background: var(--ps-primary);
  color: #fff;
  padding: 0.8rem 1.2rem;
  text-align: left;
}

.product__description table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--ps-border);
}

.product__description table tr:nth-child(even) td {
  background: var(--ps-off-white);
}

.product__description details {
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.product__description details summary {
  padding: 1.2rem 1.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--ps-off-white);
  color: var(--ps-primary);
  list-style: none;
}

.product__description details[open] summary {
  border-bottom: 1px solid var(--ps-border);
}

.product__description details p {
  padding: 1.2rem 1.4rem;
  margin: 0;
}

/* ── Description AIDA Funnel — responsive fixes ─────────── */
.product__description details summary {
  display: block;
}
.product__description details summary::-webkit-details-marker {
  display: none;
}
.product__description details summary::after {
  content: '+';
  float: right;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ps-muted);
  transition: transform 0.2s;
}
.product__description details[open] summary::after {
  content: '−';
}
/* Description grid responsive */
@media (max-width: 480px) {
  .product__description [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .product__description [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Product page overall padding improvement */
.product__info-container {
  padding-bottom: 2rem;
}

/* Make the main buy button stand out more */
.product-form__submit:not([disabled]) {
  background: var(--ps-primary) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
}

.product-form__submit:not([disabled]):hover {
  background: var(--ps-primary-light) !important;
  opacity: 0.95;
}

/* Sold out state */
.product-form__submit[disabled] {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  cursor: not-allowed !important;
}

/* ═══════════════════════════════════════════════════════════
   CART DRAWER — CRO PREMIUM
   ═══════════════════════════════════════════════════════════ */

/* Header */
.ps-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.ps-drawer-header__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ps-drawer-header__title .drawer__heading {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}
.ps-cart-count-badge {
  background: var(--ps-primary, #e63946);
  color: #fff;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  line-height: 1;
}

/* Progress bar */
.ps-cart-progress {
  padding: 1.2rem 2rem 0.8rem;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ps-cart-progress__label {
  font-size: 1.3rem;
  color: #374151;
  margin-bottom: 0.7rem;
}
.ps-cart-progress__label--done {
  color: #059669;
  font-weight: 600;
}
.ps-cart-progress__bar {
  background: #e5e7eb;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.ps-cart-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #059669, #34d399);
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* Urgency strip */
.ps-cart-urgency {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #fff8e1;
  border-bottom: 1px solid #fde68a;
  font-size: 1.25rem;
  color: #92400e;
  font-weight: 500;
}
.ps-cart-urgency__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Empty cart */
.ps-cart-empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

/* Cross-sell section inside drawer */
.ps-cart-crosssell {
  padding: 1.6rem 2rem;
  background: #f9fafb;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ps-cart-crosssell__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ps-cart-crosssell__title svg {
  color: #f59e0b;
}
.ps-cart-crosssell__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ps-cart-crosssell__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 0.8rem;
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.ps-cart-crosssell__img-link { display: block; }
.ps-cart-crosssell__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.6rem;
  display: block;
}
.ps-cart-crosssell__img-placeholder {
  width: 60px;
  height: 60px;
  background: #f3f4f6;
  border-radius: 0.6rem;
}
.ps-cart-crosssell__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  overflow: hidden;
}
.ps-cart-crosssell__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ps-cart-crosssell__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ps-primary, #e63946);
  margin: 0;
}
.ps-cart-crosssell__btn {
  background: var(--ps-primary, #e63946);
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ps-cart-crosssell__btn:hover { background: #c0392b; }
.ps-cart-crosssell__soldout {
  font-size: 1.1rem;
  color: #9ca3af;
  white-space: nowrap;
  flex-shrink: 0;
}
.ps-cart-crosssell__form { margin: 0; }

/* Checkout button CRO */
.ps-cart-ctas {
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ps-cart-checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--ps-primary, #e63946) 0%, #c0392b 100%);
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1.6rem 2rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(230,57,70,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ps-cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,57,70,0.45);
}
.ps-cart-checkout-btn:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.ps-cart-view-link {
  text-align: center;
  font-size: 1.3rem;
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Trust badges in drawer footer */
.ps-cart-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem 1.6rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #f9fafb;
}
.ps-cart-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  color: #6b7280;
  font-weight: 500;
}
.ps-cart-trust__item svg { color: #059669; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   CART PAGE — CRO (main-cart-footer improvements)
   ═══════════════════════════════════════════════════════════ */

/* Make native checkout button premium */
.cart__checkout-button,
#checkout {
  background: linear-gradient(135deg, var(--ps-primary, #e63946) 0%, #c0392b 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 1rem !important;
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(230,57,70,0.3) !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
  padding: 1.6rem 3rem !important;
  width: 100% !important;
}
.cart__checkout-button:hover,
#checkout:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(230,57,70,0.4) !important;
}

/* Cart page totals */
.totals__total {
  font-size: 1.6rem;
  font-weight: 600;
  color: #374151;
}
.totals__total-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111827;
}

/* ═══════════════════════════════════════════════════════════
   CART UPSELL SECTION (cart page)
   ═══════════════════════════════════════════════════════════ */

.ps-cart-upsell-section {
  padding: 4rem 0;
}
.ps-cart-upsell__header {
  text-align: center;
  margin-bottom: 3rem;
}
.ps-cart-upsell__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.8rem;
}
.ps-cart-upsell__sub {
  font-size: 1.5rem;
  color: #6b7280;
  margin: 0;
}
.ps-cart-upsell__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .ps-cart-upsell__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ps-cart-upsell__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }

.ps-cart-upsell__card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ps-cart-upsell__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.ps-cart-upsell__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ps-primary, #e63946);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  z-index: 2;
}
.ps-cart-upsell__img-wrap {
  display: block;
  background: #f3f4f6;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.ps-cart-upsell__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.ps-cart-upsell__card:hover .ps-cart-upsell__img { transform: scale(1.04); }
.ps-cart-upsell__img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-cart-upsell__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.ps-cart-upsell__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ps-cart-upsell__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.ps-cart-upsell__price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ps-primary, #e63946);
}
.ps-cart-upsell__compare {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.ps-cart-upsell__stars {
  font-size: 1.2rem;
  color: #f59e0b;
  margin-top: auto;
}
.ps-cart-upsell__form { margin-top: 0.5rem; }
.ps-cart-upsell__atc {
  width: 100%;
  background: var(--ps-primary, #e63946);
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.ps-cart-upsell__atc:hover { background: #c0392b; transform: translateY(-1px); }
.ps-cart-upsell__atc--out {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}
.ps-cart-upsell__atc--out:hover { transform: none; background: #e5e7eb; }

/* ═══════════════════════════════════════════════════════════
   WHITESPACE FIXES — Product page & Homepage
   ═══════════════════════════════════════════════════════════ */

/* Tighten product social proof section */
.ps-product-sp {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

/* Tighten trust badges section on product page */
.section-trust-badges-bar + .ps-product-sp,
[data-section-type="trust-badges-bar"] {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Hide related-products section if no results are loaded */
.product-recommendations:empty { display: none; }
.related-products:empty { display: none; }

/* Reduce Dawn related-products section padding */
.related-products .section-full-width,
.product-recommendations { padding: 2rem 0; }

/* Remove extra margin from product page sections */
.product .product__info-container { padding-bottom: 1rem; }
.section-main-product .page-width { padding-bottom: 0; }

/* Reduce homepage section gaps — Why Buy, How It Works */
.ps-how-it-works.ps-section,
.ps-why-buy.ps-section {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

/* Fix gap below social proof on homepage */
.ps-social-proof.ps-section {
  padding-bottom: 2rem !important;
}

/* Remove bottom margin from why-buy last item */
.ps-why-buy__grid { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   FEATURE PILLS (grytfit-inspired, above ATC)
   ═══════════════════════════════════════════════════════════ */

.ps-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0.8rem 0;
}

.ps-product-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #166534;
  white-space: nowrap;
  line-height: 1;
}

.ps-feature-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

@media (max-width: 749px) {
  .ps-product-features {
    gap: 0.6rem;
  }
  .ps-product-feature-pill {
    font-size: 1.15rem;
    padding: 0.5rem 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAYMENT LOGOS (replace "Más opciones de pago")
   ═══════════════════════════════════════════════════════════ */

.ps-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0 0.4rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.ps-payment-methods__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.ps-payment-methods__label svg {
  color: #059669;
  flex-shrink: 0;
}

.ps-payment-methods__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.ps-payment-methods__logos .icon {
  width: 38px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  background: #fff;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ps-payment-methods__logos .icon svg,
.ps-payment-methods__logos .icon img {
  max-width: 34px;
  max-height: 20px;
  object-fit: contain;
}

/* Hide native dynamic checkout "More payment options" link —
   replaced by ps_payment block */
.shopify-payment-button__more-options {
  display: none !important;
}

/* Make ATC the primary style when dynamic checkout is off */
.product-form__submit.button--secondary {
  background: var(--ps-primary, #0f0f0f) !important;
  color: #fff !important;
  border: none !important;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE — Grytfit-inspired layout tweaks
   ═══════════════════════════════════════════════════════════ */

/* Tighten product title */
.product__title h1,
.product__title .h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

/* Reduce space between price and urgency */
#price-{{ section.id }} { margin-bottom: 0.4rem; }
.ps-product-urgency { margin-top: 0.4rem; }

/* Product info compact on desktop */
@media screen and (min-width: 990px) {
  .product__info-container {
    max-width: 520px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT REVIEWS SLIDER
   ═══════════════════════════════════════════════════════════ */

.ps-reviews-slider-section {
  padding: 3.6rem 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.ps-reviews-slider-section .page-width {
  padding-left: 7rem;
  padding-right: 7rem;
}

@media (max-width: 749px) {
  .ps-reviews-slider-section .page-width {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

/* ── Header ── */
.ps-reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.ps-reviews-header__left { flex: 1; min-width: 200px; }

.ps-reviews-header__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin: 0.4rem 0 0;
  line-height: 1.2;
}

/* Aggregate rating block */
.ps-reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1.2rem;
  padding: 1.2rem 2rem;
  flex-shrink: 0;
}

.ps-reviews-agg__score {
  font-size: 4rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.ps-reviews-agg__right {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ps-reviews-agg__stars {
  display: flex;
  gap: 3px;
}

.ps-reviews-agg__count {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
  white-space: nowrap;
}

/* ── Slider wrapper ── */
.ps-reviews-slider {
  position: relative;
  overflow: visible;
  user-select: none;
}

.ps-reviews-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.ps-reviews-slider__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Review Cards ── */
.ps-reviews-slider__card {
  flex: 0 0 calc(33.333% - 1.34rem);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.4rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.ps-reviews-slider__card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Card head: stars + verified */
.ps-reviews-card__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.ps-reviews-card__stars { display: flex; gap: 2px; }

.ps-reviews-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.ps-reviews-card__verified svg { color: #059669; }

/* Review text */
.ps-reviews-card__text {
  font-size: 1.4rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer: avatar + author info */
.ps-reviews-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #f3f4f6;
}

.ps-reviews-card__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #e63946);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-reviews-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  overflow: hidden;
}

.ps-reviews-card__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-reviews-card__location {
  font-size: 1.15rem;
  color: #6b7280;
}

.ps-reviews-card__date {
  font-size: 1.1rem;
  color: #9ca3af;
}

.ps-reviews-card__photo {
  flex-shrink: 0;
}

.ps-reviews-card__photo img {
  width: 40px;
  height: 40px;
  border-radius: 0.6rem;
  object-fit: cover;
}

/* ── Navigation Arrows ── */
.ps-reviews-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ps-reviews-slider__arrow:hover {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.ps-reviews-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ps-reviews-slider__arrow--prev { left: -5.6rem; }
.ps-reviews-slider__arrow--next { right: -5.6rem; }

/* ── Dots ── */
.ps-reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.ps-reviews-slider__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
  padding: 0;
}

.ps-reviews-slider__dot.is-active {
  background: #111827;
  width: 2.4rem;
  border-radius: 999px;
}

/* ── Responsive ── */
@media (max-width: 989px) {
  .ps-reviews-slider__card {
    flex: 0 0 calc(50% - 1rem);
  }
  .ps-reviews-slider__arrow--prev { left: -5.6rem; }
  .ps-reviews-slider__arrow--next { right: -5.6rem; }
}

@media (max-width: 749px) {
  .ps-reviews-slider-section { padding: 2.4rem 0; }
  .ps-reviews-header { flex-direction: column; }
  .ps-reviews-aggregate { width: 100%; }
  .ps-reviews-header__title { font-size: 2rem; }
  .ps-reviews-agg__score { font-size: 3.2rem; }
  .ps-reviews-slider__card {
    flex: 0 0 calc(85% - 1rem);
  }
  .ps-reviews-slider__arrow { display: none; }
  .ps-reviews-card__text { -webkit-line-clamp: 4; }
}
