/* =========================================================
   Pink Mood Fitwear — style.css
   Referência visual: avvi.com.br
   ========================================================= */

/* --- Variáveis globais --- */
:root {
  --color-bg:       #faf8f6;
  --color-card:     #e5e3de;
  --color-accent:   #b07090;
  --color-text:     #2d2420;
  --color-muted:    #a09280;
  --color-hero-bg:  #e0c5d0;
  --color-footer:   #2d2420;
  --color-border:   #e5e3de;
  --color-border2:  #ebe9e4;

  --font-body:      'Inter', sans-serif;
  --font-headline:  'Playfair Display', serif;
  --font-deco:      'Dancing Script', cursive;

  --radius-card:    12px;
  --radius-banner:  16px;
  --radius-pill:    50px;

  --transition:     0.25s ease;
  --container:      1280px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

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

/* =========================================================
   1. BARRA DE ANÚNCIOS
   ========================================================= */
.announcement-bar {
  background: var(--color-text);
  color: #fff;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.announcement-bar .bar-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.announcement-bar .bar-msg {
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 400;
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-align: center;
  width: 100%;
}
.announcement-bar .bar-msg.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  width: auto;
}
.bar-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: background var(--transition);
  z-index: 2;
}
.bar-arrow:hover { background: rgba(255,255,255,0.15); }
.bar-arrow.prev { left: 16px; }
.bar-arrow.next { right: 16px; }

/* =========================================================
   2. HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  height: 62px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-logo img { height: 36px; width: auto; }
.header-logo-text {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.5px;
}
.header-logo-text span { color: var(--color-text); }

.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--color-accent); }
.header-nav a.nav-aesthetic { color: var(--color-accent); display: flex; align-items: center; gap: 4px; }

.header-icons { display: flex; align-items: center; gap: 16px; }
.header-icons a, .header-icons button {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text);
  transition: color var(--transition);
}
.header-icons a:hover, .header-icons button:hover { color: var(--color-accent); }
.header-icons svg { width: 22px; height: 22px; }
.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition); }

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}
.nav-drawer .close-drawer {
  align-self: flex-end;
  font-size: 22px;
  color: var(--color-muted);
  margin-bottom: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
}
.overlay.active { display: block; }

/* =========================================================
   3. HERO BANNER — full-width photo banner
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  /* Substitua pelo caminho real da foto: url('/img/hero.jpg') */
  background: linear-gradient(135deg, #2d1520 0%, #8b3a5a 50%, #c89aaa 100%);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px 80px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.hero h1 {
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 0;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 420px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #b8004f; transform: translateY(-2px); }
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--color-accent); }
.btn-ghost-light {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  transition: background var(--transition), border-color var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); color: #fff; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}
.hero-dots span.active { background: #fff; width: 24px; border-radius: 4px; }

/* =========================================================
   4. BARRA DE DIFERENCIAIS
   ========================================================= */
.perks-bar {
  border-top: 1px solid var(--color-border2);
  border-bottom: 1px solid var(--color-border2);
  padding: 20px 0;
}
.perks-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.perk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 16px;
  border-right: 1px solid var(--color-border2);
  text-align: center;
}
.perk:last-child { border-right: none; }
.perk-icon { font-size: 18px; flex-shrink: 0; }

/* =========================================================
   5 & 7. SEÇÃO DE PRODUTOS (carrossel)
   ========================================================= */
.products-section { padding: 60px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
}
.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 8px; }

.carousel-wrapper { position: relative; }
.carousel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  overflow: hidden;
}
.carousel-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition), transform var(--transition);
  z-index: 10;
  cursor: pointer;
}
.carousel-btn:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.14); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }

/* --- Card de produto --- */
.product-card { cursor: pointer; }
.card-image {
  background: var(--color-card);
  border-radius: var(--radius-card);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-image img { transform: scale(1.04); }
.card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ebd5df 0%, #f2e8ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.product-card:hover .card-placeholder { transform: scale(1.04); }
.placeholder-icon { font-size: 36px; opacity: 0.4; }

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--color-muted);
  transition: color var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
}
.btn-wishlist:hover, .btn-wishlist.active { color: var(--color-accent); background: #fff; }

.card-info { padding: 0 2px; }
.product-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; line-height: 1.4; }
.product-price { font-size: 15px; font-weight: 700; color: var(--color-text); }
.product-installments { font-size: 11.5px; color: var(--color-muted); }
.product-pix { font-size: 11.5px; color: var(--color-accent); font-weight: 500; }

