/* ============================================
   Shopee Cell — Design System
   Cores: Laranja + Branco
   ============================================ */

:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;

  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  --primary: var(--orange-600);
  --primary-dark: var(--orange-700);
  --primary-light: var(--orange-500);
  --accent: var(--orange-100);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(234, 88, 12, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px -10px rgba(234, 88, 12, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background: var(--orange-50);
  color: var(--primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 500;
}

.logo strong {
  color: var(--primary);
  font-weight: 800;
}

.logo__svg,
.logo__img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}

.logo--footer .logo__svg,
.logo--footer .logo__img {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
  background: var(--orange-50);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== Hero ========== */
.hero {
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 50%, var(--orange-400) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__content .highlight {
  color: var(--orange-100);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.hero__content p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.9;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  position: relative;
  width: 320px;
  height: 380px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.hero__phone {
  width: 140px;
  height: 280px;
  background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
  border-radius: 24px;
  border: 4px solid var(--gray-700);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero__phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  background: var(--gray-700);
  border-radius: 10px;
}

.hero__phone::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  border-radius: 16px;
}

.hero__float {
  position: absolute;
  background: var(--white);
  color: var(--gray-800);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.hero__float--1 { top: 20px; left: -30px; animation-delay: 0s; }
.hero__float--2 { top: 50%; right: -40px; animation-delay: 1s; }
.hero__float--3 { bottom: 30px; left: -20px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== Categories ========== */
.categories {
  padding: 0 0 32px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.categories__title {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: 32px 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.category-card--xiaomi:hover { border-color: #ff6900; }
.category-card--iphone:hover { border-color: #1d1d1f; }
.category-card--realme:hover { border-color: #ffc915; }
.category-card--acessorios:hover { border-color: var(--orange-400); }

.category-card__logo {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-card__logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.category-card__brand {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 14px;
}

.category-card__brand--acessorios {
  background: var(--orange-100);
  color: var(--orange-800);
}

.category-card__acessorios-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 56px;
  margin-bottom: 16px;
}

.category-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.category-card__icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange-50) 0%, var(--orange-100) 100%);
  border: 1px solid var(--orange-200);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.category-card__icon-box svg {
  width: 22px;
  height: 22px;
}

.category-card--acessorios:hover .category-card__icon-box {
  background: var(--orange-100);
  transform: translateY(-2px);
}

.category-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ========== Products ========== */
.products {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
}

.products-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.products-filter__btn {
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.products-filter__btn:hover {
  border-color: var(--orange-300);
  color: var(--primary);
}

.products-filter__btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products__note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 32px;
}

.product-card.is-hidden {
  display: none;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange-200);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.product-card__badge--sale {
  background: var(--orange-800);
}

.product-card__brand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-card__brand--xiaomi { background: #ff6900; color: #fff; }
.product-card__brand--iphone { background: #1d1d1f; color: #fff; }
.product-card__brand--realme { background: #ffc915; color: #1a1a1a; }

.product-card__image {
  height: 200px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image img {
  max-width: 85%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card__image--acessorio {
  background: linear-gradient(135deg, var(--orange-50) 0%, var(--orange-100) 100%);
}

.product-card__acessorio-icon {
  font-size: 4rem;
  line-height: 1;
}

.product-card__body {
  padding: 20px;
}

.product-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.product-card__footer {
  margin-bottom: 16px;
}

.product-card__price {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.product-card__installment {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ========== Trust ========== */
.trust {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-top: 1px solid var(--gray-100);
}

.trust__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.trust__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust__header h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.1);
  border-color: var(--orange-200);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-50) 0%, var(--orange-100) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange-200);
}

.trust-card__icon svg {
  width: 26px;
  height: 26px;
}

.trust-card__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.trust-card__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.trust-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ========== WhatsApp flutuante ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* ========== Contact ========== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact__info > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.contact__list li {
  margin-bottom: 20px;
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact__list a,
.contact__list span {
  font-size: 1.0625rem;
  color: var(--gray-800);
  font-weight: 500;
}

.contact__form {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== Page Hero (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1.0625rem;
  opacity: 0.9;
}

.page-content {
  padding: 60px 0 100px;
}

/* ========== Prose (legal/content pages) ========== */
.prose h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-100);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

.prose ul {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.prose ul li {
  margin-bottom: 8px;
  color: var(--gray-600);
  line-height: 1.6;
}

.prose ol {
  margin: 0 0 20px 24px;
  list-style: decimal;
}

.prose ol li {
  margin-bottom: 8px;
  color: var(--gray-600);
  line-height: 1.6;
}

.prose a {
  font-weight: 500;
}

.prose__cta {
  margin-top: 40px;
  padding: 20px;
  background: var(--orange-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.info-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
}

.info-box p {
  margin-bottom: 8px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* ========== Footer ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer .logo strong {
  color: var(--orange-400);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-700);
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links h4,
.footer__legal h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--orange-400);
}

.footer__legal p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.875rem;
}

.footer__cnpj {
  color: var(--orange-400);
  font-weight: 600;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__features {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

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

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

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

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

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }

  .header__cta {
    display: none;
  }

  .categories__grid {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

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

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

  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero__card {
    width: 260px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn--lg {
    width: 100%;
  }

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