/* ==========================================================================
   TRENDY SHOP COLOMBIA - 1:1 EXACT STYLES
   Official Font: Barlow (Google Fonts)
   Palette: #85032F (Maroon Topbar), #E83D84 (Trendy Pink), #231F20 (Charcoal)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap');
@import url('animations.css');

:root {
  --font-main: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Colors */
  --color-maroon: #85032F;
  --color-primary: #E83D84;
  --color-primary-dark: #C9206A;
  --color-primary-light: #FFEBF3;
  --color-text-main: #231F20;
  --color-text-muted: #757575;
  --color-border: #EFEFEF;
  --color-border-dark: #E0E0E0;
  --color-card-bg: #FFFFFF;
  --color-white: #FFFFFF;
  --color-black: #000000;
  
  /* Dimensions & Spacing */
  --max-width: 1680px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100vw;
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--color-text-main);
  line-height: 1.5;
  overflow-x: clip;
  max-width: 100vw;
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility & SEO utility: visually hidden but accessible to screen readers & search crawlers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   1. TOP BAR (OFFICIAL ROTATING ANNOUNCEMENTS)
   ========================================================================== */
.top-bar {
  background-color: #A8023B;
  color: var(--color-white);
  font-size: 13.5px;
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
  overflow: hidden;
}

.top-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.top-bar__rotator {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
  pointer-events: none;
}

.top-bar__item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-bar__item.exit {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.top-bar__paragraph {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.25px;
  margin: 0;
  font-size: 13.5px;
  color: #FFFFFF;
}

.top-bar__paragraph strong {
  font-weight: 700;
}

.top-bar__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
}

/* ==========================================================================
   2. MAIN HEADER & SEARCH
   ========================================================================== */
.main-header {
  background: var(--color-white);
  border-bottom: 1px solid #F2E4EC;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 36px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Search Bar (Rounded Pill with Icon Inside on Left - Spans Full Center) */
.search-container {
  flex: 1;
  max-width: 1120px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: var(--radius-full);
  height: 44px;
  padding: 0 20px;
  gap: 12px;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: #E24585;
  box-shadow: 0 0 0 2px rgba(226, 69, 133, 0.15);
}

.search-icon-left {
  flex-shrink: 0;
  stroke: #444444;
  width: 18px;
  height: 18px;
}

.search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text-main);
  outline: none;
}

.search-input::placeholder {
  color: #757575;
}

/* =========================================================================
   LIVE SEARCH AUTOCOMPLETE DROPDOWN & MODAL (VTEX STYLE)
   ========================================================================= */
.search-clear-btn {
  background: transparent;
  border: none;
  color: #9E9E9E;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}
.search-clear-btn:hover {
  color: #E24585;
  background: #FFEBF3;
}
.search-clear-btn.visible {
  display: flex;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  overflow: hidden;
  display: none;
  animation: searchFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-dropdown.open {
  display: block;
}

@keyframes searchFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-dropdown-header {
  padding: 10px 18px;
  background: #FAF8F9;
  border-bottom: 1px solid #F0EDEE;
  font-size: 12px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-dropdown-header span.count {
  color: #E24585;
}

.search-dropdown-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 6px 0;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
  border-bottom: 1px solid #F8F8F8;
}
.search-dropdown-item:last-child {
  border-bottom: none;
}
.search-dropdown-item:hover,
.search-dropdown-item.selected {
  background: #FFF5F9;
}

.search-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #EAEAEA;
  object-fit: contain;
  background: #FFFFFF;
  flex-shrink: 0;
}

.search-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #231F20;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-item-name mark {
  background: #FFEBF3;
  color: #E24585;
  font-weight: 700;
  border-radius: 2px;
  padding: 0 2px;
}

.search-item-meta {
  font-size: 11.5px;
  color: #888888;
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #E24585;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}
.search-item-list-price {
  font-size: 11.5px;
  color: #9E9E9E;
  text-decoration: line-through;
  font-weight: 400;
}

.search-dropdown-footer {
  padding: 12px 18px;
  background: #FAF8F9;
  border-top: 1px solid #F0EDEE;
  text-align: center;
}
.search-view-all-btn {
  color: #E24585;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.15s;
}
.search-view-all-btn:hover {
  color: #C2185B;
  text-decoration: underline;
}

.search-empty-state {
  padding: 24px 18px;
  text-align: center;
}
.search-empty-title {
  font-size: 14px;
  font-weight: 600;
  color: #444444;
  margin-bottom: 6px;
}
.search-empty-hint {
  font-size: 12.5px;
  color: #888888;
  margin-bottom: 14px;
}
.search-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.search-tag-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #F4F4F4;
  color: #333333;
  cursor: pointer;
  transition: var(--transition);
}
.search-tag-pill:hover {
  background: #FFEBF3;
  color: #E24585;
}