/* =========================================================
   6 & 9. BANNERS DE CATEGORIA
   ========================================================= */
.category-section { padding: 0 0 60px; }
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.category-banner {
  border-radius: var(--radius-banner);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
}
.category-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-banner:hover .category-bg { transform: scale(1.04); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.category-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.category-shop-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  transition: background var(--transition), color var(--transition);
}
.category-banner:hover .category-shop-btn {
  background: var(--color-accent);
  color: #fff;
}

/* =========================================================
   8. BANNER AESTHETIC COLLECTION
   ========================================================= */
.aesthetic-section { padding: 0 0 60px; }
.aesthetic-banner {
  border-radius: 20px;
  background: var(--color-hero-bg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 380px;
}
.aesthetic-left {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.aesthetic-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  width: fit-content;
}
.aesthetic-left h2 {
  font-family: var(--font-headline);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}
.aesthetic-left p {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 340px;
  line-height: 1.7;
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-accent:hover { opacity: 0.9; transform: translateY(-1px); }
.aesthetic-right {
  background: linear-gradient(135deg, #e8c4d0, #d4a0b8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.aesthetic-watermark {
  font-family: var(--font-deco);
  font-size: 100px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  transform: rotate(-10deg);
  user-select: none;
  text-align: center;
  line-height: 1.2;
}

/* =========================================================
   10. GALERIA INSTAGRAM
   ========================================================= */
.instagram-section {
  background: #faf8f9;
  padding: 80px 0;
}
.instagram-header { text-align: center; margin-bottom: 40px; }
.instagram-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.instagram-handle {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.instagram-sub { font-size: 14px; color: var(--color-muted); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.instagram-item {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.insta-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.instagram-item:hover .insta-bg { transform: scale(1.06); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,0,95,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 28px; height: 28px; color: #fff; }

/* =========================================================
   11. RODAPÉ
   ========================================================= */
.site-footer {
  background: var(--color-footer);
  color: #fff;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo-text {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 220px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-socials a:hover { border-color: var(--color-accent); background: var(--color-accent); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact p span { color: rgba(255,255,255,0.4); flex-shrink: 0; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: transform var(--transition);
  z-index: 9999;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-text);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9998;
  font-size: 13px;
}
.cookie-banner p { color: rgba(255,255,255,0.8); max-width: 600px; }
.cookie-banner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-decline {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  transition: background var(--transition);
}
.btn-cookie-decline:hover { background: rgba(255,255,255,0.1); }
.btn-cookie-accept {
  background: var(--color-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity var(--transition);
}
.btn-cookie-accept:hover { opacity: 0.85; }

/* =========================================================
   PAGE TRANSITION OVERLAY
   ========================================================= */
#page-transition {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9998;
  opacity: 1;
  transition: opacity 0.28s ease;
  pointer-events: none;
  /* Fallback: some after 0.7s even if JS fails */
  animation: pm-fallback 0s linear 0.7s forwards;
}
#page-transition.pm-loaded {
  opacity: 0;
  animation: none;
}
@keyframes pm-fallback {
  to { opacity: 0; }
}

/* =========================================================
   SKELETON SCREEN
   ========================================================= */
.skeleton {
  background: linear-gradient(90deg, #f2f2f2 25%, #e8e8e8 50%, #f2f2f2 75%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite;
  border-radius: 8px;
  color: transparent !important;
}
@keyframes skeleton-load {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 1100px) {
  .carousel-track { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 48px; }
  .aesthetic-left h2 { font-size: 44px; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-inner { grid-template-columns: repeat(3, 1fr); }
  .perk:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 520px; align-items: flex-end; }
  .hero-content { padding: 0 0 56px 24px; max-width: 100%; }
  .hero h1 { font-size: 42px; }

  .carousel-track { grid-template-columns: repeat(2, 1fr); }
  .carousel-btn.prev { left: -10px; }
  .carousel-btn.next { right: -10px; }

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

  .aesthetic-banner { grid-template-columns: 1fr; }
  .aesthetic-right { display: none; }
  .aesthetic-left { padding: 40px 28px; }
  .aesthetic-left h2 { font-size: 36px; }

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

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

  .perks-inner { grid-template-columns: repeat(2, 1fr); }
  .perk { border-right: 1px solid var(--color-border2); }
  .perk:nth-child(2n) { border-right: none; }
  .perk:nth-child(3) { border-right: 1px solid var(--color-border2); }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 0 0 48px 20px; }
  .hero h1 { font-size: 34px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
