/* ==========================================================================
   Lumiera — Widgets CSS
   Covers: Shop banner, Builder pastel, Cuidados collapsible,
           About image fix, Wheel modal, Shipping bar, Social proof,
           Exit popup, Cart reminder, Recently viewed, Combos,
           WhatsApp FAB, Campaign countdown, Trust badges
   ========================================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

/* ==========================================================================
   SHOP BANNER — Full image
   ========================================================================== */
.shop-banner-img {
  position: relative;
  padding: 0 !important;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  background: none !important;
}

.shop-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  transition: transform 6s ease;
}

.shop-banner-img:hover .shop-banner-bg {
  transform: scale(1.03);
}

.shop-banner-overlay {
  position: relative;
  z-index: 1;
  padding: 40px 48px;
  background: linear-gradient(to top, rgba(80, 30, 30, 0.65) 0%, transparent 100%);
  width: 100%;
}

.shop-banner-overlay h2 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.shop-banner-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* ==========================================================================
   BUILDER — Rosa Pastel Background & Animations
   ========================================================================== */
.builder-pastel-bg {
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('images/corazones.png') repeat, linear-gradient(135deg,
    #fff5f8 0%,
    #fde8f0 25%,
    #fef0f5 50%,
    #fdf5ff 75%,
    #fff5f8 100%
  ) !important;
  position: relative;
  overflow: hidden;
}

.builder-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.builder-deco-heart {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.45;
  animation: floatHeart 6s ease-in-out infinite;
  will-change: transform;
  user-select: none;
}

@keyframes floatHeart {
  0%, 100% {
    transform: translateY(0) rotate(-5deg) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-18px) rotate(5deg) scale(1.12);
    opacity: 0.65;
  }
}

.builder-deco-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #f9c5d1, #e8a0b0);
  animation: twinkle 3s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(2.2); opacity: 0.15; }
}

/* Ensure builder content is above decoration */
.builder-pastel-bg .builder-hero-banner,
.builder-pastel-bg .builder-container {
  position: relative;
  z-index: 1;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .builder-deco-heart,
  .builder-deco-sparkle {
    animation: none;
  }
}

/* ==========================================================================
   CUIDADOS — Collapsible
   ========================================================================== */
.cuidados-expand-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #fff5f8, #fde8f0);
  border: 1.5px dashed #f9c5d1;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #b05070;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  user-select: none;
  margin-top: 4px;
}

.cuidados-expand-trigger:hover {
  background: linear-gradient(135deg, #fde8f0, #fdd5e5);
  border-color: #e88aaa;
  box-shadow: 0 4px 16px rgba(195, 100, 140, 0.12);
}

.cuidados-trigger-text {
  flex: 1;
}

.cuidados-chevron {
  font-size: 0.9rem;
  transition: transform 0.35s ease;
  color: #c06080;
}

.cuidados-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0;
}

.cuidados-collapsible.open {
  max-height: 1200px;
  opacity: 1;
  padding-top: 8px;
}

/* ==========================================================================
   ABOUT IMAGE — Vertical, no blur, zoom only
   ========================================================================== */
.about-image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  max-height: 600px;
}

.about-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  filter: none !important;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.about-image-wrapper:hover .about-img-el {
  transform: scale(1.09);
  filter: none !important;
}

/* ==========================================================================
   FREE SHIPPING PROGRESS BAR
   ========================================================================== */