/* FULL SEARCH RESULTS MODAL */
.search-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.search-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 1040px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: searchFadeIn 0.25s ease;
}

.search-modal-header {
  padding: 20px 28px;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
}
.search-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #231F20;
  margin: 0;
}
.search-modal-title span.query {
  color: #E24585;
}
.search-modal-close-btn {
  font-size: 24px;
  color: #888888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.search-modal-close-btn:hover {
  background: #F5F5F5;
  color: #E24585;
}

.search-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.search-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}


/* Action Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.header-icon-btn {
  position: relative;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: transparent;
}

.header-icon-btn:hover {
  color: #E24585;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: #E24585;
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

/* ==========================================================================
   3. SUBHEADER / SECONDARY NAVIGATION
   ========================================================================== */
.sub-nav {
  background: var(--color-white);
  border-bottom: 1px solid #FCE4EC;
  padding: 0;
}

.sub-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.categories-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: #000000;
  padding: 6px 0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.categories-trigger:hover {
  color: var(--color-primary);
}

.sub-nav__links {
  display: flex;
  align-items: center;
  gap: 46px;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.sub-nav__links li {
  height: 100%;
  display: flex;
  align-items: center;
}

.sub-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
}

.sub-nav__link:hover {
  color: var(--color-primary);
}

.sub-nav__link--highlighted {
  background-color: #A8023B;
  color: #000000 !important;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.sub-nav__link--highlighted:hover {
  background-color: #920133;
}

.btn-mayorista {
  background-color: #E24585;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-mayorista:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(226, 69, 133, 0.3);
}

/* ==========================================================================
   4. HERO BANNER SLIDER
   ========================================================================== */
.hero-slider-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #FDF2F7;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.slide-picture {
  display: block;
  width: 100%;
}

.slide-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1908 / 400;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 799px) {
  .slide-img {
    aspect-ratio: 708 / 500;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow--prev { left: 20px; }
.slider-arrow--next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: #E24585;
  width: 8px;
  border-radius: 50%;
}

/* ==========================================================================
   5. CIRCULAR CATEGORY SHOWCASE (162px EXACT VTEX MEASUREMENT)
   ========================================================================== */
.categories-circles-section {
  background-color: #FFFFFF;
  padding: 32px 0 36px;
  text-align: center;
}

.section-tag-pink {
  display: inline-block;
  color: #E24687;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.category-circles-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 180px;
  text-decoration: none;
}

.category-circle-img-wrapper {
  width: 162px;
  height: 162px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  transition: var(--transition);
}

.category-circle-card:hover .category-circle-img-wrapper {
  transform: translateY(-4px) scale(1.02);
}

.category-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-circle-card:hover .category-circle-img {
  transform: scale(1.06);
}

.category-circle-name {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1.25;
  transition: var(--transition);
}

.category-circle-card:hover .category-circle-name {
  color: #E24687;
}

/* ==========================================================================
   6. PRODUCTS SHOWCASE SECTION & CARDS
   ========================================================================== */
.products-showcase-section {
  padding: 36px 0;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-subtitle-pink {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.section-main-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.3px;
}

.shelf-arrows {
  display: flex;
  gap: 8px;
}

.shelf-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-dark);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #444444;
  transition: var(--transition);
}

.shelf-arrow-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #FFF5F8;
}

.products-grid-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shelf-product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.shelf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-color: var(--color-primary);
}

.tag-nuevo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.tag-oferta {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFE8E8;
  color: #E53935;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.card-top-icons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.icon-quick-view,
.icon-wishlist {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.icon-quick-view:hover,
.icon-wishlist:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.shelf-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.shelf-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.shelf-product-card:hover .shelf-img-wrapper img {
  transform: scale(1.05);
}

.shelf-prod-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
  height: 42px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  transition: var(--transition);
}

.shelf-prod-title:hover {
  color: var(--color-primary);
}

.shelf-prod-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.shelf-prod-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.shelf-prod-list-price {
  font-size: 0.85rem;
  color: #9E9E9E;
  text-decoration: line-through;
}

.shelf-prod-price-sale {
  font-size: 1.15rem;
  font-weight: 800;
  color: #E53935;
}

.btn-outline-add {
  width: 100%;
  border: 1.5px solid var(--color-primary);
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: auto;
}

.btn-outline-add:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(232, 61, 132, 0.25);
}

