/* ============================================
   ELITE PEPS AUSTRALIA - SHOPIFY THEME CSS
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-card: #161616;
  --color-bg-card-hover: #1a1a1a;
  --color-border: #222222;
  --color-border-light: #2a2a2a;
  --color-text: #ffffff;
  --color-text-secondary: #999999;
  --color-text-muted: #666666;
  --color-accent: #00c896;
  --color-accent-hover: #00e6aa;
  --color-accent-glow: rgba(0, 200, 150, 0.15);
  --color-badge-best: #ff6b35;
  --color-badge-popular: #00c896;
  --color-badge-new: #8b5cf6;
  --color-badge-demand: #ef4444;
  --color-badge-value: #f59e0b;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* iOS Safari: prevent body scroll when drawer/modal is open */
body.scroll-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
}

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

/* --- Accessibility: Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-accent), #00a87a);
  color: #000;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}

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

.announcement-bar__separator {
  opacity: 0.5;
}

/* --- Header / Navigation --- */
.site-header {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
}

.site-header-spacer {
  height: var(--header-height, 90px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__logo img {
  height: 70px;
  width: auto;
}

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

.site-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--color-text);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.site-header__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.site-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* --- Header Actions (mobile search + hamburger) --- */
.site-header__actions {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition);
}

.site-header__search-toggle:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
}

.site-header__search-toggle--desktop {
  width: 36px;
  height: 36px;
}

/* --- Search Overlay --- */
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  padding-top: 80px;
  max-height: 100vh;
  overflow-y: auto;
}

.search-overlay__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.search-overlay__bar:focus-within {
  border-color: var(--color-accent);
}

.search-overlay__icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-overlay__form {
  flex: 1;
}

.search-overlay__input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 18px;
  font-family: var(--font-body);
}

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

.search-overlay__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.search-overlay__close:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
}

.search-overlay__results {
  margin-top: 24px;
  padding-bottom: 40px;
}

.search-overlay__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.search-result-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
}

.search-result-card:hover {
  border-color: var(--color-border-light);
  background: var(--color-bg-card-hover);
}

.search-result-card__image {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
}

.search-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.search-result-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.search-result-card__title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-card__price {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 700;
}

.search-overlay__view-all {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}

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

.search-overlay__empty {
  text-align: center;
  padding: 40px 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* --- Collection Search Bar --- */
.collection-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.collection-search:focus-within {
  border-color: var(--color-accent);
}

.collection-search__icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.collection-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 15px;
  font-family: var(--font-body);
}

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

.collection-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.collection-search__clear:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-text);
}

.collection-no-results {
  text-align: center;
  padding: 60px 0;
  color: var(--color-text-muted);
  font-size: 16px;
}

/* --- Hero Section --- */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero__description {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--color-accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--color-text-secondary);
  background: rgba(255,255,255,0.03);
}

