/* ════════════════════════════════════════════
   PRINTCRAFT – main.css
   Reset · Variables · Layout · Typography
   ════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────── */
:root {
  --red:       #e63946;
  --red-dark:  #c1121f;
  --red-light: #ff6b6b;
  --blue:      #0f3460;
  --blue-mid:  #16213e;
  --green:     #2d6a4f;
  --yellow:    #ffd60a;
  --purple:    #7b2d8b;

  --gray-50:   #f8f9fa;
  --gray-100:  #f1f3f5;
  --gray-200:  #e9ecef;
  --gray-300:  #dee2e6;
  --gray-400:  #ced4da;
  --gray-500:  #adb5bd;
  --gray-600:  #6c757d;
  --gray-700:  #495057;
  --gray-800:  #343a40;
  --gray-900:  #212529;

  --white:     #ffffff;
  --black:     #0d0d0d;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --nav-height: 68px;
  --top-bar-height: 36px;
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── Container ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-green  { color: var(--green); }

/* ─── Utility ────────────────────────────────── */
.mt-4        { margin-top: 2rem; }
.text-center { text-align: center; }
.section     { padding: 80px 0; }
.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p  { color: var(--gray-600); font-size: 1.05rem; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,57,70,.35);
}
.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
}
.btn--dark {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
.btn--dark:hover {
  background: var(--gray-800);
}
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn--sm { padding: .45rem 1rem; font-size: .85rem; }

/* ─── TOP BAR ────────────────────────────────── */
.top-bar {
  background: var(--blue);
  color: var(--white);
  font-size: .8rem;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__left { display: flex; align-items: center; gap: .5rem; opacity: .9; }
.top-bar__right { display: flex; align-items: center; gap: .75rem; }
.top-bar__right a { opacity: .85; transition: opacity var(--transition); display: flex; align-items: center; gap: .35rem; }
.top-bar__right a:hover { opacity: 1; }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray-900);
  flex-shrink: 0;
}
.navbar__logo strong { font-weight: 800; color: var(--red); }

