/* ============================================
   QUADROVEL — Design Phase Styles (standalone)
   ============================================ */

:root {
  --brand-pink: #E91E63;
  --brand-pink-dark: #C2185B;
  --brand-pink-light: #FCE4EC;
  --brand-wine: #8B2A3F;
  --hero-pink-soft: #FAEDED;
  --bg-page: #FFFFFF;
  --bg-section: #F5F5F5;
  --bg-coupon: #000000;
  --bg-footer: #1F1F1F;
  --bg-footer-dark: #161616;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: rgba(255, 255, 255, 0.7);
  --star: #FFC107;
  --border-light: #EEEEEE;
  --border-mid: #DDDDDD;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.5;
  font-size: 14px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PLACEHOLDERS (no images yet)
   ============================================ */
.placeholder {
  background: linear-gradient(135deg, #E5E5E5 0%, #F0F0F0 50%, #E5E5E5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
  background-size: 200% 200%;
  pointer-events: none;
}
.placeholder--product { aspect-ratio: 3/4; }
.placeholder--category { aspect-ratio: 1; background: linear-gradient(135deg, #EAE7E2, #F0EDE8); color: #888; }
.placeholder--avatar {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #D7D7D7, #F0F0F0);
  font-size: 11px;
  padding: 0;
}
.placeholder--insta { aspect-ratio: 1; background: linear-gradient(135deg, #C0C0C0, #E0E0E0); color: #777; }
.placeholder--badge {
  aspect-ratio: 4/1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #2E7D32, #43A047);
  color: #FFF;
  font-size: 9px;
}
/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--bg-coupon);
  color: #FFF;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topbar strong { color: #FFF; font-weight: 800; }
.topbar__heart { color: #FF1744; margin-left: 4px; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF;
  border-bottom: 1px solid var(--border-light);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.logo picture,
.logo img {
  display: block;
  height: 32px;
  width: auto;
}
.search-bar {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 11px 44px 11px 16px;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-dark);
  background: #FFF;
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--brand-pink); }
.search-bar input::placeholder { color: #999; }
.search-bar button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--brand-pink); }

/* Desktop dropdown CATEGORIAS (hidden on mobile — drawer toma conta) */
.header__nav-dropdown { position: relative; }
.header__nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.header__nav-dropdown__trigger svg { transition: transform 0.2s; }
.header__nav-dropdown:hover .header__nav-dropdown__trigger,
.header__nav-dropdown:focus-within .header__nav-dropdown__trigger { color: var(--brand-pink); }
.header__nav-dropdown:hover .header__nav-dropdown__trigger svg,
.header__nav-dropdown:focus-within .header__nav-dropdown__trigger svg { transform: rotate(180deg); }
.header__nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background: #FFF;
  border: 1px solid #EEE;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 22px;
  min-width: 420px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2px 28px;
  z-index: 50;
}
.header__nav-dropdown__panel::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.header__nav-dropdown:hover .header__nav-dropdown__panel,
.header__nav-dropdown:focus-within .header__nav-dropdown__panel { display: grid; }
.header__nav-dropdown__panel a {
  display: block;
  padding: 8px 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dark);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s;
}
.header__nav-dropdown__panel a:hover { color: var(--brand-pink); }
@media (max-width: 1024px) {
  .header__nav-dropdown { display: none; }
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  padding: 4px;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--brand-pink);
  color: #FFF;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  padding: 0 4px;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-pink-soft);
}
.hero__viewport {
  position: relative;
  aspect-ratio: 2.36 / 1;
  overflow: hidden;
}
.hero__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.hero__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.hero__slide--banner {
  display: block;
  text-decoration: none;
}
.hero__slide--banner picture,
.hero__slide--banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.hero__arrow:hover { background: rgba(0,0,0,0.7); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.15);
  transition: all 0.2s;
  cursor: pointer;
  padding: 0;
}
.hero__dot.is-active { background: #FFF; border-color: #FFF; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  background: #FFF;
  padding: 38px 0;
  border-bottom: 1px solid var(--border-light);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-pink);
}
.trust__text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.trust__text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  padding: 64px 0;
}
.section--why { background: #FFF; }
.section--highlights { background: var(--bg-section); }
.section--categories { background: var(--bg-section); }
.section--instagram { background: #FFF; padding: 50px 0 0; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-title::before,
.section-title::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--border-mid);
}
.section-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.section-title a:hover { color: var(--brand-pink); }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ============================================
   CARDS
   ============================================ */