/* ==========================================================================
   7. PROMO FEATURE CARDS (3 CARDS)
   ========================================================================== */
.feature-cards-section {
  padding: 20px 0 40px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card__img-box {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.feature-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__img-box img {
  transform: scale(1.05);
}

.feature-card__content {
  padding: 24px;
  color: var(--color-white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-white);
}

.feature-card__text {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 20px;
  opacity: 0.95;
  color: var(--color-white);
}

.feature-card__link {
  align-self: flex-start;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
  background: transparent;
  padding: 0;
  transition: var(--transition);
}

.feature-card__link:hover {
  opacity: 0.85;
}

/* ==========================================================================
   8. STORE BACKGROUND VIDEO (OFFICIAL VTEX VIDEO SECTION)
   ========================================================================== */
.store-video-section {
  margin: 20px 0 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.store-section-video-HomeSliderContainer {
  width: 100%;
  position: relative;
}

.store-section-video-containerGeneral {
  position: relative;
  width: 100%;
}

.store-section-video-parallax_video {
  height: 368px;
  position: relative;
  overflow: hidden;
}

.store-section-video-container_video_pause {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.store-section-video-container_video_pause video {
  width: 100%;
  height: 368px;
  object-fit: cover;
  display: block;
}

.store-section-video-play_and_pause {
  position: absolute;
  top: 24px;
  right: 28px;
  background-color: rgba(0, 0, 0, 0.45);
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: var(--transition);
  z-index: 15;
}

.store-section-video-play_and_pause:hover {
  background-color: rgba(0, 0, 0, 0.75);
  transform: scale(1.08);
}

.store-section-video-container_btn {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: 36px;
  left: 0;
  z-index: 15;
}

.store-section-video-parallax_video_btn {
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  padding: 12px 32px;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: center;
  border-radius: 20px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.store-section-video-parallax_video_btn:hover {
  background-color: #f7f7f7;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38);
}

/* ==========================================================================
   9. SOCIAL FEED SECTION
   ========================================================================== */
.social-feed-section {
  padding: 36px 0 40px;
}

.social-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.social-handle {
  font-size: 0.9rem;
  font-weight: 700;
  color: #E24586;
  display: block;
  margin-bottom: 4px;
}

.social-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.2px;
}

.btn-siguenos {
  border: 1px solid #E55D95;
  color: #E55D95;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.btn-siguenos:hover {
  background: #E55D95;
  color: var(--color-white);
}

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.social-feed-item {
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  display: block;
  box-shadow: none;
}

.social-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.social-feed-item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   10. BENEFITS TICKER (PASTEL PINK BAND - SEAMLESS CONTINUOUS MARQUEE)
   ========================================================================== */
.benefits-ticker-bar {
  background: #FDE8EE;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #F8C0D4;
  border-bottom: 1px solid #F8C0D4;
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
}

.benefits-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  flex-shrink: 0;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}

.benefits-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.benefits-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 32px;
  flex-shrink: 0;
}

.benefits-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.benefits-title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #E24586;
  white-space: nowrap;
}

.benefits-separator {
  display: none !important;
}

/* ==========================================================================
   11. PAYMENT LOGOS BAR
   ========================================================================== */
.payment-methods-bar {
  background: var(--color-white);
  padding: 20px 0;
  border-bottom: 1px solid #ECECEC;
}

.payment-methods-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.payment-methods-inner img {
  max-height: 28px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   12. OFFICIAL FOOTER (4 COLUMNS WITH DIVIDERS & COPYRIGHT)
   ========================================================================== */
.official-footer {
  background: var(--color-white);
  padding: 48px 0 24px;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 28px;
}

.footer-logo-pink {
  height: 42px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
}

.social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E24586;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-circle:hover {
  background: var(--color-primary-dark);
  transform: scale(1.08);
}

.footer-sic-box {
  margin-top: 6px;
}

.footer-sic-logo {
  max-width: 170px;
  height: auto;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 28px;
  padding-right: 28px;
  border-left: 1px solid #ECECEC;
}

.footer-col-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: #231F20;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: #E24586;
}

.customer-service-text {
  font-size: 0.84rem;
  color: #231F20;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customer-service-text p {
  margin: 0;
}

.cs-link {
  color: #0056B3;
  text-decoration: underline;
  font-weight: 400;
}

.cs-link:hover {
  color: #003d80;
}

.footer-bottom-copyright {
  border-top: 1px solid #F0F0F0;
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom-copyright p {
  font-size: 12px;
  color: #757575;
  margin: 0;
}

/* ==========================================================================
   13. FLOATING PROMO POPUP (BOTTOM-LEFT)
   ========================================================================== */
.floating-promo-card {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 215px;
  border-radius: 14px;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  line-height: 0;
  background: transparent;
}

.promo-link-overlay {
  display: block;
  width: 100%;
  line-height: 0;
}

.promo-img-exact {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.promo-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.45);
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  z-index: 10;
  line-height: 1;
  transition: var(--transition);
}

.promo-close-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* ==========================================================================
   14. FLOATING WHATSAPP BUTTON (BOTTOM-RIGHT)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 62px;
  height: 62px;
  background: transparent !important;
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.16));
  animation: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent !important;
}