.shipping-bar-widget {
  padding: 14px 20px 10px;
  border-bottom: 1px solid rgba(195, 135, 100, 0.12);
  background: linear-gradient(135deg, #fff9f6, #fdf5f0);
}

.shipping-bar-text {
  font-size: 0.82rem;
  color: #5a3a2a;
  margin-bottom: 8px;
  text-align: center;
}

.shipping-bar-text strong {
  color: var(--color-primary, #c38764);
}

.shipping-bar-achieved {
  color: #3a7a42;
  font-weight: 700;
  font-size: 0.88rem;
}

.shipping-bar-track {
  height: 7px;
  background: rgba(195, 135, 100, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.shipping-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #f9c5d1, #c38764);
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 4px;
}

.shipping-bar-fill.achieved {
  background: linear-gradient(to right, #7bd482, #3a9a42);
}

/* ==========================================================================
   SOCIAL PROOF NOTIFICATION
   ========================================================================== */
.social-proof-notif {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(249, 197, 209, 0.6);
  border-radius: 16px;
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(195, 135, 100, 0.18), 0 2px 8px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.social-proof-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.social-proof-text {
  font-size: 0.78rem;
  color: #5a3a2a;
  line-height: 1.45;
  margin: 0;
}

.social-proof-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.social-proof-close:hover { color: #c06080; }

@media (max-width: 480px) {
  .social-proof-notif {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ==========================================================================
   EXIT INTENT POPUP
   ========================================================================== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(80, 30, 30, 0.35);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup-modal {
  background: linear-gradient(145deg, #fff, #fff5f8);
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(195, 100, 140, 0.2), 0 4px 16px rgba(0,0,0,0.08);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.exit-popup-petals {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 8px;
}

.exit-popup-modal h3 {
  font-size: 1.4rem;
  color: #5a2a3a;
  margin-bottom: 12px;
  font-family: var(--font-title, serif);
}

.exit-popup-modal p {
  color: #7a4a5a;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.exit-popup-expiry {
  font-size: 0.78rem !important;
  color: #aaa !important;
  margin-bottom: 20px !important;
}

.exit-popup-cta {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.95rem;
  padding: 14px 20px;
}

.exit-popup-skip {
  background: none;
  border: none;
  color: #aaa;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

.exit-popup-skip:hover { color: #c06080; }

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.exit-popup-close:hover { color: #c06080; }

/* ==========================================================================
   CART REMINDER TOAST
   ========================================================================== */
.cart-reminder-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9500;
  background: linear-gradient(135deg, #fff, #fff5f8);
  border: 1px solid rgba(249, 197, 209, 0.5);
  border-radius: 18px;
  padding: 16px 20px;
  max-width: 320px;
  box-shadow: 0 12px 40px rgba(195, 100, 140, 0.15), 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-reminder-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cart-reminder-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cart-reminder-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #5a2a3a;
  margin: 0 0 4px;
}

.cart-reminder-sub {
  font-size: 0.76rem;
  color: #9a6a7a;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.cart-reminder-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-reminder-actions .btn-link {
  background: none;
  border: none;
  color: #aaa;
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .cart-reminder-toast {
    bottom: 16px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

/* ==========================================================================
   WHEEL MODAL
   ========================================================================== */
.wheel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 20, 35, 0.5);
  backdrop-filter: blur(6px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.wheel-modal {
  background: linear-gradient(145deg, #fff, #fff8fb);
  border-radius: 28px;
  padding: 32px 28px 28px;
  max-width: 420px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 100px rgba(195, 100, 140, 0.22), 0 4px 20px rgba(0,0,0,0.1);
  animation: wheelModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
}

@keyframes wheelModalIn {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Mobile bottom sheet */
@media (max-width: 600px) {
  .wheel-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .wheel-modal {
    border-radius: 28px 28px 0 0;
    max-width: 100%;
    width: 100%;
    max-height: 96vh;
    padding: 28px 20px 24px;
    animation: wheelSheetIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes wheelSheetIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
}

.wheel-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(249, 197, 209, 0.25);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #c06080;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.wheel-close-btn:hover { background: rgba(249, 197, 209, 0.5); }

.wheel-modal-header {
  text-align: center;
  margin-bottom: 16px;
}

.wheel-petals {
  font-size: 1.4rem;
  letter-spacing: 6px;
  margin-bottom: 8px;
}

.wheel-title {
  font-size: 1.3rem;
  color: #5a2a3a;
  margin-bottom: 6px;
  font-family: var(--font-title, serif);
  line-height: 1.3;
}

.wheel-subtitle {
  font-size: 0.85rem;
  color: #9a6a7a;
  line-height: 1.5;
}

/* Canvas */
.wheel-canvas-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 12px 0 16px;
}

#lumiera-wheel,
#lumiera-wheel-spin {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(195, 100, 140, 0.2));
  border-radius: 50%;
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #c06080;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(195, 100, 140, 0.4);
  filter: drop-shadow(0 2px 4px rgba(195, 100, 140, 0.3));
}

/* Form */
.wheel-form-area { display: flex; flex-direction: column; gap: 10px; }

.wheel-field-group { display: flex; flex-direction: column; gap: 4px; }

.wheel-label {
  font-size: 0.78rem;
  color: #9a6a7a;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wheel-select,
.wheel-input {
  width: 100%;
  border: 1.5px solid rgba(249, 197, 209, 0.6);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: #5a2a3a;
  background: rgba(255,255,255,0.9);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.wheel-select:focus,
.wheel-input:focus {
  border-color: #c06080;
  box-shadow: 0 0 0 3px rgba(192, 96, 128, 0.1);
}

.wheel-input-error {
  font-size: 0.75rem;
  color: #d44060;
  font-weight: 500;
  min-height: 16px;
  display: block;
}

.wheel-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.76rem;
  color: #9a6a7a;
  line-height: 1.5;
  cursor: pointer;
}

.wheel-consent-check {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #c06080;
  width: 16px;
  height: 16px;
}

.wheel-spin-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 4px;
  background: linear-gradient(135deg, #f9c5d1, #c38764);
}

.wheel-spin-btn:hover {
  background: linear-gradient(135deg, #e8a0b0, #b07050);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(195, 100, 140, 0.3);
}

.wheel-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.wheel-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: #bbb;
  margin: 0;
}

/* Spinning step */
.wheel-canvas-spinning { margin: 30px auto; }

.wheel-spinning-text {
  text-align: center;
  font-size: 1rem;
  color: #c06080;
  font-family: var(--font-title, serif);
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Result step */
.wheel-result-header { text-align: center; margin-bottom: 16px; }

.wheel-result-petals {
  position: relative;
  height: 48px;
  overflow: hidden;
  margin-bottom: 8px;
}

.wheel-petal-anim {
  position: absolute;
  top: 0;
  font-size: 1.2rem;
  animation: petalDrop 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes petalDrop {
  0% { transform: translateY(-30px) rotate(-20deg); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(44px) rotate(20deg); opacity: 0; }
}

.wheel-result-title {
  font-size: 1.35rem;
  color: #5a2a3a;
  font-family: var(--font-title, serif);
  margin-bottom: 4px;
}

.wheel-result-prize-label {
  font-size: 0.78rem;
  color: #9a6a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.wheel-result-prize-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c06080;
  margin: 4px 0 0;
}

/* Coupon box */
.wheel-coupon-box {
  background: linear-gradient(135deg, #fff5f8, #fde8f0);
  border: 1.5px dashed #f9c5d1;
  border-radius: 16px;
  padding: 16px 18px;
  margin: 12px 0;
  text-align: center;
}

.wheel-coupon-label {
  font-size: 0.75rem;
  color: #9a6a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.wheel-coupon-code-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wheel-coupon-code {
  font-size: 1.3rem;
  font-weight: 900;
  font-family: 'Space Mono', monospace;
  color: #5a2a3a;
  letter-spacing: 3px;
  background: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #f9c5d1;
}

.wheel-copy-btn {
  background: rgba(249, 197, 209, 0.4);
  border: 1px solid #f9c5d1;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.78rem;
  color: #c06080;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wheel-copy-btn:hover,
.wheel-copy-btn.copied { background: rgba(249, 197, 209, 0.7); }

.wheel-expiry-text {
  font-size: 0.8rem;
  color: #9a6a7a;
  margin: 0 0 6px;
}

.wheel-countdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c06080;
  margin-bottom: 8px;
  font-family: 'Space Mono', monospace;
}

.wheel-min-purchase {
  font-size: 0.78rem;
  color: #9a6a7a;
  margin: 0 0 4px;
  font-weight: 600;
}

.wheel-conditions {
  font-size: 0.7rem;
  color: #bbb;
  margin: 0;
  line-height: 1.5;
}

/* Result actions */
.wheel-result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.wheel-use-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
}

.wheel-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.wheel-wa-btn:hover {
  background: #1eb858;
  transform: translateY(-1px);
}

.wheel-close-result {
  width: 100%;
  background: none;
  border: none;
  color: #ccc;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 8px;
  text-decoration: underline;
}

.wheel-close-result:hover { color: #9a6a7a; }

/* ==========================================================================
   COMBO OFFER BANNER (in cart)
   ========================================================================== */
.combo-offer-banner {
  background: linear-gradient(135deg, #fff5f8, #fde8f0);
  border-top: 1px solid rgba(249, 197, 209, 0.5);
  border-bottom: 1px solid rgba(249, 197, 209, 0.5);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  animation: slideInBanner 0.4s ease;
}

@keyframes slideInBanner {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.combo-icon { font-size: 1.2rem; flex-shrink: 0; }

.combo-text { display: flex; flex-direction: column; gap: 2px; color: #5a2a3a; }
.combo-text strong { font-weight: 700; }
.combo-text span { color: #7a4a5a; }

/* ==========================================================================
   RECENTLY VIEWED
   ========================================================================== */
.recently-viewed-section {
  background: linear-gradient(135deg, #fff9f6, #fdf5f0);
  border-top: 1px solid rgba(195, 135, 100, 0.12);
  padding: 20px 0 60px;
}

.recently-viewed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.recently-viewed-card {
  animation: fadeInCard 0.4s ease;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   WHATSAPP FAB
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 8000;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waBounce 2.5s ease-in-out 3s 3;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* ==========================================================================
   CAMPAIGN COUNTDOWN BAR
   ========================================================================== */
.campaign-countdown-bar {
  background: linear-gradient(135deg, #5a2a3a, #7a3a5a);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}

.countdown-emoji { font-size: 1.1rem; }

.countdown-text { font-weight: 600; letter-spacing: 0.2px; }

.countdown-order-by {
  opacity: 0.75;
  font-size: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 14px;
}

.countdown-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: 8px;
  padding: 0;
  position: absolute;
  right: 16px;
}

.countdown-close:hover { color: #fff; }

/* ==========================================================================
   TRUST BADGES (mini, in cart)
   ========================================================================== */
.trust-badges-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(195, 135, 100, 0.1);
  margin-top: 10px;
}

.trust-badge-mini {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #9a7a6a;
  background: rgba(195, 135, 100, 0.06);
  border-radius: 6px;
  padding: 3px 7px;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .shop-banner-img { min-height: 200px; }
  .shop-banner-overlay { padding: 24px 20px; }
  .shop-banner-overlay h2 { font-size: 1.8rem; }
  .recently-viewed-grid { padding: 0 16px; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .campaign-countdown-bar { gap: 8px; font-size: 0.75rem; }
  .countdown-order-by { display: none; }
  .whatsapp-fab { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.4rem; }
}

/* ==========================================================================
   VIEW CUSTOM BACKGROUND PATTERNS
   ========================================================================== */
#membresia-view {
  background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('images/corazones.png') repeat, var(--color-bg-base) !important;
}

#quiz-view {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('images/aromas2.png') repeat, var(--color-bg-base) !important;
}

/* ==========================================================================
   DEVELOPER BANNER IN FOOTER (GABRIELA RECOSTA)
   ========================================================================== */
.dev-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 249, 246, 0.05);
  border: 1px dashed rgba(212, 163, 115, 0.35);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 24px;
  max-width: 650px;
  width: 100%;
  box-sizing: border-box;
}

.dev-banner-text {
  font-family: var(--font-title), serif;
  font-size: 0.95rem;
  color: var(--color-bg-base);
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 1.4;
}

.dev-banner-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.dev-contact-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff !important;
  font-family: var(--font-body), sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.dev-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

@media (max-width: 650px) {
  .dev-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .dev-banner-text {
    text-align: center;
    font-size: 0.9rem;
  }
}