/* --- USP Bar --- */
.usp-bar {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.usp-bar__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.usp-bar__item span:first-child {
  font-size: 18px;
}

/* --- Stats Bar --- */
.stats-bar {
  padding: 60px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-bar__item {
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.stats-bar__value {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.stats-bar__label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 48px;
}

.section-header__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-header__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header__description {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.section-header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: gap var(--transition);
}

.section-header__link:hover {
  gap: 10px;
}

/* --- Product Cards --- */
.products-section {
  padding: 80px 0;
}

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

/* --- Product Marquee (auto-scroll) --- */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.marquee__slide {
  flex: 0 0 280px;
  min-width: 280px;
}

.marquee__slide .product-card {
  height: 100%;
}

@media (max-width: 767px) {
  .marquee__slide {
    flex: 0 0 260px;
    min-width: 260px;
  }
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.5s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__badge--best-seller {
  background: var(--color-badge-best);
  color: #fff;
}

.product-card__badge--popular {
  background: var(--color-badge-popular);
  color: #000;
}

.product-card__badge--new {
  background: var(--color-badge-new);
  color: #fff;
}

.product-card__badge--high-demand {
  background: var(--color-badge-demand);
  color: #fff;
}

.product-card__badge--value {
  background: var(--color-badge-value);
  color: #000;
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card__dosage {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.product-card__description {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

.product-card__buttons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-card__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  font-size: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}

.product-card__add-btn:hover {
  background: var(--color-accent-hover);
}

.product-card__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-card__view-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: transparent;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  white-space: nowrap;
}

.product-card__view-btn:hover {
  border-color: var(--color-text-secondary);
  color: var(--color-text);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.breadcrumbs__list li {
  display: flex;
  align-items: center;
}

.breadcrumbs__list li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--color-border-light);
}

.breadcrumbs__list a {
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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

.breadcrumbs__list li[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 0 16px;
  flex-wrap: wrap;
}

.pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.pagination__btn:hover:not(.pagination__btn--disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

.pagination__btn--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pagination__pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}

.pagination__page:hover:not(.pagination__page--current) {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.pagination__page--current {
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
}

.pagination__page--gap {
  cursor: default;
}

/* --- Disclaimer Bar --- */
.disclaimer-bar {
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

/* --- Quality Section --- */
.quality-section {
  padding: 80px 0;
}

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

.quality-card {
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.quality-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-2px);
}

.quality-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.quality-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quality-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- About Section --- */
.about-section {
  padding: 80px 0;
}

.about-section__content {
  max-width: 700px;
}

.about-section__text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-stats__item {
  padding: 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
}

.about-stats__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
}

.about-stats__label {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.contact-info__item span:first-child {
  font-size: 20px;
}

.contact-info__item a {
  color: var(--color-accent);
}

.contact-info__item a:hover {
  color: var(--color-accent-hover);
}

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

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-accent);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}

.contact-form__submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1a1a;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.blog-card__tag {
  padding: 2px 8px;
  background: rgba(0,200,150,0.12);
  color: var(--color-accent);
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex: 1;
}

.blog-card__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
}

/* Blog Featured */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
}

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

.blog-featured__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}

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

.blog-featured__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.blog-featured__date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.blog-featured__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.blog-featured__excerpt {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.blog-featured__read {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 8px;
}

/* --- Article Page --- */
.article-page {
  padding: 40px 0 80px;
}

.article-page__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.article-page__header {
  margin-bottom: 32px;
}

.article-page__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.article-page__tag {
  padding: 3px 10px;
  background: rgba(0,200,150,0.12);
  color: var(--color-accent);
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.article-page__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.article-page__reading-time {
  font-size: 13px;
  color: var(--color-text-muted);
}

.article-page__hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.article-page__hero-image img {
  width: 100%;
  display: block;
}

.article-page__content {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.85;
}

.article-page__content h2 { font-size: 24px; font-weight: 800; color: var(--color-text); margin: 40px 0 16px; }
.article-page__content h3 { font-size: 20px; font-weight: 700; color: var(--color-text); margin: 32px 0 12px; }
.article-page__content p { margin-bottom: 16px; }
.article-page__content ul, .article-page__content ol { margin-bottom: 16px; padding-left: 24px; }
.article-page__content li { margin-bottom: 6px; }
.article-page__content a { color: var(--color-accent); font-weight: 500; }
.article-page__content strong { color: var(--color-text); }
.article-page__content blockquote { border-left: 3px solid var(--color-accent); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--color-text); }

.article-page__cta {
  margin: 40px 0;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0,200,150,0.08), rgba(0,200,150,0.02));
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: var(--radius);
  text-align: center;
}

.article-page__cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: var(--color-text); }
.article-page__cta p { color: var(--color-text-secondary); font-size: 15px; margin-bottom: 16px; }

.article-page__share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
}

.article-page__share-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: all var(--transition);
}

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

/* Article Sidebar */
.article-page__sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-page__sidebar-card {
  padding: 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.article-page__sidebar-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.article-page__sidebar-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--transition);
}

.article-page__sidebar-product:last-of-type { border-bottom: none; }
.article-page__sidebar-product:hover { color: var(--color-accent); }

.article-page__sidebar-product-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
}

.article-page__sidebar-product-img img { width: 100%; height: 100%; object-fit: cover; }
.article-page__sidebar-product-name { font-size: 14px; font-weight: 600; display: block; }
.article-page__sidebar-product-price { font-size: 13px; color: var(--color-accent); font-weight: 700; }

