/* ALUMIRE SOLUÇÕES — Catálogo */
:root {
  --bg: #ebebeb;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border: #e6e6e6;
  --border-strong: #cccccc;
  --text: #333333;
  --text-muted: #666666;
  --primary: #3483fa;
  --primary-hover: #2968c8;
  --accent: #fff159;
  --accent-soft: rgba(255, 241, 89, 0.4);
  --whatsapp: #16a34a;
  --whatsapp-hover: #15803d;
  --danger: #dc2626;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  --ml-gradient: linear-gradient(90deg, #fff159 0%, #ffcc00 100%);
  --ml-blue-gradient: linear-gradient(135deg, #3483fa 0%, #0056d6 100%);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  display: none;
}

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

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

a:hover {
  color: var(--accent);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-hover), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hidden {
  display: none !important;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ml-gradient);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
}

.header__inner {
  width: min(1140px, 92vw);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__brand img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.header__nav a {
  color: #333333;
  font-weight: 600;
  font-size: 0.95rem;
}

.header__nav a:hover {
  color: #000000;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

.header__cart:hover {
  border-color: rgba(0,0,0,0.2);
  transform: scale(1.04);
}

.header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  background: var(--accent);
  color: #333;
  border-radius: 999px;
}

.header__cart-count:empty,
.header__cart-count[data-zero="true"] {
  display: none;
}

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

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--ml-blue-gradient);
  color: #fff;
  box-shadow: none;
}

.btn--primary:hover {
  box-shadow: 0 4px 12px rgba(52, 131, 250, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary-hover);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover:not(:disabled) {
  background: var(--whatsapp-hover);
}

.btn--whatsapp:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

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

/* Hero */
.hero {
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: visible;
}

.hero__grid {
  width: min(1140px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

/* Location Badge and Status Indicator */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-hover);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
}

.status-indicator {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  display: inline-block;
}

.status-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whatsapp);
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.btn--primary {
  background: var(--ml-blue-gradient);
  color: #fff;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 131, 250, 0.35);
}

.btn--primary svg {
  transition: transform 0.25s ease;
}

.btn--primary:hover svg {
  transform: translateX(4px);
}

/* Trust Badges */
.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: border-color var(--transition), transform var(--transition);
}

.hero__trust-badge:hover {
  border-color: rgba(14, 165, 233, 0.25);
  transform: translateY(-2px);
}

.hero__trust-icon {
  color: var(--primary);
  flex-shrink: 0;
}

/* Ambient Light Blur Orbs */
.hero__orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

.hero__orb--primary {
  background: radial-gradient(circle, var(--primary) 0%, rgba(2, 132, 199, 0) 70%);
  top: 5%;
  left: 15%;
  animation: float-orb 12s ease-in-out infinite alternate;
}

.hero__orb--accent {
  background: radial-gradient(circle, var(--accent) 0%, rgba(217, 119, 6, 0) 70%);
  bottom: 5%;
  right: 15%;
  animation: float-orb 15s ease-in-out infinite alternate-reverse;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.15); }
}

.hero__visual {
  position: relative;
  min-height: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glassmorphism Cards */
.glass-card {
  position: absolute;
  width: 290px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  box-shadow: 
    0 12px 40px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.3s ease;
  z-index: 10;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(0.5deg);
  box-shadow: 
    0 24px 48px rgba(15, 23, 42, 0.12),
    0 1px 5px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(14, 165, 233, 0.4);
  z-index: 15;
}

.glass-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.hero__card-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hero__card-tag {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--primary-hover);
  background: rgba(14, 165, 233, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.hero__card-badge-gold {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.hero__card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.hero__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(14, 165, 233, 0.06);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.hero__card-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--whatsapp);
}

.hero__card-stars {
  font-size: 0.8rem;
  color: #fbbf24;
  letter-spacing: 2px;
}

/* Card 1 Positions and Keyframes */
.hero__card--1 {
  top: 5%;
  left: 2%;
  animation: float-slow-1 8s ease-in-out infinite;
}

/* Card 2 Positions and Keyframes */
.hero__card--2 {
  bottom: 8%;
  right: 2%;
  animation: float-slow-2 8s ease-in-out 1.5s infinite;
}

@keyframes float-slow-1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-slow-2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
}

