/** Shopify CDN: Minification failed

Line 3049:0 Unexpected "}"

**/
.header {
  padding: 1rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.announcement-bar {
  background: linear-gradient(90deg, #0097A7, #005F6A, #0097A7);
  background-size: 200% 100%;
  animation: announcement-shift 6s ease infinite;
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes announcement-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header__logo-img {
  display: block;
  max-height: 7rem;
  width: auto;
  position: relative;
  z-index: 1;
}

.header__logo-text {
  font-family: var(--font-heading--family);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.header__search {
  flex: 0 0 28rem;
  max-width: 28rem;
  position: relative;
}

.header__search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 4.2rem;
  border: 2px solid #E5E7EB;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-family: var(--font-primary--family);
  background: #D4F1F4;
  transition: all 0.3s ease;
  outline: none;
}

.header__search-input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,151,167,0.08);
}

.header__search-icon {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  color: #999;
  pointer-events: none;
}

.header__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.header__actions a, .header__actions button {
  color: var(--color-foreground);
  text-decoration: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__actions svg {
  width: 2.2rem;
  height: 2.2rem;
  transition: color 0.2s;
}

.header__actions a:hover svg, .header__actions button:hover svg {
  color: var(--color-primary);
}

.cart-count {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  background: #0097A7;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,151,167,0.3);
}

.header__skin-btn {
  background: linear-gradient(135deg, #0097A7, #005F6A);
  color: #fff !important;
  padding: 1rem 3.2rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,151,167,0.35);
  letter-spacing: 0.5px;
  text-transform: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.header__skin-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}

.header__skin-btn:hover::before {
  left: 100%;
}

.header__skin-btn:hover {
  background: linear-gradient(135deg, #005F6A, #005F6A);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,151,167,0.5);
  color: #fff !important;
}

.wishlist-count {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  background: #0097A7;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,151,167,0.3);
}

/* ── UGC Videos ── */
.ugc-videos {
  padding: 5rem 0;
  background: linear-gradient(180deg, #D4F1F4 0%, #f0fafb 100%);
  position: relative;
}
.ugc-videos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #F7931E, #0097A7, #00BCD4);
  opacity: 0.3;
}
.ugc-grid {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.ugc-grid::-webkit-scrollbar {
  height: 4px;
}
.ugc-grid::-webkit-scrollbar-track {
  background: rgba(0,151,167,0.1);
  border-radius: 4px;
}
.ugc-grid::-webkit-scrollbar-thumb {
  background: #0097A7;
  border-radius: 4px;
}
.ugc-card {
  flex: 0 0 16rem;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.ugc-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,151,167,0.18);
}
.ugc-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.ugc-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ugc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.ugc-overlay svg {
  width: 3.5rem;
  height: 3.5rem;
  transition: transform 0.3s ease;
}
.ugc-card:hover .ugc-overlay svg {
  transform: scale(1.15);
}
.ugc-video {
  position: absolute;
  inset: 0;
}
.ugc-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ugc-info {
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ugc-user {
  font-size: 0.85rem;
  font-weight: 600;
  color: #003D40;
}
.ugc-product {
  font-size: 0.75rem;
  background: linear-gradient(135deg, #0097A7, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background-color: rgba(0,151,167,0.08);
}
@media (max-width: 989px) {
  .ugc-card {
    flex: 0 0 16rem;
  }
}
@media (max-width: 480px) {
  .ugc-videos {
    padding: 2.5rem 0;
  }
  .ugc-card {
    flex: 0 0 14rem;
    gap: 0.6rem;
  }
  .ugc-info {
    padding: 0.5rem 0.6rem;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }
  .ugc-user {
    font-size: 0.75rem;
  }
  .ugc-product {
    font-size: 0.65rem;
  }
}

/* ── Skin Profile Hero ── */
.skin-profile-hero {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.skin-profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D4F1F4 0%, #f0fafb 50%, #e0f5f8 100%);
  z-index: 0;
}
.skin-profile-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,151,167,0.06) 0%, transparent 70%);
  z-index: 0;
}
.skin-profile-hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  text-align: left;
}
.skin-profile-hero__content {
  flex: 1;
  max-width: 32rem;
}
.skin-profile-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0097A7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  background: rgba(0,151,167,0.08);
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,151,167,0.15);
}
.skin-profile-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #003D40;
  margin-bottom: 1rem;
}
.skin-profile-hero__title span {
  background: linear-gradient(135deg, #0097A7, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.skin-profile-hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a5a6a;
  margin-bottom: 1.5rem;
}
.skin-profile-hero__features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.skin-profile-hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #2d4a5a;
  font-weight: 500;
  background: rgba(255,255,255,0.6);
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,151,167,0.1);
  transition: all 0.3s ease;
}
.skin-profile-hero__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,151,167,0.1);
  border-color: rgba(0,151,167,0.2);
}
.skin-profile-hero__feature svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.skin-profile-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, #0097A7, #00BCD4);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,151,167,0.3);
}
.skin-profile-hero__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,151,167,0.4);
}
.skin-profile-hero__btn svg {
  transition: transform 0.3s ease;
}
.skin-profile-hero__btn:hover svg {
  transform: translateX(4px);
}
.skin-profile-hero__visual {
  flex: 0 0 16rem;
  display: flex;
  justify-content: center;
}
.skin-profile-hero__card {
  position: relative;
  width: 14rem;
}
.skin-profile-hero__card svg {
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,151,167,0.25));
  animation: skinProfileFloat 4s ease-in-out infinite;
}
@keyframes skinProfileFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.skin-profile-hero__card-label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.15);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .skin-profile-hero {
    padding: 2.5rem 0;
  }
  .skin-profile-hero__inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .skin-profile-hero__content {
    max-width: 100%;
  }
  .skin-profile-hero__tag {
    margin: 0 auto 1rem;
  }
  .skin-profile-hero__title {
    font-size: 2rem;
  }
  .skin-profile-hero__features {
    justify-content: center;
  }
  .skin-profile-hero__visual {
    flex: 0 0 auto;
  }
  .skin-profile-hero__card {
    width: 10rem;
  }
}