.article-page__sidebar-article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 14px;
  transition: color var(--transition);
}

.article-page__sidebar-article:last-of-type { border-bottom: none; }
.article-page__sidebar-article:hover { color: var(--color-accent); }
.article-page__sidebar-date { font-size: 12px; color: var(--color-text-muted); flex-shrink: 0; }

/* --- FAQ Accordion --- */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 800px;
}

.faq-accordion--homepage {
  max-width: 800px;
}

.faq-accordion__item {
  border-bottom: 1px solid var(--color-border);
}

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

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

.faq-accordion__question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

.faq-accordion__item.is-open .faq-accordion__question svg {
  transform: rotate(180deg);
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-accordion__item.is-open .faq-accordion__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-accordion__answer p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Product Page Enhancements --- */
.product-faq {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.product-faq__heading {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.product-related {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.product-related__heading {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.product-learn-more {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.product-learn-more__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

/* Latest Articles section */
.latest-articles {
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}

/* --- SEO Content Section --- */
.seo-content {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.seo-content__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-text);
}

.seo-content__body {
  max-width: 800px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.seo-content__body p {
  margin-bottom: 16px;
}

.seo-content__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.seo-content__body a {
  color: var(--color-accent);
  font-weight: 500;
}

.seo-content__body a:hover {
  color: var(--color-accent-hover);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.site-footer__brand p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 400px;
  line-height: 1.6;
}

.site-footer__brand-logo img {
  height: 36px;
  width: auto;
}

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

.site-footer__perk {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.site-footer__nav-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.site-footer__nav-links a {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.site-footer__nav-links a:hover {
  color: var(--color-text);
}

.site-footer__disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  margin-bottom: 16px;
}

.site-footer__copyright {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* --- Collection Page (Shop) --- */
.collection-hero {
  padding: 80px 0 40px;
}

.collection-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.collection-hero__description {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
}

.collection-filters {
  padding: 0 0 40px;
}

.collection-filters__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.collection-filters__btn {
  padding: 8px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.collection-filters__btn:hover,
.collection-filters__btn.active {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
}

.collection-count {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* --- Product Page --- */
.product-page {
  padding: 60px 0;
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-page__image {
  aspect-ratio: 1;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-page__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-page__info {
  padding-top: 20px;
}

.product-page__category {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-page__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-page__dosage {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.product-page__price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.product-page__description {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-page__add-to-cart {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.product-page__add-to-cart:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 30px var(--color-accent-glow);
}

.product-page__enquire {
  width: 100%;
  padding: 16px;
  margin-top: 12px;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.product-page__enquire:hover {
  border-color: var(--color-text-secondary);
}

/* --- Cart Drawer --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border);
  z-index: 200;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
}

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

/* --- Cart Toggle Button --- */
.cart-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}

.cart-toggle:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
}

.cart-toggle--desktop {
  width: 36px;
  height: 36px;
}

.cart-toggle__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-drawer__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

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

.cart-drawer__title {
  font-size: 18px;
  font-weight: 700;
}

.cart-drawer__item-count {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 14px;
}

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition);
}

.cart-drawer__close:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
}

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

/* Cart Drawer Items */
.cart-drawer__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: opacity var(--transition);
}

.cart-drawer__item:last-child {
  border-bottom: none;
}

.cart-drawer__item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
  border: 1px solid var(--color-border);
}

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

.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-drawer__item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--transition);
}

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

.cart-drawer__item-variant {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-drawer__item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-drawer__item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

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

.cart-drawer__qty-btn {
  width: 30px;
  height: 28px;
  background: var(--color-bg-card);
  border: none;
  color: var(--color-text);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cart-drawer__qty-btn:hover {
  background: var(--color-bg-card-hover);
}

.cart-drawer__qty-value {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  line-height: 28px;
}

.cart-drawer__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition);
}

.cart-drawer__remove:hover {
  color: #ef4444;
  background: rgba(239,68,68,0.1);
}

/* Cart Drawer Empty */
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  color: var(--color-text-muted);
  font-size: 15px;
  gap: 12px;
}

/* Cart Drawer Footer */
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-drawer__subtotal-price {
  color: var(--color-text);
}

.cart-drawer__shipping-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.cart-drawer__checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}

.cart-drawer__checkout-btn:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.cart-drawer__view-cart {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1023px) {
  .search-overlay__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header__logo img {
    height: 50px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__actions {
    display: flex;
  }

  .site-header__mobile-toggle {
    display: block;
  }

  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    gap: 16px;
  }

  .site-header__search-toggle--desktop {
    display: none;
  }

  .search-overlay__grid {
    grid-template-columns: 1fr;
  }

  .search-overlay__inner {
    padding-top: 40px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero__title {
    font-size: 32px;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .cart-drawer {
    width: 100%;
    right: -100%;
  }

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

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__content {
    padding: 24px;
  }

  .blog-featured__title {
    font-size: 22px;
  }

  .article-page__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-page__sidebar {
    position: static;
  }

  .product-learn-more__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .usp-bar__grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Compact product cards for 2-col mobile */
  .product-card__body {
    padding: 12px;
  }

  .product-card__title {
    font-size: 14px;
  }

  .product-card__description {
    display: none;
  }

  .product-card__category {
    font-size: 10px;
  }

  .product-card__dosage {
    font-size: 12px;
  }

  .product-card__price {
    font-size: 16px;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .product-card__buttons {
    justify-content: stretch;
  }

  .product-card__add-btn {
    flex: 1;
    justify-content: center;
    padding: 8px 8px;
  }

  .product-card__view-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 8px 8px;
  }

  .product-card__add-btn svg {
    display: none;
  }

  /* Compact blog grid on mobile */
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .blog-card__excerpt {
    display: none;
  }

  .blog-card__body {
    padding: 12px;
  }

  .blog-card__title {
    font-size: 14px;
  }
}

/* --- Page Template (generic) --- */
.page-section {
  padding: 80px 0;
}

.page-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 24px;
}

.page-section__content {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

.page-section__content p {
  margin-bottom: 16px;
}

/* --- Quantity Selector --- */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  width: fit-content;
}

.quantity-selector__btn {
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: none;
  color: var(--color-text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.quantity-selector__btn:hover {
  background: var(--color-bg-card-hover);
}

.quantity-selector__input {
  width: 60px;
  height: 44px;
  background: var(--color-bg);
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  text-align: center;
  font-size: 15px;
  font-family: var(--font-body);
}

/* ============================================
   NEW PAGE TEMPLATES - SEO PAGES
   ============================================ */

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content__block {
  margin-bottom: 40px;
}

.page-content__block h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.page-content__block p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-content__list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.page-content__list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  border-bottom: 1px solid var(--color-border);
}

.page-content__list li:last-child {
  border-bottom: none;
}

.page-content__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.page-content__cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* --- Quality Features Grid --- */
.quality-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.quality-feature {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.quality-feature__icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.quality-feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quality-feature p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.contact-detail__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form-wrapper h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-success {
  padding: 16px;
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--color-accent);
}

.contact-error {
  padding: 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: #ef4444;
}

/* --- FAQ Page Categories --- */
.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

/* --- Section Header Description --- */
.section-header__description {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
/* ============================================
   PRODUCT DETAILS SECTION — Full Description Tabs
   Append this to the BOTTOM of your theme.css
   ============================================ */

/* --- Scroll Link (above ATC) --- */
.product-page__scroll-link {
  display: inline-block;
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 24px;
  font-weight: 500;
  transition: opacity var(--transition);
}

.product-page__scroll-link:hover {
  opacity: 0.8;
}

/* --- Product Details Container --- */
.product-details {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.product-details__header {
  text-align: center;
  margin-bottom: 40px;
}

.product-details__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.product-details__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-details__subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Tab Navigation --- */
.product-tabs__nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-tabs__btn {
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

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

.product-tabs__btn.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* --- Tab Panels --- */
.product-tabs__panel {
  display: none;
  padding: 40px 0;
}

.product-tabs__panel.is-active {
  display: block;
}

/* --- Full Description Content Styles --- */
.product-full-description {
  max-width: 900px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.product-full-description h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 48px 0 20px 0;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.product-full-description h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.product-full-description h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin: 28px 0 12px 0;
}

.product-full-description p {
  margin-bottom: 16px;
  color: var(--color-text-secondary);
}

.product-full-description strong {
  color: var(--color-text);
  font-weight: 600;
}

.product-full-description em {
  font-style: italic;
}

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

.product-full-description a:hover {
  opacity: 0.8;
}

/* Specs table inside full description */
.product-full-description table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 20px 0;
  font-size: 14px;
}

.product-full-description table tr {
  border-bottom: 1px solid var(--color-border);
}

.product-full-description table tr:last-child {
  border-bottom: none;
}

.product-full-description table tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.product-full-description table td,
.product-full-description table th {
  padding: 12px 18px;
  text-align: left;
}

.product-full-description table td:first-child,
.product-full-description table th:first-child {
  font-weight: 600;
  color: var(--color-text-muted);
  width: 38%;
}

.product-full-description table th {
  background: rgba(0, 200, 150, 0.08);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

/* Code/sequence blocks */
.product-full-description code,
.product-full-description .sequence-block {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 2;
  word-break: break-all;
  overflow-x: auto;
  margin: 16px 0;
}

/* Info cards (receptor data, milestones, etc.) */
.product-full-description .info-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.product-full-description .info-card {
  flex: 1;
  min-width: 160px;
  background: rgba(0, 200, 150, 0.06);
  border: 1px solid rgba(0, 200, 150, 0.15);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}

.product-full-description .info-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.product-full-description .info-card__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
}

.product-full-description .info-card__note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Milestone/timeline cards */
.product-full-description .milestone {
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 12px 0;
}

.product-full-description .milestone__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.product-full-description .milestone__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Step indicators */
.product-full-description .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.12);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
}

/* Highlight box */
.product-full-description .highlight-box {
  background: rgba(0, 200, 150, 0.05);
  border: 1px solid rgba(0, 200, 150, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 20px 0;
}

/* Feature grid (why choose us, etc.) */
.product-full-description .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.product-full-description .feature-item {
  flex: 1;
  min-width: 200px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.product-full-description .feature-item__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.product-full-description .feature-item__text {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Product cross-links */
.product-full-description .cross-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.product-full-description .cross-link {
  flex: 1;
  min-width: 200px;
  display: block;
  background: rgba(0, 200, 150, 0.05);
  border: 1px solid rgba(0, 200, 150, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition);
}

.product-full-description .cross-link:hover {
  border-color: var(--color-accent);
}

.product-full-description .cross-link__name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.product-full-description .cross-link__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Related compound links */
.product-full-description .related-compounds {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}

.product-full-description .related-compounds a {
  color: var(--color-accent);
  text-decoration: none;
}

/* Disclaimer */
.product-full-description .research-disclaimer {
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-top: 32px;
}

.product-full-description .research-disclaimer p {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}

/* Unordered lists inside full description */
.product-full-description ul {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}

.product-full-description ul li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.product-full-description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* --- Downloads Section --- */
.product-downloads__intro {
  margin-bottom: 24px;
}

.product-downloads__intro h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-downloads__intro p {
  font-size: 15px;
  color: var(--color-text-secondary);
}

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

.product-downloads__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.product-downloads__item:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-card-hover);
}

.product-downloads__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 200, 150, 0.1);
  color: var(--color-accent);
  flex-shrink: 0;
}

.product-downloads__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-downloads__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}

.product-downloads__type {
  font-size: 12px;
  color: var(--color-text-muted);
}

.product-downloads__action {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .product-details__title {
    font-size: 22px;
  }

  .product-tabs__nav {
    gap: 0;
  }

  .product-tabs__btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .product-tabs__panel {
    padding: 28px 0;
  }

  .product-full-description h2 {
    font-size: 18px;
  }

  .product-full-description .info-cards {
    flex-direction: column;
  }

  .product-full-description .info-card {
    min-width: auto;
  }

  .product-full-description .feature-grid {
    flex-direction: column;
  }

  .product-full-description .feature-item {
    min-width: auto;
  }

  .product-full-description .cross-links {
    flex-direction: column;
  }

  .product-full-description .cross-link {
    min-width: auto;
  }

  .product-full-description table {
    font-size: 13px;
  }

  .product-full-description table td,
  .product-full-description table th {
    padding: 10px 14px;
  }

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

  .product-downloads__action {
    display: none;
  }
}

/* ============================================
   MARQUEE SLIDER — Arrows, Pause, Drag
   ============================================ */

.marquee {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.marquee.is-dragging {
  cursor: grabbing;
}

.marquee__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.marquee:hover .marquee__arrow {
  opacity: 1;
}

.marquee__arrow:hover {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
}

.marquee__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.marquee__arrow--left {
  left: 16px;
}

.marquee__arrow--right {
  right: 16px;
}

.marquee__pause {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.marquee:hover .marquee__pause {
  opacity: 0.7;
}

.marquee__pause:hover {
  opacity: 1 !important;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Touch devices: always show arrows */
@media (hover: none) and (pointer: coarse) {
  .marquee__arrow {
    opacity: 0.8;
    width: 40px;
    height: 40px;
  }

  .marquee__pause {
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .marquee__arrow {
    width: 36px;
    height: 36px;
  }

  .marquee__arrow--left {
    left: 8px;
  }

  .marquee__arrow--right {
    right: 8px;
  }

  .marquee__pause {
    bottom: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
}

/* ============================================
   PRODUCT CARD — Full Card Clickable
   ============================================ */

/* The title link stretches over the entire card */
.product-card {
  position: relative;
}

.product-card__link {
  color: inherit;
  text-decoration: none;
}

.product-card__link::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

/* Buttons sit above the overlay */
.product-card__add-btn,
.product-card__view-btn {
  position: relative;
  z-index: 2;
}

.product-card__buttons {
  position: relative;
  z-index: 2;
}

.product-card__buttons form {
  position: relative;
  z-index: 2;
}

/* Badge sits above overlay */
.product-card__badge {
  z-index: 2;
}

/* ============================================
   NEWS PAGE — Premium Magazine Layout
   ============================================ */

/* --- News Hero Header --- */
.news-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--color-border);
}

.news-hero__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.news-hero__title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.news-hero__subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.6;
}

.news-hero__live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
  padding-bottom: 6px;
}

.news-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* --- Tag Filters --- */
.news-filters {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-height, 90px);
  z-index: 50;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.news-filters__scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.news-filters__scroll::-webkit-scrollbar { display: none; }

.news-filters__btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.news-filters__btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-secondary);
}

.news-filters__btn.active {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
}

/* --- News Content Section --- */
.news-content {
  padding: 40px 0 60px;
}

/* --- Breaking / Hero Story --- */
.news-breaking {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition);
  margin-bottom: 32px;
}

.news-breaking:hover {
  border-color: var(--color-accent);
}

.news-breaking__image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.news-breaking__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-breaking:hover .news-breaking__image img {
  transform: scale(1.03);
}

.news-breaking__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10,10,10,0.5));
}