/* Card 3: Interactive Demo Card (Simulated Cart Flow) */
.hero__card--3 {
  top: 36%;
  left: 20%;
  width: 310px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 
    0 15px 35px rgba(14, 165, 233, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.02);
  animation: float-slow-3 9s ease-in-out 0.5s infinite;
  z-index: 12;
}

@keyframes float-slow-3 {
  0%, 100% { transform: translateY(0) scale(1.02) rotate(0.5deg); }
  50% { transform: translateY(8px) scale(1.02) rotate(-0.5deg); }
}

.hero__mock-product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero__mock-emoji-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(14, 165, 233, 0.12);
}

.hero__mock-info {
  display: flex;
  flex-direction: column;
}

.hero__mock-info strong {
  margin-bottom: 0.15rem;
  font-size: 1rem !important;
}

.hero__mock-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__mock-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.hero__mock-qty {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  font-size: 0.85rem;
}

.hero__mock-qty span {
  color: var(--text-muted);
  width: 18px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}

.hero__mock-qty strong {
  margin: 0 0.5rem;
  font-size: 0.85rem;
  font-family: var(--font);
}

.hero__mock-btn {
  flex: 1;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  animation: mock-add-click 6s infinite;
}

@keyframes mock-add-click {
  0%, 45%, 100% {
    transform: scale(1);
    background: var(--primary);
  }
  50% {
    transform: scale(0.95);
    background: var(--primary-hover);
  }
  55%, 90% {
    transform: scale(1);
    background: var(--whatsapp);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  }
}

.hero__mock-tooltip {
  position: absolute;
  top: -46px;
  right: 0;
  background: var(--text);
  color: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
  animation: mock-tooltip-show 6s infinite;
}

@keyframes mock-tooltip-show {
  0%, 50%, 95%, 100% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  55%, 90% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__mock-tooltip-badge {
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .hero {
    padding: 3rem 0 4rem;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero__lead {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__trust-badges {
    justify-content: center;
  }
  .hero__visual {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero__visual {
    min-height: 480px;
  }
  .hero__card--3 {
    left: 10%;
  }
}

@media (max-width: 576px) {
  .glass-card {
    width: 100%;
    position: relative;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    margin-bottom: 1.25rem;
    animation: none !important;
  }
  .hero__visual {
    flex-direction: column;
    min-height: auto;
    gap: 1rem;
    padding-inline: 1rem;
  }
  .hero__orb {
    display: none;
  }
}

/* Sections */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.section-head--row p {
  margin-inline: 0;
}

.catalog__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.catalog__search {
  width: 100%;
  min-width: 280px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.catalog__search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

@media (max-width: 768px) {
  .catalog__controls {
    align-items: flex-start;
    width: 100%;
  }
  .catalog__search {
    min-width: 100%;
  }
}

.categories {
  padding: 4rem 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover,
.category-card.is-active {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.category-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Catalog */
.catalog {
  padding: 2rem 0 5rem;
}

.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-muted);
  background: var(--bg-card);
  border: none;
  box-shadow: var(--shadow);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  background: var(--primary);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
}

.product-card__visual {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), transparent);
}

.cart-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg);
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-hover);
  margin-bottom: 0.35rem;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.product-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.qty-control button:hover {
  background: rgba(14, 165, 233, 0.2);
}

.qty-control input {
  width: 44px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  text-align: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product-card .btn-add {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

/* CTA */
.cta {
  padding: 4rem 0;
}

.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 4px);
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cta p {
  color: var(--text-muted);
  max-width: 28rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
  background: var(--bg-elevated);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__logo {
  margin-bottom: 1rem;
  opacity: 0.95;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-hover);
  margin-bottom: 0.75rem;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__admin-link {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__admin-link:hover {
  color: var(--primary-hover);
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.06);
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.drawer__head h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.drawer__close {
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.drawer__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

.drawer__empty span {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item__info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item__qty {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.cart-item__remove {
  align-self: flex-start;
  padding: 0.25rem;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-item__remove:hover {
  color: var(--danger);
}

.drawer__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.25rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 300;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* Mobile nav */
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 4vw 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    margin-left: 0;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__menu-btn {
    display: flex;
  }

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

  .hero__visual {
    min-height: 220px;
  }

  .hero__card--1 {
    left: 0;
  }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .cta p {
    max-width: none;
  }
}
