/* ============================================
   LuxeMart E-Commerce — Clean & Minimalistic
   Color Palette: Teal, Coral, White
   ============================================ */

:root {
  --teal-900: #0d4f4f;
  --teal-700: #0f766e;
  --teal-500: #14b8a6;
  --teal-300: #5eead4;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;

  --coral-600: #e85d4c;
  --coral-500: #ff6b5b;
  --coral-400: #ff8a7a;
  --coral-100: #ffe4e1;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --header-height: 72px;
  --announcement-height: 36px;
  --main-nav-height: 48px;
  --site-header-sticky-top: calc(var(--announcement-height) + var(--header-height) + var(--main-nav-height) + 24px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--teal-900);
  color: var(--teal-100);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.announcement-bar strong {
  color: var(--coral-400);
}

/* ---- Page layout ---- */
.page-main {
  padding: 40px 0 80px;
  min-height: 60vh;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo__accent {
  color: var(--teal-700);
}

.search-bar {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-bar__input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.search-bar__input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
  background: var(--white);
}

.search-bar__btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--teal-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.search-bar__btn:hover {
  background: var(--teal-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}

.header-action:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

.header-action__label {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge {
  position: absolute;
  top: 2px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--coral-500);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge--wishlist {
  background: var(--teal-700);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Nav */
.main-nav {
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.main-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.main-nav__link {
  display: block;
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  position: relative;
  transition: color var(--transition);
}

.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--teal-500);
  border-radius: 3px 3px 0 0;
  transition: width var(--transition);
}

.main-nav__link:hover,
.main-nav__link--highlight {
  color: var(--teal-700);
}

.main-nav__link:hover::after,
.main-nav__link--highlight::after {
  width: 60%;
}

.main-nav__link--sale {
  color: var(--coral-500);
}

.main-nav__link--sale:hover,
.main-nav__link--sale.main-nav__link--highlight {
  color: var(--coral-600);
}

.main-nav__link--sale::after {
  background: var(--coral-500);
}

.main-nav__link--sale.main-nav__link--highlight::after {
  width: 60%;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.btn--primary:hover {
  background: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.btn--coral {
  background: var(--coral-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 91, 0.35);
}

.btn--coral:hover {
  background: var(--coral-600);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.9375rem;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--teal-700);
  color: var(--teal-700);
}

.btn--outline:hover {
  background: var(--teal-700);
  color: var(--white);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

/* ---- Hero Carousel ---- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  max-height: 800px;
  overflow: hidden;
}

.hero__carousel {
  height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__slide--active .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 79, 79, 0.88) 0%, rgba(13, 79, 79, 0.55) 45%, rgba(13, 79, 79, 0.2) 100%);
}

.hero__overlay--teal {
  background: linear-gradient(105deg, rgba(15, 118, 110, 0.85) 0%, rgba(15, 118, 110, 0.4) 100%);
}

.hero__overlay--coral {
  background: linear-gradient(105deg, rgba(232, 93, 76, 0.8) 0%, rgba(13, 79, 79, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
  max-width: 640px;
}

.hero__tag {
  display: inline-block;
  background: var(--coral-500);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  width: fit-content;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__title-accent {
  color: var(--coral-400);
}

.hero__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 480px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.countdown__item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 72px;
  text-align: center;
}

.countdown__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.countdown__sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral-400);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.hero__arrow:hover {
  background: var(--white);
  color: var(--teal-700);
}

.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  transition: all var(--transition);
  padding: 0;
}

.hero__dot--active,
.hero__dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
}

/* ---- Categories ---- */
.categories {
  background: var(--gray-50);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card__img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--teal-100);
  transition: border-color var(--transition);
}

.category-card:hover .category-card__img-wrap {
  border-color: var(--teal-500);
}

.category-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card__label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-800);
}

.product-card__name a {
  color: inherit;
  transition: color var(--transition);
}

.product-card__name a:hover {
  color: var(--teal-700);
}
.products-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 260px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__badge--new {
  background: var(--teal-700);
  color: var(--white);
}

.product-card__badge--sale {
  background: var(--coral-500);
  color: var(--white);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .product-card__wishlist,
.product-card__wishlist.active {
  opacity: 1;
  transform: scale(1);
}

.product-card__wishlist:hover,
.product-card__wishlist.active {
  color: var(--coral-500);
  background: var(--coral-100);
}

.product-card__body {
  padding: 20px;
}

.product-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  margin-bottom: 6px;
}

.product-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.product-card__rating-text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.product-card__price--sale {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--coral-500);
}

.product-card__price--original {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

.product-card__actions .btn {
  flex: 1;
}

.product-card__actions .btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition);
  flex-shrink: 0;
}

.product-card__actions .btn-icon:hover,
.product-card__actions .btn-icon.active {
  border-color: var(--coral-500);
  color: var(--coral-500);
  background: var(--coral-100);
}

/* Carousel Nav */
.carousel-nav {
  display: flex;
  gap: 8px;
}

.carousel-nav__btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition);
}