.news-breaking__content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-breaking__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.news-breaking__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 200, 150, 0.12);
  color: var(--color-accent);
}

.news-breaking__badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.news-breaking__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.news-breaking__excerpt {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-breaking__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.news-breaking__cta {
  margin-left: auto;
  color: var(--color-accent);
  font-weight: 600;
}

/* --- Secondary Stories (3-col row) --- */
.news-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.news-secondary__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

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

.news-secondary__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-secondary__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-secondary__card:hover .news-secondary__image img {
  transform: scale(1.04);
}

.news-secondary__body {
  padding: 20px;
}

.news-secondary__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.news-secondary__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(0, 200, 150, 0.1);
  color: var(--color-accent);
}

.news-secondary__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.news-secondary__excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.news-secondary__read {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
}

/* --- Divider --- */
.news-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

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

.news-divider__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* --- Main News Grid --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.news-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.news-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.news-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(0, 200, 150, 0.1);
  color: var(--color-accent);
}

.news-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.news-card__excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.news-card__time {
  color: var(--color-text-muted);
}

.news-card__cta {
  color: var(--color-accent);
  font-weight: 600;
}

/* --- Empty State --- */
.news-empty {
  text-align: center;
  padding: 80px 20px;
}

.news-empty p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: 16px;
}

