/* FUDI Mockup - Stile shadcn-like minimal */

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 3.9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --accent: 0 0% 96.1%;
  --accent-foreground: 0 0% 9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
  --radius: 0;

  /* FUDI Brand Colors (per accenti) */
  --fudi-green: 142 43% 25%;
  --fudi-yellow: 48 96% 53%;
  --fudi-orange: 24 95% 53%;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.text-muted {
  color: hsl(var(--muted-foreground));
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
  width: 100%;
}

.header .container {
  max-width: 100%;
  padding: 0 2rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-box {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.25rem 0.5rem;
  font-weight: 800;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: hsl(var(--muted-foreground));
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(var(--foreground));
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--accent));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  background: hsl(var(--accent));
}

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

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: hsl(var(--secondary));
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.card:hover {
  border-color: hsl(var(--foreground) / 0.2);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: hsl(var(--muted));
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
}

.section-alt {
  background: hsl(var(--secondary));
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.feature-item:hover {
  background: hsl(var(--secondary));
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.badge-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 2rem;
  width: 100%;
}

.footer .container {
  max-width: 100%;
  padding: 0 2rem;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Specific Components */

/* Store Finder */
.store-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all 0.2s;
}

.store-card:hover {
  background: hsl(var(--secondary));
}

.store-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-info h4 {
  margin-bottom: 0.25rem;
}

.store-info p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.store-status {
  font-size: 0.75rem;
  font-weight: 500;
}

.store-status.open {
  color: hsl(142 76% 36%);
}

.store-status.closed {
  color: hsl(var(--destructive));
}

/* Volantino Preview */
.volantino-preview {
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* Divider */
.divider {
  height: 1px;
  background: hsl(var(--border));
  margin: 2rem 0;
}

/* Payoff styling */
.payoff {
  font-size: 1.5rem;
  font-weight: 700;
}

.payoff .comma-1 {
  color: hsl(var(--fudi-orange));
}

.payoff .comma-2 {
  color: hsl(var(--fudi-yellow));
}

.payoff .dot {
  color: hsl(var(--fudi-green));
}

/* Icon placeholder */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* Image placeholder */
.img-placeholder {
  background: hsl(var(--muted));
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Accordion (for FAQ) */
.accordion {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid hsl(var(--border));
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: hsl(var(--secondary));
}

.accordion-content {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: none;
}

.accordion-item.open .accordion-content {
  display: block;
}

/* Map placeholder */
.map-placeholder {
  background: hsl(var(--muted));
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Partner logos */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  background: hsl(var(--muted));
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

/* Department icons grid */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.dept-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.dept-card:hover {
  background: hsl(var(--secondary));
  border-color: hsl(var(--foreground) / 0.2);
}

.dept-icon {
  width: 4rem;
  height: 4rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.dept-card h4 {
  margin-bottom: 0.25rem;
}

.dept-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   FULLSCREEN MENU
   ======================================== */

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsl(var(--background));
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu.open {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid hsl(var(--border));
}

.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
  color: hsl(var(--foreground));
}

.menu-close-btn:hover {
  opacity: 0.7;
}

.fullscreen-menu-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .fullscreen-menu-content {
    grid-template-columns: 1fr;
  }
}

/* Colonna 1: Menu principale */
.menu-main {
  padding: 2rem;
  border-right: 1px solid hsl(var(--border));
}

.menu-main-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-main-list li a,
.menu-main-list li button {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color 0.2s;
}

.menu-main-list li a:hover,
.menu-main-list li button:hover {
  color: hsl(var(--muted-foreground));
}

.menu-main-list li.active > a,
.menu-main-list li.active > button {
  font-weight: 600;
}

.menu-main-list .has-submenu::after {
  content: '>';
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Colonna 2: Submenu */
.menu-submenu {
  padding: 2rem;
  border-right: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  display: none;
}

.menu-submenu.active {
  display: block;
}

.menu-submenu-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.menu-submenu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-submenu-list a {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  padding: 0.375rem 0;
  display: block;
  transition: color 0.2s;
}

.menu-submenu-list a:hover {
  color: hsl(var(--muted-foreground));
}

/* Colonna 3: Menu secondario */
.menu-secondary {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .menu-main,
  .menu-submenu,
  .menu-secondary {
    border-right: none;
    border-bottom: 1px solid hsl(var(--border));
  }
  .menu-submenu {
    display: none !important;
  }
}

.menu-secondary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-secondary-list a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.menu-secondary-list a:hover {
  color: hsl(var(--foreground));
}

.menu-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-social a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.menu-social a:hover {
  color: hsl(var(--foreground));
}

.menu-footer {
  margin-top: auto;
  padding-top: 2rem;
}

.menu-footer p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hamburger sempre visibile */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: hsl(var(--foreground));
  transition: all 0.3s;
}

/* Hide default nav links on all screens, show hamburger */
@media (min-width: 769px) {
  .nav-links {
    display: none;
  }
  .nav .btn-primary {
    display: none;
  }
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

/* Tablet breakpoint */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.25rem; }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 4rem 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  h4 { font-size: 1rem; }

  /* Container */
  .container {
    padding: 0 1rem;
  }

  /* Header */
  .header .container {
    padding: 0 1rem;
  }

  .header-inner {
    height: 3.5rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-box {
    padding: 0.2rem 0.4rem;
  }

  .logo-sub {
    font-size: 0.625rem;
  }

  /* Hero */
  .hero {
    padding: 3rem 0;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .payoff {
    font-size: 1.25rem;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    font-size: 0.875rem;
  }

  /* Buttons */
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Cards */
  .card-body {
    padding: 1.25rem;
  }

  /* Two column layout */
  .two-col {
    gap: 2rem;
  }

  /* Stats */
  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Feature items */
  .feature-item {
    padding: 0.75rem;
  }

  .feature-icon {
    width: 2rem;
    height: 2rem;
  }

  .feature-icon svg {
    width: 16px;
    height: 16px;
  }

  /* Department grid */
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .dept-card {
    padding: 1.25rem 0.75rem;
  }

  .dept-icon {
    width: 3rem;
    height: 3rem;
  }

  .dept-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Partner grid */
  .partner-grid {
    gap: 1rem;
  }

  .partner-logo {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand p {
    font-size: 0.8125rem;
  }

  .footer-title {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    font-size: 0.8125rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-bottom > div {
    justify-content: center;
  }

  .footer-bottom a {
    font-size: 0.75rem;
  }

  /* Fullscreen Menu Mobile */
  .fullscreen-menu-header {
    padding: 0.75rem 1rem;
  }

  .fullscreen-menu-content {
    display: flex;
    flex-direction: column;
  }

  .menu-main {
    padding: 1.5rem 1rem;
    border-right: none;
    border-bottom: 1px solid hsl(var(--border));
  }

  .menu-main-list {
    gap: 0.25rem;
  }

  .menu-main-list li a,
  .menu-main-list li button {
    font-size: 0.9375rem;
    padding: 0.625rem 0;
  }

  .menu-secondary {
    padding: 1.5rem 1rem;
  }

  .menu-secondary-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .menu-secondary-list a {
    font-size: 0.8125rem;
  }

  .menu-social {
    margin-top: 1rem;
  }

  .menu-footer {
    padding-top: 1.5rem;
  }

  .menu-footer p {
    font-size: 0.6875rem;
  }

  /* Volantino preview */
  .volantino-preview {
    min-height: 250px;
    padding: 1.5rem;
  }

  /* Map */
  .map-placeholder,
  #home-map {
    height: 300px;
  }

  /* Accordion */
  .accordion-header {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .accordion-content {
    padding: 0 1rem 0.875rem;
    font-size: 0.8125rem;
  }

  /* Store cards */
  .store-card {
    padding: 0.875rem;
  }

  .store-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }

  .hero {
    padding: 2.5rem 0;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

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

  .dept-card {
    padding: 1rem 0.5rem;
  }

  .dept-card h4 {
    font-size: 0.875rem;
  }

  .dept-card p {
    font-size: 0.6875rem;
  }

  .stats {
    gap: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .feature-item {
    padding: 0.5rem;
    gap: 0.75rem;
  }

  .card-body {
    padding: 1rem;
  }

  .btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  /* Partner page cards */
  .grid.grid-2 {
    gap: 1rem;
  }
}
