/* ============================================================
   Aarnik's Cozy Oven — Main Stylesheet
   Author: Studio Design
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand palette */
  --color-rose:       #c8445a;
  --color-rose-dark:  #a83348;
  --color-rose-light: #f5c3b8;
  --color-blush:      #fdf0ef;
  --color-cream:      #faf5f0;
  --color-peach:      #fde8e4;
  --color-sand:       #d4a574;
  --color-sand-dark:  #b8895a;
  --color-text:       #6b4c4c;
  --color-muted:      #a07878;
  --color-white:      #ffffff;
  --color-whatsapp:   #25d366;

  /* Typography */
  --font-display: 'Great Vibes', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(180, 100, 100, 0.08);
  --shadow-md:  0 6px 24px rgba(180, 100, 100, 0.13);
  --shadow-lg:  0 14px 40px rgba(180, 100, 100, 0.18);
  --shadow-rose: 0 8px 32px rgba(200, 68, 90, 0.22);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-mid:  0.35s ease;
  --transition-slow: 0.65s ease;
}

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

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

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.display-title {
  font-family: var(--font-display);
  color: var(--color-rose);
  line-height: 1.05;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--color-rose);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--tinted {
  background: rgba(253, 241, 238, 0.55);
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: 0 auto var(--space-lg);
}

.divider__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-rose-light));
  border-radius: 2px;
}

.divider__line--right {
  background: linear-gradient(90deg, var(--color-rose-light), transparent);
}

.divider__icon {
  font-size: 1.1rem;
  color: var(--color-rose);
}

/* ── HEADER / NAVBAR ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 240, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 140, 130, 0.14);
  padding: 14px var(--space-md);
  transition: box-shadow var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--color-rose);
  white-space: nowrap;
}

.site-header__logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  margin-top: -4px;
}

/* Desktop nav */
.main-nav {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.main-nav__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav__link:hover,
.main-nav__link.active {
  background: var(--color-peach);
  color: var(--color-rose);
}

.main-nav__cta {
  background: var(--color-rose);
  color: var(--color-white) !important;
  padding: 8px 20px !important;
}

.main-nav__cta:hover {
  background: var(--color-rose-dark) !important;
  color: var(--color-white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger__bar {
  width: 26px;
  height: 2.5px;
  background: var(--color-rose);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--color-blush);
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-sm);
  z-index: 200;
  transition: right var(--transition-mid);
  box-shadow: -8px 0 40px rgba(180, 100, 100, 0.15);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-rose);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav__link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 140, 130, 0.15);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: block;
}

.mobile-nav__link:hover {
  color: var(--color-rose);
  padding-left: 10px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(100, 50, 50, 0.3);
  z-index: 190;
  backdrop-filter: blur(2px);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px var(--space-md) 40px;
  text-align: center;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__floating-items {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  margin-bottom: -10px;
}

.hero__arc {
  position: relative;
  width: 100%;
  height: 150px;
}

.hero__arc-item {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(180, 100, 100, 0.15));
  animation: floatBounce 4s ease-in-out infinite;
}

.hero__arc-item:nth-child(1) { left: 4%;  bottom: 10%; animation-delay: 0s;    width: 65px; }
.hero__arc-item:nth-child(2) { left: 18%; bottom: 40%; animation-delay: 0.4s;  width: 58px; }
.hero__arc-item:nth-child(3) { left: 32%; bottom: 64%; animation-delay: 0.8s;  width: 55px; }
.hero__arc-item:nth-child(4) { left: 47%; bottom: 78%; animation-delay: 1.0s;  width: 52px; }
.hero__arc-item:nth-child(5) { left: 61%; bottom: 64%; animation-delay: 0.6s;  width: 60px; }
.hero__arc-item:nth-child(6) { left: 75%; bottom: 40%; animation-delay: 0.2s;  width: 65px; }
.hero__arc-item:nth-child(7) { right: 3%; bottom: 10%; animation-delay: 0.9s;  width: 72px; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--color-rose);
  line-height: 1.0;
  animation: fadeSlideUp 0.9s ease both;
}

.hero__tagline {
  font-size: clamp(0.82rem, 2.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-text);
  margin-top: var(--space-xs);
  animation: fadeSlideUp 0.9s 0.18s ease both;
  text-transform: uppercase;
}

.hero__scene {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  height: 120px;
  margin-top: 10px;
}

.hero__scene-item {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(180, 100, 100, 0.12));
  animation: floatBounce 5s ease-in-out infinite;
}