/* --- CTA Banner --- */
.news-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.news-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.news-cta__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.news-cta__text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* --- News Page Responsive --- */
@media (max-width: 768px) {
  .news-hero__title {
    font-size: 30px;
  }

  .news-breaking {
    grid-template-columns: 1fr;
  }

  .news-breaking__image {
    min-height: 200px;
  }

  .news-breaking__content {
    padding: 24px;
  }

  .news-breaking__title {
    font-size: 22px;
  }

  .news-secondary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .news-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .news-secondary {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ============================================
   BLOG KNOWLEDGE HUB — Authority Layout
   ============================================ */

/* --- Blog Hero --- */
.blog-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--color-border);
}

.blog-hero__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-hero__title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.blog-hero__subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 520px;
  line-height: 1.6;
}

.blog-hero__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
  padding-bottom: 6px;
}

.blog-hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

/* --- Blog Filters Bar --- */
.blog-filters {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-height, 90px);
  z-index: 50;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-filters__row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex: 0 0 280px;
  min-width: 200px;
  transition: border-color var(--transition);
}

.blog-search:focus-within {
  border-color: var(--color-accent);
}

.blog-search__icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.blog-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 14px;
  font-family: var(--font-body);
}

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

.blog-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.blog-search__clear:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.12);
}