@media screen and (max-width: 768px) {
  .floating-whatsapp {
    right: 18px;
    bottom: 80px;
    width: 52px;
    height: 52px;
  }
}


/* ==========================================================================
   15. SLIDE-IN CART DRAWER (1:1 CLONE OF TRENDY VTEX MINICART)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: min(420px, 100vw);
  min-width: 280px;
  background: #FFFFFF;
  z-index: 99999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s;
  font-family: inherit;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Header */
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
}

.cart-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111111;
  margin: 0;
}

.close-drawer-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #111111;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.15s;
}

.close-drawer-btn:hover {
  color: #E24585;
}

/* Body / Items */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item Card - 1:1 VTEX */
.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0F0F0;
  align-items: flex-start;
}

.cart-item-img-link {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.cart-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #232323;
  line-height: 1.35;
  margin: 0;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-item-delete {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #727273;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
  flex-shrink: 0;
}

.cart-item-delete:hover {
  color: #E53935;
}

.cart-item-variant {
  font-size: 11px;
  color: #888888;
  margin: 0;
  text-transform: uppercase;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: #E24585;
  margin: 2px 0 6px;
}

.cart-item-bottom-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cart-qty-label {
  font-size: 13px;
  color: #555555;
}

/* Stepper Pill - 1:1 VTEX */
.cart-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E24585;
  border-radius: 999px;
  height: 30px;
  background: #FFFFFF;
  padding: 0 4px;
}

.cart-stepper-btn {
  border: none;
  background: transparent;
  width: 24px;
  height: 100%;
  cursor: pointer;
  font-size: 16px;
  color: #E24585;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-stepper-qty {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
}

/* Clear Cart Button - 1:1 VTEX */
.clear-cart-container {
  padding: 8px 24px;
  display: flex;
  justify-content: center;
}

.clear-cart-btn {
  border: none;
  background: transparent;
  color: #E24585;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  transition: opacity 0.15s;
}

.clear-cart-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Empty State - 1:1 VTEX */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 80px 20px;
  text-align: center;
  gap: 20px;
}

.cart-empty-icon {
  color: #888888;
}

.cart-empty-title {
  font-size: 14px;
  color: #555555;
  margin: 0;
}

/* Footer - 1:1 VTEX */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #ECECEC;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #555555;
  margin-bottom: 8px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.cart-tax-notice {
  font-size: 11.5px;
  color: #777777;
  text-align: left;
  margin: 0 0 18px;
}

.checkout-btn {
  width: 100%;
  height: 46px;
  background: #E24585;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.checkout-btn:hover {
  background: #C2185B;
}


/* ==========================================================================
   16. QUICK VIEW MODAL
   ========================================================================== */