.carousel-nav__btn:hover {
  border-color: var(--teal-700);
  color: var(--teal-700);
  background: var(--teal-50);
}

/* ---- New Arrivals ---- */
.new-arrivals {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-50) 100%);
}

/* ---- Special Offer ---- */
.special-offer {
  padding: 60px 0;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 60%, var(--teal-500) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 400px;
}

.offer-card__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-card__badge {
  display: inline-block;
  background: var(--coral-500);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  width: fit-content;
}

.offer-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.offer-card__desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 400px;
}

.coupon-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: inline-block;
}

.coupon-box__code {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--coral-400);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.coupon-box__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-card__note {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--teal-300);
  min-height: 1.4em;
}

.offer-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.offer-card__circle--1 {
  width: 300px;
  height: 300px;
  animation: pulse 4s ease-in-out infinite;
}

.offer-card__circle--2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 107, 91, 0.15);
  animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.offer-card__percent {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.offer-card__percent span {
  font-size: 3rem;
  vertical-align: super;
}

/* ---- Trust Badges ---- */
.trust-badges {
  padding: 48px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.trust-badge svg {
  color: var(--teal-700);
  flex-shrink: 0;
}

.trust-badge strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.trust-badge span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ---- Footer ---- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo__text {
  color: var(--white);
}

.footer__desc {
  margin: 16px 0 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--teal-700);
  color: var(--white);
}

.footer__heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal-300);
}

.footer__newsletter-text {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer__newsletter {
  display: flex;
  gap: 8px;
}

.footer__newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}

.footer__newsletter input::placeholder {
  color: var(--gray-500);
}

.footer__newsletter input:focus {
  border-color: var(--teal-500);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8125rem;
}

.footer__payments {
  display: flex;
  gap: 12px;
}

.payment-icon {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: var(--gray-900);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.9375rem;
  font-weight: 500;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 360px;
  border-left: 4px solid var(--teal-500);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast--success {
  border-left-color: var(--teal-500);
}

.toast--error {
  border-left-color: var(--coral-500);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 240px;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card__visual {
    min-height: 200px;
  }

  .trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .header__inner {
    gap: 12px;
  }

  .search-bar {
    display: none;
  }

  .header-action__label {
    display: none;
  }

  .header-action {
    padding: 8px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    border-top: none;
  }

  :root {
    --main-nav-height: 0px;
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav__list {
    flex-direction: column;
    padding: 8px 0;
  }

  .main-nav__link {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .hero {
    height: 70vh;
    min-height: 480px;
  }

  .hero__content {
    padding-bottom: 80px;
  }

  .countdown__item {
    min-width: 56px;
    padding: 8px 10px;
  }

  .countdown__value {
    font-size: 1.25rem;
  }

  .hero__arrow {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section__header--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 220px;
  }

  .offer-card__content {
    padding: 40px 28px;
  }

  .offer-card__percent {
    font-size: 5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-card__img-wrap {
    width: 100px;
    height: 100px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex: 0 0 85%;
    min-width: 0;
  }

  .trust-badges__grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__newsletter {
    flex-direction: column;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
