@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --terracotta: #C2410C;
  --terracotta-hover: #9A3412;
  --washed-linen: #E5E7EB;
  --washed-linen-dark: #D1D5DB;
  --olive: #556B2F;
  --olive-light: #6B8E23;
  --warm-chalk: #F8FAFC;
  --dark-charcoal: #1A1D20;
  --soft-black: #0F172A;
  --muted-text: #475569;
  --border-color: rgba(229, 231, 235, 0.8);
  --card-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.07);
  --glass-bg: rgba(248, 250, 252, 0.85);
  --font-display: 'Comfortaa', cursive, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--warm-chalk);
  color: var(--soft-black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display, .brand-logo {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-charcoal);
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.brand-logo {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--dark-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo span.highlight {
  color: var(--terracotta);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--soft-black);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--terracotta);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--dark-charcoal);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background-color: var(--terracotta);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-header {
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  background-color: var(--terracotta);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--terracotta);
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-header:hover {
  background-color: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 65, 12, 0.35);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-charcoal);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--terracotta);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(194, 65, 12, 0.25);
}

.btn-primary:hover {
  background-color: var(--terracotta-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(194, 65, 12, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-charcoal);
  border-color: var(--dark-charcoal);
}

.btn-secondary:hover {
  background-color: var(--dark-charcoal);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-olive {
  background-color: var(--olive);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(85, 107, 47, 0.25);
}

.btn-olive:hover {
  background-color: var(--olive-light);
  transform: translateY(-3px);
}

/* Section Common Styles */
section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  background-color: rgba(194, 65, 12, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-text);
  max-width: 650px;
  margin-bottom: 3rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 6rem 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #E5E7EB 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--dark-charcoal);
}

.hero-title span {
  color: var(--terracotta);
  font-style: italic;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted-text);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--washed-linen-dark);
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-charcoal);
}

.hero-badge-label {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--washed-linen);
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.15);
  border: 1px solid #ffffff;
}

.hero-image-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(180deg, rgba(85, 107, 47, 0.1) 0%, rgba(194, 65, 12, 0.15) 100%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="700" viewBox="0 0 600 700"><rect width="600" height="700" fill="%23E5E7EB"/><path d="M 150 150 C 250 50, 350 50, 450 150 L 500 650 L 100 650 Z" fill="%23C2410C" opacity="0.12"/><path d="M 200 200 L 400 200 L 370 600 L 230 600 Z" fill="%23556B2F" opacity="0.15"/><text x="50%25" y="45%25" dominant-baseline="middle" text-anchor="middle" fill="%231A1D20" font-family="Comfortaa" font-size="28" font-weight="bold">BLAZER DESTRUTTURATO</text><text x="50%25" y="52%25" dominant-baseline="middle" text-anchor="middle" fill="%23556B2F" font-family="Inter" font-size="18">Sprezzatura Milanese</text></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.floating-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--olive);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Feature Spotlight: Giacche Destrutturate */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spotlight-card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--washed-linen);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--terracotta);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(194, 65, 12, 0.1);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* Product Cards & Catalog */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--washed-linen);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.product-image-container {
  height: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--washed-linen);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dark-charcoal);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  color: var(--dark-charcoal);
}

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

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--washed-linen);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta);
}

.btn-add-cart {
  padding: 0.6rem 1.2rem;
  background-color: var(--soft-black);
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background-color: var(--terracotta);
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  background-color: #ffffff;
  border: 1px solid var(--washed-linen-dark);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--terracotta);
  color: #ffffff;
  border-color: var(--terracotta);
  box-shadow: 0 4px 15px rgba(194, 65, 12, 0.2);
}

/* Reviews / Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--washed-linen);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #F59E0B;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-quote {
  font-style: italic;
  color: var(--dark-charcoal);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--washed-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--terracotta);
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

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

/* Floating Label Forms */
.form-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--washed-linen);
  box-shadow: var(--card-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1.25rem 1.25rem 0.65rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--washed-linen-dark);
  border-radius: 12px;
  background-color: var(--warm-chalk);
  color: var(--soft-black);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--terracotta);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.1);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted-text);
  pointer-events: none;
  transition: var(--transition);
  transform-origin: left top;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-0.6rem) scale(0.8);
  color: var(--terracotta);
  font-weight: 600;
}

select.form-control {
  padding-top: 1.25rem;
  appearance: none;
}

/* Custom Interactive Canvas / SVG Map */
.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--washed-linen);
  box-shadow: var(--card-shadow);
  position: relative;
  background-color: #e5e3df;
  height: 480px;
}

.map-svg-wrapper {
  width: 100%;
  height: 100%;
}

.map-pin {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-pin:hover {
  transform: scale(1.2);
}

.map-overlay-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 340px;
}

.map-overlay-card h4 {
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.map-overlay-card p {
  font-size: 0.875rem;
  color: var(--muted-text);
}

/* Legal Pages Styling */
.legal-content {
  background: #ffffff;
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid var(--washed-linen);
  box-shadow: var(--card-shadow);
  margin-bottom: 4rem;
}

.legal-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--dark-charcoal);
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--washed-linen);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--soft-black);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--olive);
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #334155;
}

.consent-box {
  background: var(--warm-chalk);
  border: 2px dashed var(--terracotta);
  padding: 2rem;
  border-radius: 16px;
  margin: 2.5rem 0;
}

.consent-id-badge {
  display: inline-block;
  background: var(--dark-charcoal);
  color: #ffffff;
  font-family: monospace;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 4rem);
  max-width: 900px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--washed-linen);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--terracotta);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background-color: var(--terracotta);
  color: #ffffff;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-cookie-essential {
  background-color: transparent;
  color: #ffffff;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-cookie-accept:hover {
  background-color: var(--terracotta-hover);
}

.btn-cookie-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Toast / Notification Modal */
.toast-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--soft-black);
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(150%);
  transition: transform 0.4s ease;
  border: 1px solid var(--terracotta);
}

.toast-notification.active {
  transform: translateX(0);
}

/* Footer */
.footer {
  background-color: var(--soft-black);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  color: #94a3b8;
}

.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Dynamic Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Queries */
@media (max-width: 992px) {
  .hero-grid, .spotlight-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--warm-chalk);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: flex;
  }
  .btn-header {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 2rem;
  }
}