.navbar__search { flex: 1; max-width: 480px; }
.search-form {
  display: flex;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.search-form:focus-within { border-color: var(--red); }
.search-input {
  flex: 1;
  padding: .55rem 1rem;
  border: none;
  outline: none;
  background: transparent;
}
.search-btn {
  background: var(--red);
  color: var(--white);
  padding: .55rem 1rem;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--red-dark); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
.nav-icon {
  position: relative;
  font-size: 1.25rem;
  color: var(--gray-700);
  transition: color var(--transition);
  padding: .25rem;
}
.nav-icon:hover { color: var(--red); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MEGA MENU ──────────────────────────────── */
.mega-menu {
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.mega-menu__inner { padding-block: 0; }
.mega-menu__list {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.mega-menu__list::-webkit-scrollbar { display: none; }
.mega-menu__list li a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.1rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.mega-menu__list li a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  background: var(--gray-50);
}
.mega-menu__sale { color: var(--red) !important; font-weight: 700 !important; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero__slider { position: relative; }
.hero__slide {
  display: none;
  background: var(--bg, #1a1a2e);
  min-height: 560px;
  position: relative;
}
.hero__slide.active { display: flex; align-items: center; }
.hero__slide.animating { animation: slideIn .5s ease forwards; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem 4rem;
}

.hero__text { color: var(--white); }
.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.hero__badge--green  { background: #52b788; }
.hero__badge--purple { background: var(--purple); }

.hero__text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero__text p {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-size: 1.4rem; font-weight: 800; color: var(--yellow); }
.hero__stat span   { font-size: .8rem; opacity: .75; }

/* Hero visual */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero__mockup img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  height: 340px;
}
.hero__floating-card {
  position: absolute;
  background: var(--white);
  color: var(--gray-800);
  padding: .6rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: float 3s ease-in-out infinite;
}
.hero__floating-card i { color: var(--red); }
.card--1 { bottom: 20px; left: -20px; animation-delay: 0s; }
.card--2 { top: 20px; right: -20px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Arrow + Dots */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}
.hero__arrow:hover { background: rgba(255,255,255,.3); }
.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.4);
  transition: all var(--transition);
}
.hero__dot.active {
  background: var(--white);
  width: 24px;
}

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 200px;
}
.trust-item i {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: .9rem; }
.trust-item span   { font-size: .78rem; color: var(--gray-600); }

/* ─── CATEGORY GRID ──────────────────────────── */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.cat-card--large {
  grid-row: span 2;
  grid-column: span 1;
}
.cat-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.cat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cat-card__img { overflow: hidden; aspect-ratio: 4/3; }
.cat-card--large .cat-card__img { aspect-ratio: auto; height: 320px; }
.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card__body { padding: 1rem 1.1rem; }
.cat-card__body h3 { font-size: 1rem; margin-bottom: .2rem; }
.cat-card__body p  { font-size: .82rem; color: var(--gray-600); margin-bottom: .6rem; }
.cat-card__cta {
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.cat-card:hover .cat-card__cta { gap: .6rem; }

/* ─── PRODUCT GRID ───────────────────────────── */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.product-card__badge--sale { background: #f4a261; }
.product-card__wishlist {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: var(--white);
  color: var(--gray-400);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.product-card__wishlist:hover { color: var(--red); border-color: var(--red); }
.product-card__body { padding: 1rem; }
.product-card__body h3 { font-size: .9rem; margin-bottom: .25rem; color: var(--gray-800); }
.product-card__rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: #f4a261;
  margin-bottom: .4rem;
}
.product-card__rating span { color: var(--gray-500); }
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.price-main { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.price-old  { font-size: .85rem; color: var(--gray-500); text-decoration: line-through; }
.price-save { font-size: .75rem; color: var(--green); font-weight: 600; }
.product-card__footer { padding: 0 1rem 1rem; }
.product-card__footer .btn { width: 100%; justify-content: center; }

/* ─── PROMO SECTION ──────────────────────────── */
.promo-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 80px 0;
}
.promo-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.promo-section__text .section-tag { background: rgba(255,255,255,.2); color: var(--white); }
.promo-section__text h2 { color: var(--white); margin-block: .75rem 1rem; }
.promo-section__text p  { opacity: .85; margin-bottom: 1.5rem; }
.promo-section__features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}
.promo-section__features li { display: flex; align-items: center; gap: .6rem; opacity: .9; }
.promo-section__features i  { color: var(--yellow); }

.promo-section__img {
  position: relative;
}
.promo-section__img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.promo-section__badge {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  background: var(--yellow);
  color: var(--black);
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card__stars { color: #f4a261; margin-bottom: .75rem; font-size: .9rem; }
.testimonial-card p { font-size: .92rem; color: var(--gray-700); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-card__author img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
}
.testimonial-card__author strong { display: block; font-size: .9rem; }
.testimonial-card__author span   { font-size: .78rem; color: var(--gray-500); }

/* ─── BLOG GRID ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card__img  { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.blog-card__body { padding: 1.25rem; }
.blog-card__body h3 { font-size: .95rem; margin-bottom: .4rem; color: var(--gray-800); }
.blog-card__body p  { font-size: .82rem; color: var(--gray-600); margin-bottom: .75rem; }
.blog-card__read { font-size: .82rem; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: .3rem; }

/* ─── NEWSLETTER ─────────────────────────────── */
.newsletter {
  background: var(--red);
  color: var(--white);
  padding: 60px 0;
}
.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.newsletter__text h2 { font-size: 1.8rem; margin-bottom: .4rem; }
.newsletter__text p  { opacity: .85; }
.newsletter__form {
  display: flex;
  gap: .75rem;
  max-width: 520px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__form input {
  flex: 1;
  min-width: 240px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.12);
  color: var(--white);
  transition: border-color var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter__form input:focus { outline: none; border-color: var(--white); }
.newsletter__form .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.newsletter__form .btn--primary:hover { background: var(--gray-100); }
.newsletter__note { font-size: .78rem; opacity: .7; }
.newsletter__note a { text-decoration: underline; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-800);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__logo strong { color: var(--red); }
.footer__col--brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--gray-800);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: .9rem;
}
.footer__social a:hover { background: var(--red); color: var(--white); }

.footer__col h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col ul a {
  font-size: .85rem;
  opacity: .7;
  transition: all var(--transition);
}
.footer__col ul a:hover { opacity: 1; color: var(--white); padding-left: 4px; }

.footer__bottom { padding: 1.5rem 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
}
.footer__legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer__legal a { opacity: .65; transition: opacity var(--transition); }
.footer__legal a:hover { opacity: 1; }
.footer__payment { display: flex; gap: .5rem; font-size: 1.5rem; color: var(--gray-500); }

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 860px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  border: 1px solid var(--gray-200);
  animation: slideUp .4s ease forwards;
  display: none;
}
.cookie-banner.visible { display: block; }
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__content strong { display: block; margin-bottom: .2rem; color: var(--gray-900); }
.cookie-banner__content p { font-size: .82rem; color: var(--gray-600); }
.cookie-banner__actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
  margin-left: auto;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card--large { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col--brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; padding-block: 3rem 2rem; }
  .hero__visual   { display: none; }
  .promo-section__inner { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar__right { display: none; }
  .navbar__search { display: none; }
  .navbar__actions .btn--outline { display: none; }
  .hamburger { display: flex; }
  .mega-menu { display: none; }
  .mega-menu.open { display: block; }
  .categories__grid { grid-template-columns: 1fr 1fr; }
  .cat-card--large { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__col--brand { grid-column: span 2; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: .75rem; }
  .trust-item { min-width: 160px; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .cat-card--large { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: span 1; }
  .hero__text h1 { font-size: 2rem; }
  .hero__cta { flex-direction: column; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