.blog-filters__tags {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  flex: 1;
}

.blog-filters__tags::-webkit-scrollbar { display: none; }

.blog-filters__tag {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.blog-filters__tag:hover {
  color: var(--color-text);
  border-color: var(--color-text-secondary);
}

.blog-filters__tag.active {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
}

/* --- Blog Content --- */
.blog-content {
  padding: 40px 0 60px;
}

/* --- Blog Featured (reusing existing but enhanced) --- */
.blog-featured__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.blog-featured__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 200, 150, 0.12);
  color: var(--color-accent);
}

.blog-featured__badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.blog-featured__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  margin-top: 12px;
}

.blog-featured__cta {
  margin-left: auto;
  color: var(--color-accent);
  font-weight: 600;
}

.blog-featured__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #1a1a1a;
}

/* --- Blog Card Footer Row --- */
.blog-card__footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: auto;
}

.blog-card__time {
  color: var(--color-text-muted);
}

.blog-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

/* --- Blog Search Results --- */
.blog-search-count {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.blog-search-view-all {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}

.blog-search-view-all:hover {
  color: var(--color-accent-hover);
}

/* --- Blog Empty --- */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
}

.blog-empty p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: 16px;
}

/* --- Blog CTA --- */
.blog-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.blog-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.blog-cta__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.blog-cta__text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* --- Blog Responsive --- */
@media (max-width: 768px) {
  .blog-hero__title {
    font-size: 30px;
  }

  .blog-hero__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-hero__stats {
    padding-bottom: 0;
  }

  .blog-filters__row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .blog-search {
    flex: auto;
  }

  .blog-featured__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .blog-featured__cta {
    margin-left: 0;
  }

  .blog-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   MOBILE TOUCH IMPROVEMENTS
   ============================================ */

/* Remove hover transform on touch devices — prevents sticky hover states */
@media (hover: none) and (pointer: coarse) {
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .blog-card:hover {
    transform: none;
  }

  .news-secondary__card:hover {
    transform: none;
  }

  /* Ensure marquee product cards are always fully interactive */
  .marquee .product-card__buttons,
  .marquee .product-card__add-btn,
  .marquee .product-card__view-btn,
  .marquee .product-card__link::after {
    pointer-events: auto !important;
  }

  /* Give touch targets adequate size on mobile */
  .product-card__add-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .product-card__view-btn {
    min-height: 44px;
  }
}

/* Marquee: ensure interactive elements are always tappable */
.marquee__track .product-card__buttons {
  position: relative;
  z-index: 5;
}

.marquee__track .product-card__buttons form {
  position: relative;
  z-index: 5;
}

.marquee__track .product-card__add-btn,
.marquee__track .product-card__view-btn {
  position: relative;
  z-index: 5;
}
