/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  --primary: #1a1a1a;
  --primary-light: #2d2d2d;
  --accent: #c2185b;
  --accent-light: #e91e63;
  --accent-bg: #fce4ec;
  --gold: #f59e0b;
  --white: #ffffff;
  --off-white: #fafafa;
  --grey1: #f5f5f5;
  --grey2: #eeeeee;
  --grey3: #bdbdbd;
  --grey4: #9e9e9e;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #888888;
  --sale-color: #d32f2f;
  --success: #388e3c;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --header-height: 64px;
}

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.announcement-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey2);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
  gap: 24px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  /* Reduced from 26px font size to a reasonable image height */
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.site-logo:hover img {
  transform: scale(1.05);
}

.footer-logo img {
  height: 50px;
  /* Slightly larger for footer */
}

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

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: var(--grey1);
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  margin-left: -8px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* ===========================
   SEARCH OVERLAY
   =========================== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  width: 100%;
  max-width: 560px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

#search-input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--font-body);
  background: transparent;
}

.search-close {
  padding: 18px 20px;
  font-size: 18px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--accent);
}

/* Search Results */
.search-overlay {
  flex-direction: column;
  align-items: center;
}

.search-results {
  width: 100%;
  max-width: 560px;
  margin: 8px 20px 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-height: 60vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--grey2);
  transition: background var(--transition);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--grey1);
}

.sri-img {
  width: 60px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--grey1);
}

.sri-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sri-info {
  flex: 1;
  min-width: 0;
}

.sri-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.sri-cat {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.sri-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sri-sp {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.sri-mrp {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: line-through;
}

.sri-off {
  font-size: 11px;
  font-weight: 700;
  color: var(--sale-color);
}

.sri-add-btn {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.sri-add-btn:hover {
  background: var(--accent);
  transform: scale(1.04);
}

.search-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 36px);
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  background: linear-gradient(135deg, #f8e8e8 0%, #fce4ec 50%, #f3e5f5 100%);
}

.hero-slide {
  min-height: calc(100vh - var(--header-height) - 36px);
  display: flex;
  align-items: center;
  padding: 60px 12px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent) 0%, #7b1fa2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-width: 64px;
}

.timer-box span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.timer-box small {
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 3px;
}

.timer-sep {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.35);
}

.full-width {
  width: 100%;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.4);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.hero-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-card {
  width: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.hero-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-xl);
}

.hero-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-card-tag {
  background: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px;
  color: var(--text-dark);
}

.card-1 {
  transform: rotate(-3deg) translateY(8px);
}

.card-2 {
  transform: translateY(-8px);
}

.card-3 {
  transform: rotate(3deg) translateY(8px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ===========================
   CATEGORY STRIP
   =========================== */
.category-strip {
  padding: 64px 0;
  background: var(--off-white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.view-all-link:hover {
  opacity: 0.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
}

.cat-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.category-card:hover .cat-img {
  box-shadow: var(--shadow-lg);
}

.cat-img svg {
  width: 40%;
  height: 40%;
}

.category-card span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
}

.category-card.featured .cat-img {
  box-shadow: 0 8px 24px rgba(107, 27, 162, 0.35);
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section {
  padding: 64px 0;
}

.products-section:nth-child(even) {
  background: var(--off-white);
}

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

/* ===========================
   PRODUCT CARD
   =========================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  cursor: pointer;
}

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

.product-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--grey1);
}

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

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.product-badge.sale {
  background: var(--sale-color);
}

.quick-add-btn {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: bottom var(--transition);
  z-index: 3;
  border: none;
  cursor: pointer;
}

.product-card:hover .quick-add-btn {
  bottom: 0;
}

.quick-add-btn:hover {
  background: var(--accent);
}

.product-info {
  padding: 14px 14px 16px;
}

.product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.product-mrp {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--sale-color);
}

.product-buy-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.product-buy-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
  padding: 48px 0;
  background: var(--grey1);
}

.promo-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-card {
  border-radius: var(--radius-xl);
  padding: 48px 42px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

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

.promo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.promo-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 28px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ===========================
   USP STRIP
   =========================== */
.usp-strip {
  padding: 48px 0;
  background: var(--primary);
  color: var(--white);
}

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

.usp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition);
}

.usp-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.usp-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.usp-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.usp-text strong {
  font-size: 14px;
  font-weight: 700;
}

.usp-text span {
  font-size: 12px;
  opacity: 0.65;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #111111;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links-group li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-tags {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  background: #111111;
}

.tags-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-list a {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}

.tags-list a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  background: #0a0a0a;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ===========================
   CART DRAWER
   =========================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh; /* Modern fix for mobile URL bar */
  background: var(--white);
  z-index: 700;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey2);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-close:hover {
  background: var(--grey1);
  color: var(--accent);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 60px;
  text-align: center;
}

.cart-empty p {
  color: var(--text-muted);
  font-size: 15px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey1);
}

.cart-item-img {
  width: 72px;
  height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--grey3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.qty-num {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  align-self: flex-start;
  font-size: 16px;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--accent);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--grey2);
  background: var(--off-white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cart-total strong {
  font-size: 20px;
  font-weight: 700;
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 650;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 900;
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--grey2);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 600;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    box-shadow: var(--shadow-md);
  }

  .nav-link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--grey1);
    font-size: 16px;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .hero-slide {
    flex-direction: column;
    padding: 32px 20px 60px;
    min-height: auto;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-cards {
    gap: 10px;
  }

  .hero-card {
    width: 100px;
  }

  .hero-card-img {
    height: 130px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .promo-inner {
    grid-template-columns: 1fr;
  }

  .promo-card {
    padding: 32px 24px;
  }

  .promo-card h3 {
    font-size: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .hero-timer .timer-box {
    min-width: 52px;
    padding: 8px 12px;
  }

  .hero-timer .timer-box span {
    font-size: 20px;
  }

  .hero-badge {
    font-size: 16px;
    padding: 8px 12px;
  }
}