/* ============================================================
   ARIES SHIRTS GERMANY — Main Stylesheet
   Design: Premium minimal, inspired by aries-shirts.co.uk
   ============================================================ */

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

:root {
  --navy:    #1a2744;
  --navy-light: #243358;
  --white:   #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f2f2f0;
  --mid-gray: #e0ddd8;
  --text:    #1a1a1a;
  --text-muted: #6b6b6b;
  --gold:    #c9a96e;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --radius: 2px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.75); }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.announcement-bar a { color: var(--gold); text-decoration: underline; }

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid-gray);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.navbar__nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width var(--transition);
}
.navbar__nav a:hover { color: var(--navy); }
.navbar__nav a:hover::after { width: 100%; }
.navbar__nav a.active { color: var(--navy); }
.navbar__nav a.active::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 16px;
}
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,39,68,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: #b8924f;
  border-color: #b8924f;
  transform: translateY(-1px);
}
.btn--full { width: 100%; }
.btn--lg { padding: 18px 48px; font-size: 0.85rem; }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.45;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 24px 60px 64px;
}
.hero__est {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  padding: 28px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item__icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.trust-item__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* --- Product Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light-gray);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card__badge--sale { background: #c0392b; }
.product-card__body {
  padding: 20px 0 8px;
}
.product-card__collection {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.product-card__price .old-price {
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 0.9rem;
}
.product-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.product-card__btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Shop Page Filter --- */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.filter-sidebar {
  position: sticky;
  top: 100px;
}
.filter-group { margin-bottom: 32px; }
.filter-group__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mid-gray);
}
.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.size-btn:hover, .size-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mid-gray);
}
.shop-count { font-size: 0.85rem; color: var(--text-muted); }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
}

/* --- Product Detail Page --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 60px 0;
}
.product-gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--light-gray);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.product-gallery__thumb {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  border: 2px solid transparent;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { opacity: 1; border-color: var(--navy); }

.product-info__collection { margin-bottom: 8px; }
.product-info__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.stars { color: var(--gold); font-size: 0.9rem; }
.rating-count { font-size: 0.82rem; color: var(--text-muted); }
.product-info__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.product-info__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.size-selector { margin-bottom: 24px; }
.size-selector__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.size-selector__label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.size-selector__label a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
}
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-option {
  min-width: 52px;
  height: 48px;
  padding: 0 12px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.size-option:hover { border-color: var(--navy); }
.size-option.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.size-option.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.buy-btn {
  width: 100%;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 12px;
}
.buy-btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,39,68,0.3);
}
.buy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.product-info__shipping {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.product-features {
  border-top: 1px solid var(--mid-gray);
  padding-top: 24px;
  margin-top: 24px;
}
.product-features h4 {
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-features ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.product-features li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Social Proof / Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  padding: 28px;
}
.review-card__stars { color: var(--gold); margin-bottom: 12px; }
.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__name { font-size: 0.85rem; font-weight: 700; }
.review-card__verified { font-size: 0.72rem; color: var(--text-muted); }

/* --- About / Story Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .label { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item__label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* --- Newsletter --- */
.newsletter {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: 16px; }
.newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 40px; filter: brightness(0) invert(1); }
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copyright { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--off-white);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--mid-gray);
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy); }

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--navy);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--navy); text-decoration: underline; }

/* --- Size Guide --- */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
}
.size-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.size-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--mid-gray);
  color: var(--text-muted);
}
.size-table tr:nth-child(even) td { background: var(--off-white); }

/* --- Stripe Loading --- */
.stripe-loading {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.stripe-loading.active { display: flex; }
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--mid-gray);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__content { padding: 40px 24px; }
  .trust-bar__grid { grid-template-columns: 1fr; gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .hero__actions { flex-direction: column; }
  .btn--lg { padding: 16px 32px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* --- Animations --- */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