.card-product {
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card-product .placeholder {
  border-radius: 0;
}
.card-product__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.products-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.card-product h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin: 14px 12px 6px;
  line-height: 1.4;
  color: var(--text-dark);
  min-height: 36px;
}
.card-product .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.card-category {
  display: block;
  text-align: center;
  cursor: pointer;
}
.card-category .placeholder {
  border-radius: 4px;
  transition: transform 0.2s;
}
.card-category:hover .placeholder { transform: scale(1.03); }
.card-category h5 {
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ============================================
   GRID
   ============================================ */
.grid {
  display: grid;
  gap: 24px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* ============================================
   CAROUSEL
   ============================================ */
.carousel { position: relative; }
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel__track > * {
  flex-shrink: 0;
}
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCC;
  transition: background 0.2s;
}
.carousel__dot.is-active { background: var(--text-dark); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn--pink { background: var(--brand-pink); color: #FFF; }
.btn--pink:hover { background: var(--brand-pink-dark); }
.btn--outline-pink { background: transparent; color: var(--brand-pink); border-color: var(--brand-pink); }
.btn--outline-pink:hover { background: var(--brand-pink); color: #FFF; }
.btn--white { background: #FFF; color: var(--text-dark); }
.btn--white:hover { background: #F0F0F0; }
.btn--block { display: flex; width: 100%; }

/* ============================================
   POR QUE QUADROVEL
   ============================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.why__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.why__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.why__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 480px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.rating__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--star);
}
.rating__stars svg { width: 22px; height: 22px; }
.rating__count {
  font-size: 13px;
  color: var(--text-muted);
}
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.testimonial-row__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-row__user strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-row__user small {
  font-size: 11px;
  color: var(--text-muted);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: #F7F7F7;
  border-radius: 6px;
  padding: 18px 16px;
}
.testimonial-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.testimonial-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram__lead {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.instagram__handle {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--text-dark);
}
.instagram__divider {
  width: 60px;
  height: 1px;
  background: var(--border-mid);
  margin: 12px auto 28px;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer__col p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-light);
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}
.footer__contact svg { flex-shrink: 0; color: rgba(255,255,255,0.5); }
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer__list a:hover { color: #FFF; }
.footer__arrow { color: var(--brand-pink); font-weight: 700; }
.footer__social {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--brand-pink);
  border-color: var(--brand-pink);
  color: #FFF;
}
.footer__bottom {
  background: var(--bg-footer-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 24px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0s 0.25s;
}
.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s;
}
.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.mobile-drawer__panel {
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: #FFF;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer__panel > * { flex-shrink: 0; }
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__search {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #ECECEC;
  position: relative;
}
.mobile-drawer__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-dark);
  padding: 4px 0;
  background: transparent;
}
.mobile-drawer__search input::placeholder { color: #999; }
.mobile-drawer__search button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  padding: 4px;
}

.mobile-drawer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  border-bottom: 1px solid #F0F0F0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
  background: #FFF;
  text-align: left;
}
.mobile-drawer__item--active { color: var(--brand-pink); }
.mobile-drawer__item--expandable .chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: -10px -8px -10px 0;
  font-size: 18px;
  color: #999;
  transition: all 0.2s;
}
.mobile-drawer__item--expandable.is-expanded {
  background: #F7F7F7;
}
.mobile-drawer__item--expandable.is-expanded .chevron {
  background: var(--brand-pink);
  color: #FFF;
  transform: rotate(90deg);
}
.mobile-drawer__item--account {
  margin-top: 8px;
}
.mobile-drawer__account-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFF;
}
.mobile-drawer__sub.is-expanded {
  max-height: 1200px;
}
.mobile-drawer__sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-bottom: 1px solid #F4F4F4;
  color: var(--text-dark);
  font-size: 14px;
}
.mobile-drawer__sub a:hover { background: #F8F8F8; }

/* ============================================
   LOGIN OVERLAY
   ============================================ */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0s 0.25s;
}
.login-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s;
}
.login-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.login-overlay__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: #FFF;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.login-overlay.is-open .login-overlay__panel { transform: translateX(0); }

.login-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #F0F0F0;
}
.login-overlay__header h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.login-overlay__close {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dark);
}

.login-form {
  padding: 22px;
}
.login-form__label {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.login-form__label .required { color: var(--brand-pink); }
.login-form__label input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.login-form__label input:focus { border-color: var(--brand-pink); }
.login-form__extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
}
.checkbox input { accent-color: var(--brand-pink); }
.login-form__forgot { color: var(--brand-pink); }
.login-form__signup {
  margin: 0 22px;
  padding: 24px 0 32px;
  border-top: 1px solid #EEE;
  text-align: center;
}
.login-form__signup-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 14px;
  color: #BBB;
}
.login-form__signup p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.login-form__create {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-pink);
  text-transform: uppercase;
  border-bottom: 1px solid var(--brand-pink);
  padding-bottom: 2px;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header__inner { gap: 18px; }
  .header__nav { gap: 18px; }
  .header__nav a { font-size: 11px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 32px; }
  .instagram__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  body { font-size: 13px; }

  .topbar { font-size: 11px; padding: 8px 12px; }

  .header__inner {
    padding: 12px 16px;
    gap: 12px;
    justify-content: space-between;
  }
  .hamburger { display: flex; }
  .header__inner .search-bar,
  .header__nav { display: none; }
  .logo { flex: 1; justify-content: center; }
  .logo img { height: 26px; }

  .hero__viewport { aspect-ratio: 3 / 4; }
  .hero__arrow { width: 36px; height: 36px; }
  .hero__arrow--prev { left: 8px; }
  .hero__arrow--next { right: 8px; }

  .trust { padding: 24px 0; }
  .trust__inner { grid-template-columns: 1fr; gap: 18px; padding: 0 24px; }
  .trust__item { gap: 18px; }
  .trust__icon { width: 56px; height: 56px; }
  .trust__text h3 { font-size: 14px; }

  .section { padding: 40px 0; }
  .section--instagram { padding: 32px 0 0; }
  .section-title { font-size: 15px; letter-spacing: 0.1em; margin-bottom: 24px; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px 40px;
  }
  .footer { padding-top: 40px; }
  .footer__col h4 { font-size: 18px; }

  .why__title { font-size: 22px; }
  .why__subtitle { font-size: 17px; }
  .testimonial-row { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 12px; }

  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .instagram__handle { font-size: 18px; }

  /* Mobile carousels: dynamic via JS */
  .carousel__track { gap: 12px; }

  .placeholder--badge { aspect-ratio: 5/1; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
}
