/* ============================================
   DropZone — Premium Dark E-Commerce CSS
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-hover: #1a1a1a;
  --border: #222;
  --border-light: #2a2a2a;
  --accent: #00e5a0;
  --accent-hover: #00c98b;
  --accent-glow: rgba(0, 229, 160, 0.15);
  --accent-glow-strong: rgba(0, 229, 160, 0.25);
  --text: #f0f0f0;
  --text-secondary: #999;
  --text-muted: #666;
  --white: #fff;
  --error: #ff4757;
  --error-glow: rgba(255, 71, 87, 0.15);
  --success: #00e5a0;
  --success-glow: rgba(0, 229, 160, 0.1);
  --warning: #ffa502;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 229, 160, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ----- Visually Hidden (accessibility) ----- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.announcement__sep {
  opacity: 0.4;
  font-size: 0.6rem;
}

.announcement a {
  color: var(--bg);
  text-decoration: underline;
  font-weight: 700;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: opacity var(--transition);
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo span {
  color: var(--accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

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

.header__link:hover {
  color: var(--white);
}

.header__link:hover::after {
  width: 100%;
}

.header__link--active {
  color: var(--white);
}

.header__link--active::after {
  width: 100%;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.header__cart:hover {
  color: var(--white);
}

.header__cart-icon {
  width: 22px;
  height: 22px;
}

.header__cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 64px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 229, 160, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 150, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(229, 0, 150, 0.06) 0%, transparent 50%);
  animation: meshMove 15s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes meshMove {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
  100% { transform: scale(1.1) rotate(2deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 160, 0.2);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease forwards;
}

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

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero__title span {
  background: linear-gradient(135deg, var(--accent), #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero__cta {
  display: inline-block;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition);
}

.trust__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-light);
}

.trust__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.trust__desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.products__heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: -0.5px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ----- Product Card ----- */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-light);
}