.hero__scene-item:nth-child(1) { left: 2%;   bottom: 0;  width: 58px; animation-delay: 0.1s; }
.hero__scene-item:nth-child(2) { left: 13%;  bottom: 5%; width: 52px; animation-delay: 0.5s; }
.hero__scene-item:nth-child(3) { left: 26%;  bottom: 0;  width: 70px; animation-delay: 0.9s; }
.hero__scene-item:nth-child(4) { left: 40%;  bottom: 5%; width: 55px; animation-delay: 0.3s; }
.hero__scene-item:nth-child(5) { left: 54%;  bottom: 0;  width: 62px; animation-delay: 0.7s; }
.hero__scene-item:nth-child(6) { left: 67%;  bottom: 5%; width: 75px; animation-delay: 0.2s; }
.hero__scene-item:nth-child(7) { right: 4%;  bottom: 0;  width: 80px; animation-delay: 0.6s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CATEGORY NAV (icon row) ──────────────────────────────── */
.category-nav {
  background: rgba(253, 241, 238, 0.9);
  border-top: 1px solid rgba(200, 140, 130, 0.1);
  border-bottom: 1px solid rgba(200, 140, 130, 0.1);
  padding: 28px var(--space-md);
}

.category-nav__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  max-width: 860px;
  margin: 0 auto;
}

.category-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.category-nav__item:hover {
  transform: translateY(-5px);
}

.category-nav__circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
  overflow: hidden;
  padding: 12px;
}

.category-nav__item:hover .category-nav__circle {
  box-shadow: var(--shadow-rose);
  background: var(--color-blush);
}

.category-nav__circle img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.category-nav__item:hover .category-nav__circle img {
  transform: scale(1.12);
}

.category-nav__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.category-nav__item:hover .category-nav__label {
  color: var(--color-rose);
}

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(245, 195, 184, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-rose);
  color: var(--color-white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.product-card__img-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  transition: transform var(--transition-mid);
}

.product-card:hover .product-card__img-wrap {
  transform: scale(1.1) rotate(-2deg);
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.product-card__desc {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  min-height: 36px;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-rose);
}

.product-card__btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--color-rose);
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.product-card__btn:hover {
  background: var(--color-rose-dark);
  transform: scale(1.04);
}

/* ── CUSTOM CAKE BANNER ───────────────────────────────────── */
.custom-banner {
  background: linear-gradient(135deg, var(--color-rose) 0%, #d9566e 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  overflow: hidden;
  position: relative;
}

.custom-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px;
  right: -60px;
}

.custom-banner::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -60px;
  left: 40px;
}

.custom-banner__text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.custom-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.custom-banner__sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.custom-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-rose);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.custom-banner__btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.custom-banner__img {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
  animation: floatBounce 4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.gallery-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-peach) 0%, var(--color-blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  position: relative;
}

.gallery-cell:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-cell img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: transform var(--transition-mid);
}

.gallery-cell:hover img {
  transform: scale(1.15) rotate(3deg);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid rgba(200, 140, 130, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-blush);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(200, 68, 90, 0.1);
  background: var(--color-white);
}

.form-submit {
  background: var(--color-rose);
  color: var(--color-white);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-submit:hover {
  background: var(--color-rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.form-submit:active {
  transform: translateY(0);
}

/* ── WHATSAPP FLOATING BUTTON ─────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 13px 22px 13px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: waPop 0.6s 1s cubic-bezier(0.68,-0.55,0.27,1.55) both, waPulse 2.5s 2s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

.wa-fab__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-fab__label {
  white-space: nowrap;
}

@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42); }
  50%       { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65); }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-blush);
  border-top: 1px solid rgba(200, 140, 130, 0.12);
  padding: 40px var(--space-md) 24px;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-rose);
  margin-bottom: 4px;
}

.site-footer__tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
}

.site-footer__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.site-footer__link:hover {
  color: var(--color-rose);
}

.site-footer__copy {
  font-size: 0.72rem;
  color: var(--color-muted);
  opacity: 0.7;
}

.site-footer__copy span {
  color: var(--color-rose);
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── TOAST NOTIFICATION ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 26px;
  z-index: 1000;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .custom-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
  }

  .custom-banner__img {
    width: 130px;
    height: 130px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .category-nav__circle {
    width: 68px;
    height: 68px;
  }

  .category-nav__circle img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .wa-fab__label {
    display: none;
  }

  .wa-fab {
    padding: 14px;
    border-radius: 50%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