/* ── Combos Section ── */
.combos-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f0fafb 0%, #D4F1F4 100%);
}
.combos-slider__wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.combos-slider__wrapper::-webkit-scrollbar {
  height: 4px;
}
.combos-slider__wrapper::-webkit-scrollbar-track {
  background: rgba(0,151,167,0.1);
  border-radius: 4px;
}
.combos-slider__wrapper::-webkit-scrollbar-thumb {
  background: #0097A7;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .combos-section {
    padding: 2.5rem 0;
  }
}

.footer {
  background: linear-gradient(160deg, #0A2E35 0%, #003D40 30%, #005F6A 60%, #0A2E35 100%);
  color: #fff;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

/* ── Ingredients Section ── */
.ingredients-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #D4F1F4 0%, #e8f6f8 30%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.ingredients-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06D6A0, #0097A7, #FF6B35, #7C3AED);
  opacity: 0.3;
}
.ingredients-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ingredients-deco__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.ingredients-deco__circle--1 {
  width: 25rem;
  height: 25rem;
  background: radial-gradient(circle, #06D6A0, transparent 70%);
  top: -8rem;
  left: -5rem;
  animation: ingredientsFloat 8s ease-in-out infinite;
}
.ingredients-deco__circle--2 {
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, #0097A7, transparent 70%);
  bottom: -5rem;
  right: -3rem;
  animation: ingredientsFloat 10s ease-in-out infinite reverse;
}
.ingredients-deco__circle--3 {
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, #FF6B35, transparent 70%);
  top: 40%;
  right: 10%;
  animation: ingredientsFloat 6s ease-in-out infinite 2s;
}
@keyframes ingredientsFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.ingredient-card {
  --card-accent: #0097A7;
  --card-accent-light: rgba(0,151,167,0.08);
  --card-accent-glow: rgba(0,151,167,0.2);
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 1.2rem 1.5rem;
  border: 1px solid rgba(0,151,167,0.06);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(0,151,167,0.04);
  position: relative;
  overflow: hidden;
  animation: cardFadeUp 0.6s ease-out both;
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--card-accent), transparent);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.ingredient-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--card-accent-light), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.ingredient-card:hover::before {
  opacity: 1;
}
.ingredient-card:hover::after {
  opacity: 1;
}
.ingredient-card:nth-child(1) { animation-delay: 0.05s; }
.ingredient-card:nth-child(2) { animation-delay: 0.12s; }
.ingredient-card:nth-child(3) { animation-delay: 0.19s; }
.ingredient-card:nth-child(4) { animation-delay: 0.26s; }
.ingredient-card:nth-child(5) { animation-delay: 0.33s; }
.ingredient-card:nth-child(6) { animation-delay: 0.4s; }
.ingredient-card:nth-child(7) { animation-delay: 0.47s; }
.ingredient-card:nth-child(8) { animation-delay: 0.54s; }

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