.product-card__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--bg);
  overflow: hidden;
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.product-card__info {
  padding: 14px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.product-card__price-current {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
  padding: 32px 0 64px;
  animation: fadeIn 0.4s ease;
}

.product-detail__layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-detail__gallery {
  width: 100%;
}

.product-detail__image {
  width: 100%;
  border-radius: var(--radius);
  background: var(--surface);
  aspect-ratio: 1;
  max-height: 55vw; /* mobile: cap so rating stays above fold */
  object-fit: cover;
  border: 1px solid var(--border);
}

.product-detail__thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.product-detail__thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.product-detail__thumb--active,
.product-detail__thumb:hover {
  border-color: var(--accent);
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-detail__breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-detail__breadcrumb a {
  color: var(--accent);
  transition: opacity var(--transition);
}

.product-detail__breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.product-detail__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.product-detail__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.product-detail__price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-detail__price-current {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.product-detail__price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-detail__price-badge {
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-detail__desc,
.product-detail__description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.product-detail__shipping {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.product-detail__quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-detail__quantity-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.product-detail__quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.product-detail__quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--text);
  transition: background var(--transition);
}

.product-detail__quantity-btn:hover {
  background: var(--surface-hover);
}

.product-detail__quantity-value {
  width: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--bg);
}

.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.product-detail__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-detail__feature-icon {
  color: var(--accent);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: none;
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 229, 160, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--secondary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn--large {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.btn--disabled,
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart {
  padding: 32px 0 64px;
  flex: 1;
  animation: fadeIn 0.4s ease;
}

.cart__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.cart__layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart__empty {
  text-align: center;
  padding: 64px 16px;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ----- Cart Item ----- */
.cart-item,
.cart__item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.cart-item:hover,
.cart__item:hover {
  border-color: var(--border-light);
}

.cart-item__image,
.cart__item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
}

.cart-item__details,
.cart__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item__name,
.cart__item-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.cart-item__price,
.cart__item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.cart-item__controls,
.cart__item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart__item-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  background: var(--surface-hover);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}

.cart__item-qty button:hover {
  background: var(--border);
  border-color: var(--border-light);
}

.cart__item-qty span {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-item__qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
  transition: background var(--transition);
}

.cart-item__qty-btn:hover {
  background: var(--surface-hover);
}

.cart-item__qty-value {
  width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.cart-item__remove,
.cart__item-remove {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  text-align: left;
  width: fit-content;
}

.cart-item__remove:hover,
.cart__item-remove:hover {
  color: var(--error);
}

/* ----- Cart Summary ----- */
.cart-summary,
.cart__summary {
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cart-summary__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-summary__row--total {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.cart-summary__checkout {
  margin-top: 20px;
}

.cart-summary__note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ----- Cart Empty ----- */
.cart-empty {
  text-align: center;
  padding: 64px 16px;
}

.cart-empty__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.cart-empty__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-empty__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   INFO PAGES (Success, Contact, Policy, 404)
   ============================================ */
.info-page {
  flex: 1;
  padding: 48px 0;
  animation: fadeIn 0.4s ease;
}

.info-page__content {
  max-width: 680px;
  margin: 0 auto;
}

/* ----- Success Page ----- */
.success {
  text-align: center;
}

.success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success-glow);
  color: var(--accent);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(0, 229, 160, 0.2);
}

.success__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.success__text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.success__text a {
  color: var(--accent);
  font-weight: 600;
}

.success__text a:hover {
  text-decoration: underline;
}

.success__estimate {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin: 16px 0 32px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ----- Contact Page ----- */
.contact__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact__section {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact__section:hover {
  border-color: var(--border-light);
}

.contact__section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.contact__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 4px;
}

.contact__email {
  color: var(--accent) !important;
  font-weight: 600;
}

.contact__email:hover {
  text-decoration: underline;
}

/* ----- Policy Page ----- */
.policy__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.policy__updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.policy__section {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy__section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.policy__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy__text a {
  color: var(--accent) !important;
  font-weight: 600;
}

.policy__text a:hover {
  text-decoration: underline;
}

.policy__text strong {
  color: var(--text);
}

.policy__highlight {
  background: var(--accent-glow);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 12px 0;
}

.policy__highlight strong {
  color: var(--text);
}

/* ----- 404 Page ----- */
.error-page {
  text-align: center;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.6;
}

.error-page__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.error-page__text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  margin-top: auto;
  padding: 40px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.footer__logo span {
  color: var(--accent);
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer__bottom {
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.faq__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.faq__group {
  margin-bottom: 28px;
}

.faq__group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item:hover {
  border-color: var(--border-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 12px;
  transition: color var(--transition);
}

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

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer-inner {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq__answer-inner a {
  color: var(--accent);
  font-weight: 600;
}

.faq__answer-inner a:hover {
  text-decoration: underline;
}

/* ============================================
   TIKTOK LANDING PAGE
   ============================================ */
.tiktok-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.06) 0%, rgba(255, 0, 80, 0.04) 50%, rgba(0, 200, 255, 0.06) 100%);
  border-bottom: 1px solid var(--border);
}

.tiktok-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 80, 0.1);
  color: #ff0050;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 0, 80, 0.2);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tiktok-hero__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.tiktok-hero__title span {
  background: linear-gradient(135deg, #ff0050, #00f2ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tiktok-hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.tiktok-hero__follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--text);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.tiktok-hero__follow:hover {
  border-color: #ff0050;
  color: #ff0050;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.about__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about__section {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about__section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.about__value-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__value-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.about__value-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.loading::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   ERROR STATE
   ============================================ */
.error {
  text-align: center;
  padding: 48px 16px;
}

.error__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.error__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--error);
}

.error__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.error-msg {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   TOAST / NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface);
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
}

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

.toast--success {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.toast--error {
  background: var(--error);
  color: var(--white);
  border-color: var(--error);
}

/* ============================================
   GRAIN OVERLAY (subtle texture)
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding: 0 24px;
  }

  /* Header */
  .header__logo {
    font-size: 1.6rem;
  }

  .header__nav {
    gap: 28px;
  }

  /* Hero */
  .hero {
    padding: 80px 0;
    min-height: 400px;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  /* Trust */
  .trust {
    padding: 40px 0;
  }

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

  /* Products */
  .products {
    padding: 56px 0 72px;
  }

  .products__heading {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

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

  .product-card__name {
    font-size: 0.9rem;
  }

  .product-card__info {
    padding: 16px;
  }

  /* Product Detail */
  .product-detail {
    padding: 40px 0 80px;
  }

  .product-detail__layout {
    flex-direction: row;
    gap: 40px;
  }

  .product-detail__gallery {
    flex: 1;
    max-width: 50%;
  }

  .product-detail__info {
    flex: 1;
  }

  .product-detail__title,
  .product-detail__name {
    font-size: 1.8rem;
  }

  .product-detail__actions {
    flex-direction: row;
  }

  /* Cart */
  .cart__layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .cart__items {
    flex: 1;
  }

  .cart-summary {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + 20px);
  }

  .cart-item__image,
  .cart__item-img {
    width: 100px;
    height: 100px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    text-align: left;
  }

  /* Announcement */
  .announcement {
    font-size: 0.78rem;
  }

  .announcement__inner {
    gap: 12px;
  }

  /* About */
  .about__values {
    grid-template-columns: 1fr 1fr;
  }

  /* TikTok */
  .tiktok-hero {
    padding: 64px 0;
  }

  .tiktok-hero__title {
    font-size: 2.8rem;
  }

  /* Info pages */
  .success__title {
    font-size: 2rem;
  }

  .contact__title,
  .policy__title,
  .faq__title,
  .about__title {
    font-size: 2rem;
  }

  .error-page__code {
    font-size: 7rem;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* Hero */
  .hero {
    padding: 100px 0;
    min-height: 480px;
  }

  .hero__title {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }

  .hero__subtitle {
    font-size: 1.2rem;
    max-width: 580px;
  }

  /* Trust — 4 columns on desktop */
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Products */
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .product-card__info {
    padding: 18px;
  }

  .product-card__name {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  /* Product Detail */
  .product-detail__layout {
    gap: 56px;
  }

  .product-detail__title,
  .product-detail__name {
    font-size: 2rem;
  }

  .product-detail__price-current {
    font-size: 2.2rem;
  }

  /* Cart */
  .cart-summary {
    width: 360px;
  }

  .cart-item,
  .cart__item {
    gap: 20px;
    padding: 20px;
  }

  .cart-item__image,
  .cart__item-img {
    width: 120px;
    height: 120px;
  }

  .cart-item__name,
  .cart__item-name {
    font-size: 1rem;
  }

  /* TikTok */
  .tiktok-hero__title {
    font-size: 3.5rem;
  }

  /* Info pages */
  .success__title {
    font-size: 2.2rem;
  }

  .error-page__code {
    font-size: 9rem;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 4rem;
  }
}

/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

/* ============================================
   FOCUS STYLES (accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent, #00e5a0);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
/* Custom cursor removed — was hiding native cursor and causing UX issues */

/* ============================================
   SPLIT TYPE OVERRIDES
   ============================================ */
.hero__title .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
}

/* ============================================
   PARTICLES CONTAINER
   ============================================ */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   PRODUCT DETAIL — ENHANCED
   ============================================ */
.product-detail__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.product-detail__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  object-fit: cover;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.product-detail__thumb--active,
.product-detail__thumb:hover {
  border-color: var(--accent);
}

.product-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product-detail__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 1px;
}

.product-detail__rating-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-detail__sold {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-glow, rgba(0,229,160,0.1));
  padding: 3px 10px;
  border-radius: 20px;
}

.product-detail__trending {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-glow, rgba(0,229,160,0.1));
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.product-detail__price-save {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.product-detail__feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}

.product-detail__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.product-detail__feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.product-detail__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 16px;
}

.product-detail__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}

.product-detail__trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-detail__trust-item strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.product-detail__trust-item span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ----- Product Trust Badge Strip ----- */
.product-detail__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-detail__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.product-detail__trust-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.product-detail__trust-social {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.product-detail__trust-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ----- Product Payment Icons ----- */
.product-detail__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-detail__payment-icons svg {
  opacity: 0.5;
  transition: opacity var(--transition);
  border-radius: 4px;
}

.product-detail__payment-icons svg:hover {
  opacity: 0.8;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.product-detail__below-fold {
  padding: 0 0 48px;
}

.reviews {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.reviews__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.reviews__summary {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.reviews__avg {
  text-align: center;
  min-width: 120px;
}

.reviews__avg-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.reviews__avg-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.reviews__avg-count {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.reviews__bars {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews__bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__bar-label {
  width: 30px;
  font-size: 0.8rem;
  color: #f5a623;
  text-align: right;
}

.reviews__bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.reviews__bar-fill {
  height: 100%;
  background: #f5a623;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.reviews__bar-pct {
  width: 36px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.review:hover {
  border-color: var(--border-light);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review__stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.review__verified {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-glow, rgba(0,229,160,0.1));
  padding: 2px 8px;
  border-radius: 10px;
}

.review__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.review__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

.reviews__empty {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.related__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.related__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.related__grid::-webkit-scrollbar {
  height: 4px;
}

.related__grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.related__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 160px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
}

.related__card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.related__info {
  padding: 12px;
}

.related__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.related__price-original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 4px;
}

.related__price-discount {
  color: #ff4757;
  font-weight: 600;
  font-size: 0.7em;
  margin-left: 6px;
  padding: 1px 6px;
  background: rgba(255, 71, 87, 0.15);
  border-radius: 4px;
}

@media (min-width: 768px) {
  .related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
  }

  .related__card {
    min-width: 0;
  }

  .product-detail__thumbs {
    gap: 10px;
  }

  .product-detail__thumb {
    width: 80px;
    height: 80px;
  }

  .reviews {
    padding-left: 24px;
    padding-right: 24px;
  }

  .related {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================
   CART CROSS-SELL
   ============================================ */
.cart-crosssell {
  margin: 24px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cart-crosssell__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.cart-crosssell__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.cart-crosssell__grid::-webkit-scrollbar {
  height: 4px;
}

.cart-crosssell__grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.cart-crosssell__card {
  display: flex;
  gap: 12px;
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.cart-crosssell__card:hover {
  border-color: var(--accent);
}

.cart-crosssell__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}

.cart-crosssell__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.cart-crosssell__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.cart-crosssell__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.cart-crosssell__price-original {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.btn--small {
  padding: 5px 12px;
  font-size: 0.7rem;
  border-radius: 4px;
}

.cart-crosssell__add {
  align-self: flex-start;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .cart-crosssell__grid {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .cart-crosssell__card {
    min-width: 0;
    flex: 1 1 calc(33.333% - 8px);
  }
}

/* ============================================
   MOBILE STICKY ADD TO CART
   ============================================ */
@media (max-width: 767px) {
  .product-detail__actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .product-detail__below-fold {
    padding-bottom: 80px;
  }
}

/* ============================================
   DISCOUNT & BADGE STYLES
   ============================================ */
.product-card__price-discount,
.product-detail__price-discount {
  color: #ff4757;
  font-weight: 600;
  font-size: 0.8em;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(255, 71, 87, 0.15);
  border-radius: 4px;
}

.product-card__badge--trending {
  background: rgba(0, 229, 160, 0.2);
  color: #00E5A0;
}

.product-card__badge--bestseller {
  background: rgba(255, 165, 0, 0.2);
  color: #FFA500;
}

.product-card__badge--new {
  background: rgba(99, 102, 241, 0.2);
  color: #6366F1;
}

/* ============================================
   CART DISCOUNT INPUT
   ============================================ */
.cart__discount {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cart__discount-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  flex: 1;
  min-width: 140px;
  transition: border-color var(--transition);
}

.cart__discount-input:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cart__discount-applied {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ----- Free Shipping Bar ----- */
.cart__shipping-bar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.cart__shipping-bar--done {
  border-color: var(--accent);
}

.cart__shipping-progress {
  position: absolute;
  inset: 0 auto 0 0;
  background: rgba(0, 229, 160, 0.12);
  transition: width 0.5s ease;
  pointer-events: none;
}

.cart__shipping-text {
  position: relative;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.cart__shipping-text strong {
  color: var(--accent);
}

/* ----- Cart Trust Badges ----- */
.cart__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cart__trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.cart__trust-badge svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ----- Express Pay (Apple Pay / Google Pay) ----- */
.cart__express-pay {
  margin-bottom: 12px;
}

.cart__express-pay #payment-request-button {
  margin-bottom: 0;
}

.cart__express-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart__express-divider::before,
.cart__express-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ----- Cart Secure Badge ----- */
.cart__secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.cart__secure-badge svg {
  flex-shrink: 0;
}

.cart__ssl-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.cart__ssl-text svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* ----- Cart Payment Icons ----- */
.cart__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.cart__payment-icons svg {
  opacity: 0.45;
  transition: opacity var(--transition);
  border-radius: 3px;
}

.cart__payment-icons svg:hover {
  opacity: 0.75;
}

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 229, 160, 0.1);
}

.popup-overlay--visible .popup {
  transform: scale(1) translateY(0);
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.popup__close:hover {
  color: var(--text);
}

.popup__badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.popup__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.popup__title span {
  color: var(--accent);
}

.popup__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 0 24px;
  line-height: 1.5;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup__input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.popup__input:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.popup__input::placeholder {
  color: var(--text-muted);
}

.popup__btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s;
}

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

.popup__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.popup__dismiss {
  display: block;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  margin: 12px auto 0;
  padding: 4px 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
  font-family: var(--font-body);
}

.popup__dismiss:hover {
  color: var(--text-secondary);
}

.popup__privacy {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin: 8px 0 0;
}

.popup__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}

.popup__success p {
  color: var(--text-secondary);
  margin: 0;
}

.popup__code {
  background: var(--accent-glow);
  color: var(--accent) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 3px;
}

/* ============================================
   URGENCY SIGNALS — PRODUCT PAGE
   ============================================ */
.product-detail__urgency {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 4px;
}

.product-detail__viewers,
.product-detail__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-detail__viewers-dot {
  width: 8px;
  height: 8px;
  background: #ff4757;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.product-detail__stock {
  color: var(--warning);
  font-weight: 500;
}

.product-detail__stock svg {
  flex-shrink: 0;
}

/* ============================================
   BLOG ARTICLE STYLES
   ============================================ */
.blog-article__breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-article__breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.blog-article__breadcrumb a:hover {
  color: var(--accent);
}

.blog-article__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.2;
}

.blog-article__meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.blog-article h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.blog-article h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}

.blog-article p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
}

.blog-article ul, .blog-article ol {
  color: var(--text-secondary);
  padding-left: 20px;
  margin: 0 0 16px;
  line-height: 1.7;
}

.blog-article li {
  margin-bottom: 6px;
}

.blog-article strong {
  color: var(--text);
}

.blog-article__product-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition);
}

.blog-article__product-link:hover {
  opacity: 0.8;
}

.blog-article__cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}

.blog-article__cta h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.blog-article__cta p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .blog-article__title {
    font-size: 1.6rem;
  }
}

/* ----- Blog Index ----- */
.blog-index__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.blog-index__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-index__card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}

.blog-index__card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.blog-index__card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.blog-index__card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.blog-index__card-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.blog-index__card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .blog-index__grid {
    grid-template-columns: 1fr;
  }
  .blog-index__title {
    font-size: 1.8rem;
  }
}

/* ----- Blog Related Articles ----- */
.blog-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.blog-related__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-related__grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-related__link {
  display: block;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.blog-related__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   CATEGORY PAGE
   ============================================ */

/* Breadcrumb */
.category-breadcrumb {
  padding: 16px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-breadcrumb__link {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.category-breadcrumb__link:hover {
  color: var(--accent);
}

.category-breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.4;
}

.category-breadcrumb__current {
  color: var(--text);
  font-weight: 500;
}

/* Category Hero */
.category-hero {
  padding: 32px 0 24px;
  text-align: center;
}

.category-hero__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.category-hero__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.category-hero__count {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Nav Pills */
.category-pills {
  padding: 0 0 8px;
}

.category-pills__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-pills__list::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.category-pill:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: var(--surface-hover);
}

.category-pill--active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.category-pill--active:hover {
  background: var(--accent-hover);
  color: var(--bg);
}

/* Category Cards on Homepage */
.categories {
  padding: 0 0 48px;
}

.categories__heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.5px;
}

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

.category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.category-card:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.category-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  color: var(--accent);
  flex-shrink: 0;
}

.category-card__text {
  min-width: 0;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card__count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- Category Responsive: Tablet --- */
@media (min-width: 768px) {
  .category-hero__title {
    font-size: 2.4rem;
  }

  .category-hero__desc {
    font-size: 1.05rem;
  }

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

  .categories__heading {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }

  .category-card {
    padding: 20px;
  }

  .category-card__name {
    font-size: 0.9rem;
  }
}

/* --- Category Responsive: Desktop --- */
@media (min-width: 1024px) {
  .category-hero {
    padding: 40px 0 28px;
  }

  .category-hero__title {
    font-size: 2.8rem;
  }

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

  .category-card {
    padding: 22px;
    gap: 16px;
  }

  .category-card__icon {
    width: 48px;
    height: 48px;
  }

  .category-card__name {
    font-size: 0.95rem;
  }
}

.text-link-accent {
  color: var(--accent);
  font-weight: 600;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