.modal-overlay,
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.open,
.product-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.6rem;
  color: var(--color-text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.modal-close-btn:hover {
  background: #F5F5F5;
  color: var(--color-primary);
}

.modal-img-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-brand-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #9E9E9E;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-title-heading {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 6px 0 12px;
  line-height: 1.25;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-price-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.modal-list-price-val {
  font-size: 1.05rem;
  color: #9E9E9E;
  text-decoration: line-through;
}

.modal-desc-text {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-actions-row .qty-control {
  border-radius: var(--radius-sm);
}

.modal-actions-row .qty-btn {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}

.modal-actions-row input {
  width: 44px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 700;
}

.btn-modal-add {
  flex: 1;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-align: center;
}

.btn-modal-add:hover {
  background: var(--color-primary-dark);
}

/* ==========================================================================
   17. TOAST NOTIFICATIONS
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #231F20;
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .products-grid-shelf {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding: 0 16px;
  }

  /* Sub Navigation */
  .sub-nav__links {
    display: none;
  }

  /* Main Header Mobile 2-Row Layout */
  .main-header__inner {
    height: auto;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 0;
  }

  .logo-link {
    order: 1;
  }

  .logo-img {
    height: 38px;
    max-width: 120px;
  }

  .header-icons {
    order: 2;
    gap: 14px;
    margin-left: auto;
  }

  .header-icon-btn {
    width: 32px;
    height: 32px;
  }

  .search-container {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 4px;
  }

  .search-form {
    height: 38px;
    padding: 0 14px;
    gap: 8px;
  }

  /* Category Circles Horizontal Carousel */
  .categories-circles-section {
    padding: 20px 0 24px;
    overflow: hidden;
  }

  .category-circles-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 16px 12px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .category-circles-grid::-webkit-scrollbar {
    display: none;
  }

  .category-circle-card {
    flex: 0 0 92px;
    width: 92px;
    scroll-snap-align: start;
    gap: 8px;
  }

  .category-circle-img-wrapper {
    width: 82px;
    height: 82px;
  }

  .category-circle-name {
    font-size: 12.5px;
    font-weight: 600;
  }

  /* Slider arrows */
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .slider-arrow--prev { left: 8px; }
  .slider-arrow--next { right: 8px; }

  /* Benefits Ticker */
  .benefits-ticker-bar {
    padding: 10px 0;
  }
  .benefits-title {
    font-size: 0.85rem;
  }
  .benefits-separator {
    margin: 0 12px;
  }

  /* Shelves & Products */
  .products-grid-shelf {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid-4 {
    grid-template-columns: 1fr;
  }

  .modal-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .floating-promo-card {
    display: none;
  }

  /* Prevent automatic iOS zoom on input focus by guaranteeing 16px font-size */
  input[type="text"],
  input[type="search"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   SEO & Google Ads Quality Score Enhancement Styles
   ========================================================================== */
.seo-faq-section {
  background: #fdfafb;
  padding: 40px 0;
  border-top: 1px solid #f2e6ea;
  border-bottom: 1px solid #f2e6ea;
  margin-top: 30px;
}

.seo-faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.seo-faq-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.seo-faq-intro {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.seo-faq-card {
  background: #fff;
  border: 1px solid #fae1ea;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(194, 24, 91, 0.08);
}

.seo-faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 8px;
  line-height: 1.35;
}

.seo-faq-a {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .seo-faq-title {
    font-size: 1.3rem;
  }
  .seo-faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ==========================================================================
   TRENDY BY CAMILA ORREGO - FREE SHIPPING INCENTIVE & PROGRESS BAR ($300.000)
   ========================================================================== */
.cart-shipping-bar {
  background: #FFF0F5;
  border-bottom: 1px solid #F8C0D8;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.cart-shipping-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-shipping-icon {
  width: 18px;
  height: 18px;
  stroke: #E6007E;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

.cart-shipping-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.35;
  font-weight: 500;
}

.cart-shipping-text strong {
  color: #E6007E;
  font-weight: 700;
}

.cart-shipping-progress {
  width: 100%;
  height: 6px;
  background: #F3E2EB;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.cart-shipping-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #E6007E 0%, #FF4081 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Free Shipping Reached State */
.cart-shipping-bar.free-shipping-reached {
  background: #F0FDF4;
  border-bottom-color: #BBF7D0;
}

.cart-shipping-bar.free-shipping-reached .cart-shipping-icon {
  stroke: #108A00;
}

.cart-shipping-bar.free-shipping-reached .cart-shipping-text {
  color: #166534;
}

.cart-shipping-bar.free-shipping-reached .cart-shipping-text strong {
  color: #108A00;
}

.cart-shipping-bar.free-shipping-reached .cart-shipping-progress-bar {
  background: linear-gradient(90deg, #108A00 0%, #22C55E 100%);
}

/* PDP Shipping Incentive Box */
.pdp-shipping-incentive-box {
  margin: 18px 0 22px;
  background: #FFF5F8;
  border: 1px solid #F8C0D8;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(230, 0, 126, 0.04);
}

.pdp-shipping-incentive-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-shipping-incentive-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFE4EE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdp-shipping-incentive-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-shipping-incentive-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.pdp-shipping-incentive-sub {
  font-size: 12px;
  color: #6B7280;
}

.pdp-shipping-incentive-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #F8C0D8;
}

.pdp-shipping-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #374151;
  font-weight: 500;
}

.pdp-shipping-perk svg {
  flex-shrink: 0;
}