.ingredient-card--pulse { --card-accent: #06D6A0; --card-accent-light: rgba(6,214,160,0.08); --card-accent-glow: rgba(6,214,160,0.2); }
.ingredient-card--active { --card-accent: #FF6B35; --card-accent-light: rgba(255,107,53,0.08); --card-accent-glow: rgba(255,107,53,0.2); }
.ingredient-card--botanical { --card-accent: #7C3AED; --card-accent-light: rgba(124,58,237,0.08); --card-accent-glow: rgba(124,58,237,0.2); }
.ingredient-card--vitamin { --card-accent: #F59E0B; --card-accent-light: rgba(245,158,11,0.08); --card-accent-glow: rgba(245,158,11,0.2); }
.ingredient-card--soothing { --card-accent: #A29BFE; --card-accent-light: rgba(162,155,254,0.08); --card-accent-glow: rgba(162,155,254,0.2); }
.ingredient-card--protect { --card-accent: #00BCD4; --card-accent-light: rgba(0,188,212,0.08); --card-accent-glow: rgba(0,188,212,0.2); }

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--card-accent-glow), 0 4px 12px rgba(0,0,0,0.04);
  border-color: var(--card-accent-light);
}
.ingredient-card__icon-wrap {
  position: relative;
  margin-bottom: 0.2rem;
}
.ingredient-card__icon-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-accent-light), transparent 70%);
  animation: iconGlow 3s ease-in-out infinite;
}
@keyframes iconGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
.ingredient-card__icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-accent), color-mix(in srgb, var(--card-accent) 70%, white));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px var(--card-accent-glow);
  transition: all 0.4s ease;
}
.ingredient-card:hover .ingredient-card__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px var(--card-accent-glow);
}
.ingredient-card__icon svg {
  width: 2rem;
  height: 2rem;
  stroke: #fff;
}
.ingredient-card__tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--card-accent);
  background: var(--card-accent-light);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--card-accent-glow);
}
.ingredient-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #003D40;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.ingredient-card__benefit {
  font-size: 0.8rem;
  color: #3a5a6a;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
  background: rgba(0,0,0,0.02);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
}
.ingredient-card:hover .ingredient-card__benefit {
  color: var(--card-accent);
  border-color: var(--card-accent-light);
  background: var(--card-accent-light);
  transition: all 0.4s ease;
}
@media (max-width: 989px) {
  .ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .ingredient-card {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .ingredients-section {
    padding: 3rem 0;
  }
  .ingredients-deco__circle--1 { width: 15rem; height: 15rem; top: -3rem; left: -5rem; }
  .ingredients-deco__circle--2 { width: 10rem; height: 10rem; bottom: -3rem; right: -5rem; }
  .ingredients-deco__circle--3 { display: none; }
  .ingredient-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.2rem 0.8rem;
    margin-top: 2rem;
  }
  .ingredient-grid::-webkit-scrollbar {
    height: 3px;
  }
  .ingredient-grid::-webkit-scrollbar-track {
    background: rgba(0,151,167,0.06);
    border-radius: 4px;
  }
  .ingredient-grid::-webkit-scrollbar-thumb {
    background: #0097A7;
    border-radius: 4px;
  }
  .ingredient-card {
    flex: 0 0 14rem;
    scroll-snap-align: start;
    padding: 1.5rem 1rem;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #F7931E, #0097A7, #00BCD4);
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 5rem 0;
  background: #fff;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7C3AED, #0097A7, #06D6A0);
  opacity: 0.2;
}
.testimonials-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.2rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: #0097A7 rgba(0,151,167,0.06);
}
.testimonials-grid::-webkit-scrollbar {
  height: 4px;
}
.testimonials-grid::-webkit-scrollbar-track {
  background: rgba(0,151,167,0.06);
  border-radius: 4px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
  background: #0097A7;
  border-radius: 4px;
}
.testimonial-card {
  flex: 0 0 28rem;
  scroll-snap-align: start;
  background: #f8fcfd;
  border-radius: 1.2rem;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(0,151,167,0.06);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,151,167,0.1);
  border-color: rgba(0,151,167,0.15);
  background: #fff;
}
.testimonial-card--featured {
  background: linear-gradient(180deg, rgba(255,107,53,0.04), rgba(255,107,53,0.01));
  border-color: rgba(255,107,53,0.12);
  position: relative;
}
.testimonial-card--featured::before {
  content: 'Featured';
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}
.testimonial-stars {
  font-size: 1.1rem;
  color: #0097A7;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3a5a6a;
  flex: 1;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,151,167,0.06);
}
.testimonial-avatar svg {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.testimonial-author__info {
  flex: 1;
}
.testimonial-author__info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #003D40;
}
.testimonial-author__info span {
  font-size: 0.7rem;
  color: #5a7a8a;
}
.testimonial-product {
  font-size: 0.65rem;
  font-weight: 600;
  color: #0097A7;
  background: rgba(0,151,167,0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .testimonials-section {
    padding: 2.5rem 0;
  }
  .testimonials-grid {
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .testimonial-card {
    flex: 0 0 16rem;
    padding: 1.2rem 1rem;
  }
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(0,151,167,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer__heading {
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer .footer__heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #0097A7, transparent);
  border-radius: 2px;
}

.footer .footer__brand p,
.footer .footer__links a {
  color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
  position: relative;
}

.footer .footer__links a {
  padding-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer .footer__links a::before {
  content: '›';
  font-size: 1.2rem;
  color: #0097A7;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.footer .footer__links a:hover {
  color: #80e0d0;
  padding-left: 0.8rem;
}

.footer .footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer__logo-img {
  display: block;
  max-width: 18rem;
  height: auto;
}

.footer__brand p {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  max-width: 30rem;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-heading--family);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
  color: #0097A7;
}

.footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer__links a:hover {
  color: #80e0d0;
  transform: translateX(4px);
}

.footer__top-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #F7931E, #0097A7, #00BCD4);
  z-index: 2;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__logo span {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: #0097A7;
  border-color: #0097A7;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,151,167,0.4);
}

.footer__col .footer__arrow {
  display: none;
  transition: transform 0.3s;
}

.footer__col--open .footer__arrow {
  transform: rotate(180deg);
}

.footer__newsletter {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__newsletter-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
}

.footer__newsletter-text p {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  margin: 0;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.footer__newsletter-form input {
  padding: 0.8rem 1.2rem;
  border-radius: 5rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.2rem;
  min-width: 22rem;
  outline: none;
  transition: all 0.3s;
}

.footer__newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.footer__newsletter-form input:focus {
  border-color: #0097A7;
  background: rgba(255,255,255,0.1);
}

.footer__newsletter-form button {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5rem;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer__copyright {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
}

.footer__payment svg {
  height: 2.5rem;
  width: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
  filter: grayscale(0.3);
}

.footer__payment svg:hover {
  transform: translateY(-2px);
  filter: grayscale(0);
}

.hero-section {
  padding: 0.5rem 0;
  position: relative;
}

.hero-section__inner {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 16rem;
  display: flex;
  align-items: center;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  max-width: 52rem;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 1rem 0.3rem 0.7rem;
  border-radius: 5rem;
  margin-bottom: 0.6rem;
  animation: hero-reveal 0.6s ease-out both;
  color: rgba(255,255,255,0.9);
}

.hero-badge svg {
  color: #80e0d0;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.hero-section__title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.hero-title-line {
  display: block;
}

.hero-title-line--1 {
  animation: hero-reveal 0.6s ease-out 0.15s both;
}

.hero-title-line--2 {
  animation: hero-reveal 0.6s ease-out 0.3s both;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #fff 20%, #80e0d0 50%, #00BCD4 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section__text {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 36rem;
  animation: hero-reveal 0.6s ease-out 0.45s both;
}

.hero-section__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  animation: hero-reveal 0.6s ease-out 0.6s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.hero-btn--primary {
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  background: linear-gradient(135deg, #0097A7, #00BCD4);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,151,167,0.4);
  position: relative;
  overflow: hidden;
}

.hero-btn--primary svg {
  width: 16px;
  height: 16px;
}

.hero-btn--secondary {
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-btn--secondary svg {
  width: 14px;
  height: 14px;
}

.hero-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.hero-btn--primary:hover::before {
  left: 100%;
}

.hero-btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,151,167,0.55);
}

.hero-btn--secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-btn--secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-section__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: hero-reveal 0.6s ease-out 0.75s both;
}

.hero-stat {
  text-align: left;
  padding: 0 1rem;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  padding-right: 0;
}

.hero-stat__num {
  font-size: 1rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.05rem;
}

.hero-stat__label {
  font-size: 0.65rem;
  opacity: 0.7;
  font-weight: 500;
}

.hero-stat__divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.12);
}

.hero-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.hero-leaf--1 {
  top: 2rem;
  right: 8rem;
  width: 6rem;
  height: 6rem;
  animation: hero-leaf-sway 6s ease-in-out infinite;
}

.hero-leaf--2 {
  bottom: 3rem;
  right: 3rem;
  width: 4rem;
  height: 4rem;
  animation: hero-leaf-sway 8s ease-in-out infinite reverse;
}

.hero-leaf--3 {
  top: 50%;
  right: 15rem;
  width: 3.5rem;
  height: 3.5rem;
  animation: hero-float-up 5s ease-in-out infinite;
  margin-top: -1.75rem;
}

.hero-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-float--1 {
  top: 5rem;
  right: 20rem;
  width: 2.5rem;
  height: 2.5rem;
  animation: hero-float-up 4s ease-in-out infinite 1s;
}

.hero-float--2 {
  bottom: 5rem;
  right: 12rem;
  width: 1.8rem;
  height: 1.8rem;
  animation: hero-pulse-glow 3s ease-in-out infinite;
}

.hero-float--3 {
  top: 5rem;
  right: 5rem;
  width: 2rem;
  height: 2rem;
  animation: hero-float-up 5s ease-in-out infinite 2s;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0;
  }
  .hero-section__inner {
    min-height: 32rem;
    border-radius: 0;
  }
  .hero-section__content {
    padding: 3rem 2rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section__title {
    font-size: 2.8rem;
    align-items: center;
  }
  .hero-section__text {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
  }
  .hero-section__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-btn--primary,
  .hero-btn--secondary {
    width: 100%;
    max-width: 28rem;
    justify-content: center;
  }
  .hero-btn--primary {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
  }
  .hero-btn--secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  .hero-section__stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-stat {
    text-align: center;
    padding: 0 1rem;
  }
  .hero-stat__num {
    font-size: 1.4rem;
  }
  .hero-stat__label {
    font-size: 0.8rem;
  }
  .hero-stat__divider {
    display: none;
  }
  .hero-leaf, .hero-float {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section__inner {
    min-height: 24rem;
  }
  .hero-section__content {
    padding: 1.5rem 1.2rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem 0.3rem 0.6rem;
    margin-bottom: 0.6rem;
  }
  .hero-badge svg {
    width: 12px;
    height: 12px;
  }
  .hero-section__title {
    font-size: 1.8rem;
    gap: 0;
  }
  .hero-section__text {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  .hero-section__actions {
    gap: 0.5rem;
  }
  .hero-btn--primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    max-width: 20rem;
  }
  .hero-btn--primary svg {
    width: 14px;
    height: 14px;
  }
  .hero-btn--secondary {
    display: none;
  }
  .hero-section__stats {
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    gap: 0.5rem;
  }
  .hero-stat {
    padding: 0 0.6rem;
  }
  .hero-stat__num {
    font-size: 1rem;
  }
  .hero-stat__label {
    font-size: 0.65rem;
  }
}

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-leaf-sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

@keyframes hero-float-up {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes hero-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}



.featured-grid {
  padding: 0.5rem 0 1rem;
}

.section-header--row .section-header__title {
  margin-bottom: 0.2rem;
}

.section-header--row .section-header__desc {
  margin: 0;
  font-size: 0.85rem;
}

.section-header--row .section-header__underline {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #0097A7, #005F6A);
  border-radius: 2px;
  margin-top: 0.4rem;
}

.product-slider__wrapper {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  padding: 0.3rem 0.2rem;
}

.product-slider__wrapper::-webkit-scrollbar {
  display: none;
}

.product-slider-btn svg {
  width: 16px;
  height: 16px;
}

.product-slider-btn:hover {
  background: linear-gradient(135deg, #00BCD4, #0097A7);
  box-shadow: 0 4px 20px rgba(0,151,167,0.35);
  transform: scale(1.08);
  border-color: transparent;
  color: #fff;
}

.product-slider-btn:active {
  transform: scale(0.92);
}

.product-card {
  scroll-snap-align: start;
  flex: 0 0 22rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.2rem;
  border: 1px solid rgba(0,151,167,0.08);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,151,167,0.06);
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,151,167,0.15), transparent 40%, transparent 60%, rgba(0,188,212,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 20px 50px rgba(0,151,167,0.15), 0 0 0 1px rgba(0,151,167,0.08);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0,151,167,0.15);
  background: #fff;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #D4F1F4 0%, #E5E7EB 100%);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,151,167,0.04) 100%);
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 0.8rem;
  left: -0.4rem;
  color: #fff;
  padding: 0.35rem 1.1rem 0.35rem 1.2rem;
  border-radius: 0 2.5rem 2.5rem 0;
  font-size: 0.9rem;
  font-weight: 900;
  z-index: 3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transform: skewX(-7deg);
  transform-origin: left center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.product-card__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  animation: badgeShine 2s ease-in-out infinite;
  z-index: -1;
}

.product-card__badge::after {
  content: '';
  position: absolute;
  top: 0.45rem;
  left: -0.35rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 0.55rem 0.35rem;
  border-color: transparent transparent transparent #444;
  filter: brightness(0.6);
  z-index: -2;
}

.product-card__badge--bestseller {
  background: #FF6B35;
  box-shadow: 0 6px 20px rgba(255,107,53,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.product-card__badge--bestseller::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 70%, transparent 100%);
}
.product-card__badge--bestseller::after {
  border-color: transparent transparent transparent #C04E1E;
}

.product-card__badge--trending {
  background: #7C3AED;
  box-shadow: 0 6px 20px rgba(124,58,237,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.product-card__badge--trending::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 70%, transparent 100%);
}
.product-card__badge--trending::after {
  border-color: transparent transparent transparent #5B21B6;
}

.product-card__badge--new {
  background: #06D6A0;
  box-shadow: 0 6px 20px rgba(6,214,160,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.product-card__badge--new::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 70%, transparent 100%);
}
.product-card__badge--new::after {
  border-color: transparent transparent transparent #048A6A;
}

.product-card__badge--limited {
  background: #EF476F;
  box-shadow: 0 6px 20px rgba(239,71,111,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.product-card__badge--limited::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 70%, transparent 100%);
}
.product-card__badge--limited::after {
  border-color: transparent transparent transparent #B81D45;
}

.product-card__badge--popular {
  background: #F59E0B;
  box-shadow: 0 6px 20px rgba(245,158,11,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.product-card__badge--popular::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.25) 70%, transparent 100%);
}
.product-card__badge--popular::after {
  border-color: transparent transparent transparent #B87A08;
}

.product-card__badge--default {
  background: #64748B;
  box-shadow: 0 6px 20px rgba(100,116,139,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.product-card__badge--default::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.15) 70%, transparent 100%);
}
.product-card__badge--default::after {
  border-color: transparent transparent transparent #475569;
}

@keyframes badgeShine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.product-card:hover .product-card__badge--bestseller {
  transform: skewX(-7deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(255,107,53,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.product-card:hover .product-card__badge--trending {
  transform: skewX(-7deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.product-card:hover .product-card__badge--new {
  transform: skewX(-7deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(6,214,160,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.product-card:hover .product-card__badge--limited {
  transform: skewX(-7deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(239,71,111,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.product-card:hover .product-card__badge--popular {
  transform: skewX(-7deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(245,158,11,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.product-card:hover .product-card__badge--default {
  transform: skewX(-7deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(100,116,139,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}

.product-card__image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card:hover .product-card__image img {
  transform: scale(1.12);
}

.product-card__image .product-card__category {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.15);
}

.product-card__category--cleanser { background: linear-gradient(135deg, #FF6B6B, #EE5A24); }
.product-card__category--toner { background: linear-gradient(135deg, #A29BFE, #6C5CE7); }
.product-card__category--serum { background: linear-gradient(135deg, #FDCB6E, #E17055); }
.product-card__category--moisturizer { background: linear-gradient(135deg, #00B894, #00A381); }
.product-card__category--sunscreen { background: linear-gradient(135deg, #74B9FF, #0984E3); }
.product-card__category--eye-cream { background: linear-gradient(135deg, #FD79A8, #E84393); }
.product-card__category--combo { background: linear-gradient(135deg, #FF6B35, #F7931E); }

.product-card__info {
  padding: 0.5rem 0.7rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  flex: 1;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #003D40;
  line-height: 1.3;
  margin: 0;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6rem;
  letter-spacing: -0.3px;
}

.product-card:hover .product-card__title {
  background: linear-gradient(90deg, #0097A7, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card__meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0.2rem 0;
}

.product-card__stars {
  font-size: 0.85rem;
  color: #0097A7;
  letter-spacing: 1px;
}

.product-card__rating-count {
  font-size: 0.65rem;
  color: #aaa;
  font-weight: 500;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-card__current {
  font-size: 1.1rem;
  font-weight: 800;
  color: #005F6A;
  letter-spacing: -0.3px;
}

.product-card__compare {
  font-size: 0.85rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}

.product-card__save {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(255,107,53,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  animation: savePulse 2s ease-in-out infinite;
  margin-left: auto;
}

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

.product-card:hover .product-card__save {
  box-shadow: 0 5px 15px rgba(255,107,53,0.55);
  transform: scale(1.08);
}

.product-card__desc {
  font-size: 0.88rem;
  color: #2d3a4a;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  padding-left: 0.5rem;
  border-left: 2px solid #0097A7;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-card__compare {
  font-size: 0.85rem;
}

.product-card__save {
  font-size: 0.7rem;
}

.product-card__meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.product-card__meta-item {
  font-size: 0.7rem;
  font-weight: 600;
  color: #005F6A;
  background: linear-gradient(135deg, rgba(0,151,167,0.1), rgba(0,188,212,0.06));
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(0,151,167,0.15);
  letter-spacing: 0.3px;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-card__current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
}

.product-card__compare {
  font-size: 1rem;
  color: #bbb;
  text-decoration: line-through;
}

.product-card__save {
  font-size: 0.8rem;
  font-weight: 700;
  color: #005F6A;
  background: rgba(0,95,106,0.08);
  padding: 0.1rem 0.6rem;
  border-radius: 2rem;
}

.product-card__add {
  margin-top: auto;
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 5rem;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
  text-transform: uppercase;
}

.product-card__add::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.product-card__add::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 5rem;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FF6B35);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.product-card__add:hover {
  background: linear-gradient(135deg, #FF8A5C, #FFB347);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255,107,53,0.5);
}

.product-card__add:hover::before {
  transform: translateX(100%);
}

.product-card__add:hover::after {
  opacity: 1;
}

.product-card__add:active {
  transform: translateY(0) scale(0.97);
}

.product-card__add svg {
  transition: transform 0.3s;
}

.product-card__add:hover svg {
  transform: rotate(-90deg) scale(1.1);
}

.benefits-bar {
  background: linear-gradient(135deg, #D4F1F4 0%, #b8e0e6 100%);
  padding: 0.8rem 0;
}

.benefits-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.benefits-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.benefits-bar__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}

.benefits-bar__title {
  font-size: 1rem;
  font-weight: 600;
}

.benefits-bar__text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.category-section {
  padding: 0.8rem 0;
  background: linear-gradient(180deg, #fff 0%, #f0fafb 50%, #D4F1F4 100%);
  position: relative;
}

.category-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,151,167,0.15), transparent);
}

.category-section .section-header {
  margin-bottom: 0.6rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.category-card {
  background: #fff;
  border: 1px solid rgba(0,151,167,0.1);
  border-radius: 1.2rem;
  padding: 0.8rem 0.4rem 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,151,167,0.04);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0097A7, #00BCD4, #0097A7);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0097A7, transparent);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover::after {
  width: 60%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,151,167,0.15);
  border-color: rgba(0,151,167,0.25);
}

.category-card__icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.4rem;
  color: var(--color-primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0,151,167,0.06);
  border-radius: 50%;
  padding: 0.35rem;
}

.category-card:hover .category-card__icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(0,151,167,0.12);
}

.category-card__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.category-card__title {
  font-family: var(--font-heading--family);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0 0 0.15rem;
  transition: color 0.3s;
  letter-spacing: -0.2px;
}

.category-card:hover .category-card__title {
  color: var(--color-primary);
}

.category-card__count {
  font-size: 0.8rem;
  color: #0097A7;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.category-card:hover .category-card__count {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 989px) {
  .section-header__title {
    font-size: 2.4rem;
  }
  .section-header__desc {
    font-size: 1.4rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mobile-bottom-bar {
  display: none;
}

@media screen and (max-width: 749px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
    z-index: 1000;
    background: rgba(255,255,255,0.38);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    border-top: none;
    border-radius: 2.4rem;
    padding: 0.4rem 0.8rem;
    justify-content: space-around;
    align-items: flex-end;
    box-shadow: 0 8px 40px rgba(0,151,167,0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;
  }

  .mbb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #4B5563;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.6rem 0;
    transition: all 0.2s;
    min-width: 4.4rem;
  }

  .mbb-item .mbb-icon-wrap {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75,85,99,0.06);
    transition: all 0.3s ease;
  }

  .mbb-item svg {
    width: 2rem;
    height: 2rem;
    color: #374151;
    transition: all 0.3s ease;
  }

  .mbb-item:active .mbb-icon-wrap {
    background: rgba(0,151,167,0.12);
    transform: scale(0.92);
  }

  .mbb-item:active svg {
    color: #0097A7;
  }

  .mbb-item--skin {
    margin-top: -1.8rem;
    position: relative;
  }

  .mbb-item--skin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6.8rem;
    height: 6.8rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,151,167,0.2) 0%, transparent 70%);
    animation: mbb-pulse-ring 2s ease-in-out infinite;
    pointer-events: none;
  }

  .mbb-skin-btn {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BCD4, #0097A7, #005F6A);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(0,151,167,0.5), inset 0 -2px 4px rgba(0,0,0,0.15);
    border: 3px solid #fff;
    transition: all 0.3s ease;
    margin-bottom: 0.1rem;
    position: relative;
    overflow: hidden;
  }

  .mbb-skin-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    animation: mbb-shine 3s ease-in-out infinite;
  }

  .mbb-skin-btn svg {
    width: 2.6rem;
    height: 2.6rem;
    color: #fff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  }

  .mbb-skin-btn:active {
    transform: scale(0.92);
    box-shadow: 0 2px 10px rgba(0,151,167,0.3);
  }

  .mbb-item--skin span {
    color: #0097A7;
    font-weight: 700;
    font-size: 0.7rem;
    text-shadow: 0 0 8px rgba(0,151,167,0.2);
  }

  @keyframes mbb-pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
  }

  @keyframes mbb-shine {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
  }

  body {
    padding-bottom: 7.5rem;
  }

  .header__nav {
    display: none;
  }
  .header {
    padding: 0.6rem 0;
  }
  .announcement-bar {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  .header__inner {
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  .header__logo {
    flex: 0 0 auto;
    text-align: left;
  }
  .header__logo-text {
    font-size: 1.4rem;
  }
  .header__search {
    flex: 1;
    max-width: none;
  }
  .header__search-input {
    padding: 0.5rem 0.8rem 0.5rem 2.8rem;
    font-size: 1.1rem;
  }
  .header__search-icon {
    left: 0.8rem;
    width: 1.3rem;
    height: 1.3rem;
  }
  .header__actions {
    gap: 0.3rem;
  }
  .header__actions svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .header__skin-btn {
    display: none !important;
  }
  .header__actions a[href="/account"] {
    display: none !important;
  }
  .header__actions a[href="/wishlist"] {
    display: none !important;
  }
  .header__actions a[href="/cart"] {
    background: #0097A7;
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
  }
  .header__actions a[href="/cart"] svg {
    color: #fff;
    width: 1.6rem;
    height: 1.6rem;
  }
  .cart-count {
    top: -0.2rem;
    right: -0.2rem;
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.7rem;
  }
  .cart-count, .wishlist-count {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.8rem;
  }

  .featured-grid {
    padding: 2rem 0;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-header--row {
    flex-direction: row;
    align-items: center;
  }
  .section-header__title {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  .section-header__desc {
    font-size: 1.2rem;
  }
  .product-slider__wrapper {
    gap: 1.2rem;
  }
  .product-card {
    flex: 0 0 22rem;
  }
  .product-card__image img {
    padding: 0;
  }
  .product-card__info {
    padding: 1rem 1rem 1.2rem;
    gap: 0.4rem;
  }
  .product-card__stars {
    font-size: 1rem;
  }
  .product-card__rating-count {
    font-size: 0.8rem;
  }
  .product-card__title {
    font-size: 1.2rem;
  }
  .product-card__desc {
    font-size: 0.95rem;
    -webkit-line-clamp: 1;
  }
  .product-card__current {
    font-size: 1.4rem;
  }
  .product-card__compare {
    font-size: 1.1rem;
  }
  .product-card__save {
    font-size: 0.85rem;
  }
  .product-card__meta-item {
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
  }
  .product-card__add svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  .product-card__category {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
  }
  .product-slider-nav {
    display: none;
  }
  .product-card__wishlist {
    opacity: 1;
    transform: none;
    width: 2.8rem;
    height: 2.8rem;
  }

  .benefits-bar {
    padding: 1.2rem 0;
  }
  .benefits-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .benefits-bar__item {
    gap: 0.3rem;
  }
  .benefits-bar__icon svg {
    width: 2rem;
    height: 2rem;
  }
  .benefits-bar__title {
    font-size: 1.1rem;
  }
  .benefits-bar__text {
    font-size: 0.9rem;
  }

  .category-section {
    padding: 2rem 0;
  }
  .category-grid {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card {
    flex: 0 0 10rem;
    scroll-snap-align: start;
    padding: 1rem 0.6rem;
    border-radius: 1.2rem;
  }
  .category-card__icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.3rem;
  }
  .category-card__title {
    font-size: 1rem;
  }
  .category-card__count {
    font-size: 0.8rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
  }
  .footer__heading {
    font-size: 1.2rem;
    margin-bottom: 0;
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    user-select: none;
  }
  .footer__col .footer__arrow {
    display: block;
    color: rgba(255,255,255,0.4);
  }
  .footer__links {
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
  }
  .footer__col--open .footer__links {
    max-height: 30rem;
    padding: 0.5rem 0 1rem;
  }
  .footer__links a {
    font-size: 1.1rem;
    padding: 0.4rem 0;
  }
  .footer__brand {
    margin-bottom: 1rem;
  }
  .footer__brand p {
    font-size: 1.1rem;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__newsletter {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .footer__newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  .footer__newsletter-form input {
    min-width: 0;
    width: 100%;
  }
  .footer__newsletter-form button {
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding-top: 1.2rem;
  }
  .footer__copyright {
    font-size: 1rem;
  }

  .hero-section {
    padding: 0;
  }
  .hero-section__inner {
    min-height: 18rem;
    border-radius: 0;
  }
  .hero-section__content {
    padding: 1rem 1.2rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-section__subtitle {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    margin: 0 auto 0.3rem;
    gap: 0.3rem;
  }
  .hero-section__subtitle-dot {
    width: 0.4rem;
    height: 0.4rem;
  }
  .hero-section__title {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  .hero-section__text {
    font-size: 0.95rem;
    margin: 0 auto 0.5rem;
    max-width: 100%;
  }
  .hero-section__actions {
    flex-direction: row;
    justify-content: center;
    gap: 0.4rem;
  }
  .hero-section__actions .btn--primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    max-width: none;
    width: auto;
    gap: 0.4rem;
  }
  .hero-section__actions .btn--primary svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .hero-section__actions .btn--secondary {
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    width: auto;
    max-width: none;
  }
  .hero-section__stats {
    gap: 0.8rem;
    margin-top: 0.4rem;
    padding-top: 0.3rem;
    justify-content: center;
  }
  .hero-section__stat-item {
    text-align: center;
  }
  .hero-section__stat-number {
    font-size: 1rem;
  }
  .hero-section__stat-label {
    font-size: 0.65rem;
  }
  .hero-section__decor {
    display: none;
  }

  .category-section {
    padding: 0.5rem 0;
  }
  .category-section .section-header {
    margin-bottom: 0.4rem;
  }
  .category-section .section-header__title {
    font-size: 1.2rem;
  }
  .category-grid {
    gap: 0.4rem;
  }
  .category-card {
    flex: 0 0 7rem;
    padding: 0.5rem 0.3rem;
    border-radius: 0.8rem;
  }
  .category-card__icon {
    width: 1.4rem;
    height: 1.4rem;
    margin-bottom: 0.15rem;
  }
  .category-card__title {
    font-size: 0.75rem;
  }
  .category-card__count {
    font-size: 0.65rem;
  }

  .featured-grid {
    padding: 0.5rem 0;
  }
  .featured-grid .section-header {
    margin-bottom: 0.4rem;
  }
  .featured-grid .section-header__title {
    font-size: 1.2rem;
  }
  .product-slider__wrapper {
    gap: 0.6rem;
  }
  .product-card {
  flex: 0 0 18rem;
  }
  .product-card__image img {
    padding: 0;
  }
  .product-card__info {
    padding: 0.5rem 0.6rem 0.6rem;
    gap: 0.2rem;
  }
.product-card__stars {
  font-size: 0.9rem;
}

.product-card__rating-count {
  font-size: 0.7rem;
}

.product-card__current {
  font-size: 1.1rem;
}
  .product-card__rating-count {
    font-size: 0.65rem;
  }
  .product-card__title {
    font-size: 0.9rem;
  }
  .product-card__desc {
    font-size: 0.75rem;
    display: none;
  }
  .product-card__price {
    gap: 0.3rem;
  }
  .product-card__current {
    font-size: 1.1rem;
  }
  .product-card__compare {
    font-size: 0.85rem;
  }
  .product-card__save {
    font-size: 0.7rem;
  }
  .product-card__meta-item {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
  }
  }
  .product-card__add svg {
    width: 1.1rem;
    height: 1.1rem;
  }
  .product-card__category {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
  .product-card__wishlist {
    width: 2.2rem;
    height: 2.2rem;
  }
  .product-card__wishlist svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .announcement-bar {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
  .header {
    padding: 0.6rem 0;
  }
  .header__logo-text {
    font-size: 1.4rem;
  }
  .header__search-input {
    padding: 0.5rem 0.8rem 0.5rem 2.8rem;
    font-size: 1.1rem;
  }
  .header__search-icon {
    left: 0.7rem;
    width: 1.3rem;
    height: 1.3rem;
  }
  .header__actions svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .header__actions a[href="/cart"] {
    width: 2.8rem;
    height: 2.8rem;
    padding: 0.4rem;
  }
  .header__actions a[href="/cart"] svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  .cart-count, .wishlist-count {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.75rem;
  }
  .wishlist-count {
    top: -0.4rem;
    right: -0.4rem;
  }

  .benefits-bar {
    display: none;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-header__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #003D40;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-header__desc {
  font-size: 1.3rem;
  color: #5a7a8a;
  margin: 0;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.section-header--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}
.section-header--row .section-header__desc {
  margin-left: 0;
  margin-right: 0;
}
.product-slider-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.product-slider-nav__view {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0097A7;
  text-decoration: none;
  transition: all 0.3s;
}
.product-slider-nav__view:hover {
  gap: 0.6rem;
  color: #005F6A;
}
.product-slider-btn {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(0,151,167,0.12);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-card__wishlist {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card__wishlist:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255,107,53,0.1);
}
.product-card__wishlist:hover svg {
  color: #FF6B35;
}
.product-card__wishlist svg {
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(0,61,64,0.2);
  transition: color 0.3s;
}
.product-card__save {
  font-size: 0.65rem;
  color: #FF6B35;
  font-weight: 700;
  background: rgba(255,107,53,0.06);
  padding: 0.1rem 0.5rem;
  border-radius: 0.3rem;
  margin-left: 0.3rem;
}

@media screen and (max-width: 749px) {
  .section-header__title { font-size: 1.4rem; }
  .section-header__desc { font-size: 1rem; }
  .product-slider-nav { display: none; }
  .product-card { flex: 0 0 16rem; }
}

@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)}}
@keyframes floatSlow{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}
@keyframes slideUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
@keyframes pulse-ring{0%{transform:scale(0.95);opacity:0.6}50%{transform:scale(1.15);opacity:0.15}100%{transform:scale(0.95);opacity:0.6}}
@keyframes orbit{0%{transform:rotate(0deg) translateX(100px) rotate(0deg)}100%{transform:rotate(360deg) translateX(100px) rotate(-360deg)}}
@keyframes orbitSlow{0%{transform:rotate(0deg) translateX(140px) rotate(0deg)}100%{transform:rotate(-360deg) translateX(140px) rotate(360deg)}}
@keyframes sparkle{0%,100%{opacity:0;transform:scale(0)}50%{opacity:1;transform:scale(1)}}
@keyframes borderGlow{0%,100%{border-color:rgba(0,151,167,0.06)}50%{border-color:rgba(0,151,167,0.18)}}
@keyframes glowPulse{0%,100%{opacity:0.4;transform:scale(1)}50%{opacity:0.8;transform:scale(1.05)}}
@keyframes shine{0%{background-position:-200% 0}100%{background-position:200% 0}}
@keyframes rotateGlow{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
@keyframes badgePop{0%{opacity:0;transform:scale(0) translateY(10px)}60%{transform:scale(1.1) translateY(-2px)}100%{opacity:1;transform:scale(1) translateY(0)}}
@keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@keyframes tiltShine{0%{background-position:-200% 0}100%{background-position:200% 0}}
@keyframes countUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
