/** Shopify CDN: Minification failed

Line 224:16 Expected identifier but found whitespace
Line 224:17 Unexpected "3px"
Line 230:2 Unexpected "0%"
Line 231:2 Unexpected "100%"
Line 3250:0 Expected "}" to go with "{"

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

/* === MOBILE HEADER ELEMENTS === */

/* Mobile Cart Icon */
.mobile-cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  display: block;
}

.mobile-cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.mobile-cart-icon a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.cart-icon {
  width: 32px;
  height: 32px;
  fill: white;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--christmas-red);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 20px;
  text-align: center;
  line-height: 1.2;
}

.burger-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.burger-menu:hover {
  background: white;
  transform: scale(1.05);
}

.burger-menu span {
  width: 20px;
  height: 2px;
  background: var(--christmas-red);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Mobile content padding to clear fixed icons */
@media (max-width: 1023px) {
  body {
    padding-top: 80px; /* Clear space for burger menu and cart icon */
  }
  
  .mobile-product-original {
    padding-top: 20px; /* Additional spacing for product pages */
  }
  
  /* PRIORITY FIX: Evey button must be clickable on mobile */
  button[data-evey-trigger="scheduler"] {
    position: relative !important;
    z-index: 995 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
  }
  
  .evey-scheduler-container {
    position: relative !important;
    z-index: 994 !important;
    pointer-events: auto !important;
  }
  
  /* Style the Evey button without Shopify cart classes */
  .evey-scheduler-btn {
    background: #d32f2f !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
  }
  
  .evey-scheduler-btn:hover {
    background: #b71c1c !important;
    transform: translateY(-1px) !important;
  }
}

@media (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
  
  /* Keep cart icon visible on desktop too */
  .mobile-cart-icon {
    display: block;
  }
  
  body {
    padding-top: 0; /* No padding needed on desktop */
  }
}

/* CUSTOM FONTS */
/* Using only Providence Sans - Homemade Apple removed */

@font-face {
  font-family: 'Providence Sans';
  src: url('ProvidenceSansRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background: #0f2f1f;
  color: white;
  font-family: 'Providence Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  font-size: 1.125rem; /* 18px minimum - base body size */
  /* Allow natural scrolling - no height restrictions */
  
  /* Grain texture overlay */
  position: relative;
}

/* GLOBAL GRAIN TEXTURE */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 11;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='globalGrain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='1'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23globalGrain)'/%3E%3C/svg%3E");
}



/* Reset main container */
main, #MainContent {
  position: static;
  margin: 0;
  padding: 0;
}

/* VIDEO - Behind everything */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  border-radius: 3px;
  pointer-events: none;
}

/* ANIMATED BORDER - Trattini che scorrono */
@keyframes dashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -48; }
}

/* CTA buttons with animated borders in biglietti page */
.sketch-card.seed-6 .sketch-border rect[stroke-dasharray="16 10 8 14"] {
  animation: dashFlow 2s linear infinite;
}

/* NAVIGATION CONTAINER - Natural flow */
.navigation-container {
  position: relative;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

/* Homepage state - exactly 100vh, no scroll */
.navigation-container.bottom {
  height: 100vh;
  overflow: hidden;
}

/* Tab open state - allow natural scroll */
.navigation-container.top {
  min-height: 100vh;
  background: #0f2f1f;
}

/* MENU (sempre in cima al container) */
.mobile-menu {
  position: relative;
  z-index: 12;
}

.menu-tabs {
  background: transparent;
  padding: 15px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.menu-tabs::-webkit-scrollbar {
  display: none; /* Webkit browsers */
}


/* Menu con sfondo trasparente per uniformità */
.navigation-container.top .menu-tabs {
  background: rgba(255, 255, 255, 0.05) !important;
  position: relative;
}


.tab {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem; /* 16px equivalent in REM */
  font-family: 'Providence Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.tab.active {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: black;
  border-color: white;
}

/* CONTENT - No internal scroll, natural page flow */
/*.content {
  display: block;
  color: white;
  padding: 20px;
  background: none;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}*/

.content.show {
  background: transparent;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* MIDDLE POSITION */
/* Middle content rimosso - solo top position */

/* Animazione per quando il content appare/scompare 
.content {
  transform: translateY(50px);
}*/

.content.show {
  transform: translateY(0);
}

/* TOP POSITION - Content flows naturally */
.navigation-container.top .content.show {
  background: #0f2f1f;
  padding: 10px 20px 20px 20px;
  box-sizing: border-box;
  min-height: 70vh;
  position: relative;
}


/* Fix per primo elemento nel content */
.navigation-container.top .tab-content h2:first-child {
  margin-top: 0;
}

.tab-content {
  display: none;
  font-size: 1.125rem; /* 18px minimum */
  line-height: 1.5;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

/* Scroll hint rimosso - menu solo aperto/chiuso */

/* EVENTI E LUCINE PAGES */
.special-events-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.special-event-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0;
}

.special-event-card img {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.special-event-info h3 {
  color: var(--christmas-red);
  margin-bottom: 0.5rem;
  font-family: 'Providence Sans', sans-serif;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}

/* Removed hover - events are not clickable */

.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.event-date {
  color: var(--christmas-red);
  font-weight: 600;
  font-size: 1em;
}

.event-name {
  color: white;
  font-size: 1.125rem; /* 18px minimum */
}

.image-container {
  text-align: center;
  margin: 2rem 0;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* CONCERT LIST per layout organizzato */
.concerts-list {
  margin: 2rem 0;
}

/* REMOVED: Dead concert-* CSS classes - not used in any template */

@keyframes subtlePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* =============================================
   DESIGN SYSTEM - LUCINE DI NATALE
   Minimale | Natalizio | Famiglie
   ============================================= */

/* NEW UTILITY CLASSES - REM ONLY */
.map-container {
  text-align: center;
  margin: 2rem 0;
}

.map-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
  border: 2px solid var(--christmas-gold);
}

.interface-caption {
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
  font-size: 0.875rem; /* 14px - interface exception */
}

.ticket-title {
  color: var(--christmas-red);
  margin-bottom: 1rem;
}

.ticket-subtitle {
  color: var(--christmas-green);
  font-weight: 600;
  font-size: 1.125rem; /* 18px minimum */
  margin-bottom: 1.5rem;
}

.ticket-meta {
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  font-size: 1.125rem; /* 18px minimum instead of 14px */
}

.ticket-divider {
  margin: 1rem 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
}

.formatted-content .sketch-card .cta-primary {
  font-size: 1.125rem; /* 18px minimum */
  padding: 1rem 2rem;
  background: var(--christmas-red);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  display: inline-block;
  font-weight: 600;
}

.christmas-red {
  color: var(--christmas-red);
}

.faq-intro {
  font-size: 1.125rem; /* 18px minimum instead of 19px */
}

/* SEMANTIC COLOR GUIDELINES:
 * Red (var(--christmas-red)): Primary CTAs, urgent actions, important page titles
 * Green (var(--christmas-green)): All financial info/prices, success states, positive benefits, secondary positive actions
 * Gold (var(--christmas-gold)): Premium content, important highlights, decorative elements, special section labels
 * Removed .link-red class - using direct var(--christmas-red) inline styles for better consistency */

.text-center {
  text-align: center;
}

.sketch-border-red {
  color: var(--christmas-red);
}

/* GALLERY SYSTEM - FIXED */
.gallery-container {
  margin: 2rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--christmas-red);
  border: none;
  width: 3.125rem; /* 50px */
  height: 3.125rem; /* 50px */
  border-radius: 50%;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-nav:hover {
  background: var(--christmas-red);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-left {
  left: -1.563rem; /* -25px */
}

.gallery-nav-right {
  right: -1.563rem; /* -25px */
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  margin: 0 1.875rem; /* 30px */
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 18.75rem; /* 300px */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem; /* 12px */
  overflow: hidden;
}

.gallery-card .gallery-image {
  width: 100% !important;
  height: 12.5rem !important; /* 200px */
  object-fit: cover !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin: 0 !important;
  max-width: none !important;
}

.gallery-content {
  padding: 1rem;
}

.gallery-content h4 {
  color: var(--christmas-red);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem; /* 18px minimum */
}

.gallery-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem; /* 18px minimum instead of 14px */
  line-height: 1.4;
  margin: 0;
}

.gallery-content strong {
  color: var(--christmas-gold);
  font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .gallery-card {
    flex: 0 0 15.625rem; /* 250px */
  }
  
  .gallery-image {
    height: 9.375rem; /* 150px */
  }
  
  .gallery-content {
    padding: 0.8rem;
  }
  
  .gallery-content h4 {
    font-size: 1.125rem; /* Keep 18px minimum */
  }
  
  .gallery-content p {
    font-size: 1.125rem; /* Keep 18px minimum - NO MORE 14px */
  }
}

@media (max-width: 1023px) {
  .gallery-nav {
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    font-size: 1.25rem; /* 20px */
  }
  
  .gallery-nav-left {
    left: -1.25rem; /* -20px */
  }
  
  .gallery-nav-right {
    right: -1.25rem; /* -20px */
  }
  
  .gallery-scroll {
    margin: 0 1.563rem; /* 25px */
  }
}

/* TYPOGRAPHY SYSTEM - MIXED FONTS */
h1, h2 {
  font-family: 'Providence Sans', sans-serif !important;
  font-weight: normal !important;
  margin: 0 0 1.5rem 0 !important;
  color: var(--text-white);
  letter-spacing: 0.02em !important;
  border: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  padding-bottom: 0 !important;
  text-transform: uppercase !important;
}

h3, h4, h5, h6 {
  font-family: 'Providence Sans', -apple-system, sans-serif !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 1.5rem 0 !important;
  line-height: 1.4 !important;
  color: white !important;
  border: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  padding-bottom: 0 !important;
}

h1 { 
  font-size: 3rem !important; 
  font-weight: normal !important; 
  margin-bottom: 2rem !important;
  color: var(--text-white);
  line-height: 1.2 !important;
}
h2 { 
  font-size: 2.5rem !important; 
  color: var(--text-white);
  font-weight: normal !important;
  margin: 3rem 0 1.5rem 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
h3 { 
  font-size: 2rem !important; 
  font-weight: normal !important;
  margin: 2rem 0 1rem 0 !important;
  color: var(--text-white);
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
h4 { 
  font-size: 1.5rem !important; 
  font-weight: normal !important;
  color: var(--text-white);
}

p {
  margin: 0 0 1.5rem 0;
  color: var(--text-white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Providence Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* CHRISTMAS COLOR PALETTE */
:root {
  --christmas-red: #dc2626;    /* rosso natalizio */
  --christmas-green: #059669;  /* verde abete */
  --text-white: #ffffff;       /* bianco puro */
  --text-gray: #e5e7eb;        /* grigio chiaro */
  
  /* Christmas gold - matching pagina-base-funzionante design */
  --christmas-gold: #f59e0b;
}

/* CONTENT COMPONENTS */
.content-section {
  padding: 2rem 0;
}

.content-section:last-child {
  border-bottom: none;
}

.highlight-text {
  color: var(--christmas-green);
  font-weight: 600;
}

.family-cta {
  display: inline-block;
  background: linear-gradient(45deg, var(--christmas-gold), #f4d03f);
  color: #000;
  padding: 0.875rem 2.25rem;
  border-radius: 28px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
  margin: 1rem 0;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}

.family-cta:hover {
  color: var(--christmas-gold);
  transition: color 0.3s ease;
}

/* CLEAN, MINIMAL DECORATIONS */
.highlight {
  color: var(--christmas-gold);
  font-weight: normal;
}

.formatted-content strong {
  color: var(--text-white);
  font-weight: 600;
}

/* LIST STYLING */
ul, ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin: 0.5rem 0;
  color: var(--text-white);
}

/* Custom arrow bullets for lists */
ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--christmas-red);
  font-weight: bold;
  font-size: 1.1em;
}

/* CLEAN SECTIONS */
.location-section {
  margin: 2rem 0;
  padding-bottom: 1rem;
}

.location-section:last-child {
  margin-bottom: 0;
}

.location-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* SKETCH CARD - Christmas theme (no background) */
.sketch-card-christmas {
  --sketch-ink: var(--christmas-red);    /* bordo rosso */
  --card-bg: transparent;                /* sfondo trasparente */
  --card-text: var(--text-white);        /* testo bianco */
}

.sketch-card {
  position: relative;
  background: transparent;
  color: var(--card-text);
  border-radius: 16px;
  padding: 2.5rem 2rem; /* More consistent padding all around */
  margin: 2.5rem 0; /* Increased spacing between cards */
}


.sketch-card.sketch {
  color: var(--sketch-ink);
}

.sketch-border {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  pointer-events: none;
}

.sketch-card h4 {
  font-family: 'Providence Sans', -apple-system, sans-serif !important;
  font-size: 1.35rem !important;
  margin: 0 0 0.5rem 0 !important;
  color: var(--card-text) !important;
  font-weight: 600 !important;
}

.sketch-card .lead {
  color: var(--christmas-green);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.25rem;
}

.sketch-card .meta {
  opacity: 0.85;
  margin: 0 0 0.75rem;
}

.sketch-card .cta {
  color: var(--christmas-red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.sketch-card .cta:hover {
  color: var(--christmas-gold);
  text-decoration-color: var(--christmas-gold);
}

/* Variazioni seed per bordi diversi - RESPONSIVE PATTERNS */
.seed-1 .sketch-border rect { stroke-dashoffset: 2; }
.seed-2 .sketch-border rect { stroke-dashoffset: 6; }
.seed-3 .sketch-border rect { stroke-dasharray: 12 7 5 11 9 8; }
.seed-4 .sketch-border rect { stroke-dashoffset: 4; stroke-dasharray: 15 9 7 13; }
.seed-5 .sketch-border rect { stroke-dashoffset: 8; stroke-dasharray: 13 6 8 10 11 7; }

/* DESKTOP: Optimized dash patterns - subtle and clean */
@media (min-width: 1024px) {
  .seed-1 .sketch-border rect { stroke-dasharray: 14 8 6 10; }
  .seed-2 .sketch-border rect { stroke-dasharray: 12 6 5 9; }
  .seed-3 .sketch-border rect { stroke-dasharray: 16 9 7 13 12 8; }
  .seed-4 .sketch-border rect { stroke-dasharray: 18 10 8 12; }
  .seed-5 .sketch-border rect { stroke-dasharray: 15 8 10 12 14 9; }
  .seed-6 .sketch-border rect { stroke-dasharray: 20 12 10 16 !important; }
}

/* Animated border for navetta card (seed-6) */
.sketch-card.seed-6 .sketch-border rect[stroke-dasharray="16 10 8 14"] {
  animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -48; }
}

/* Fix border radius per forme rettangolari */
.sketch-border rect {
  rx: 8 !important; /* Corner radius fisso invece di rx="12" percentuale */
  ry: 8 !important;
}

/* FOOTER SNAP - Hidden by default, appears as overlay */
.snap-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 47, 31, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* Footer content with proper z-index layering */
.footer-container {
  position: relative;
  z-index: 2;
}

.footer-legal {
  position: relative;
  z-index: 2;
}

.footer-comune {
  position: relative;
  z-index: 2;
}

/* Footer visible state - slides up from bottom */
.snap-footer.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Footer expanded state - fullscreen overlay */
.snap-footer.expanded {
  top: 0;
  height: 100vh;
  padding: 4rem 0 2rem 0;
  overflow-y: auto;
}

/* Block body scroll when footer is expanded */
body.footer-expanded {
  overflow: hidden;
}

@media (max-width: 768px) {
  .snap-footer {
    padding: 2rem 0;
  }
}

/* Footer close button */
.footer-close-btn {
  position: absolute;
  top: 3rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.footer-close-btn:hover {
  background: var(--christmas-red);
  transform: scale(1.1);
}

@media (min-width: 769px) {
  .footer-close-btn {
    display: none;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Desktop: layout più compatto */
@media (min-width: 769px) {
  .footer-column:nth-child(3) { 
    text-align: right; 
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-column {
    padding: 1rem 0;
  }
  
  /* Social visibili su mobile */
  .footer-column:nth-child(2) {
    display: block;
  }
  
  /* Social centrati */
  .footer-social {
    justify-content: center;
  }
  
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column h4 {
  color: var(--christmas-red);
  font-family: 'Providence Sans', sans-serif !important;
  font-size: 0.85em;
  font-weight: normal !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Logo rimosso dalla colonna - ora in fascia bianca dedicata */

.company-info {
  font-size: 0.85em;
  line-height: 1.6;
  opacity: 0.8;
}

.company-info h4 {
  color: white;
  font-size: 1em;
  margin-bottom: 0.5rem;
  font-family: 'Providence Sans', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-info p {
  margin: 0.25rem 0;
}

.company-info a {
  color: var(--christmas-green);
  text-decoration: none;
}

.company-info a:hover {
  text-decoration: underline;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Legal links in fondo */
.footer-legal {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  font-size: 0.8em;
  opacity: 0.7;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-family: 'Providence Sans', sans-serif;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--christmas-green);
}

.footer-legal .separator {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Company name styling */
.footer-legal .company-name {
  font-family: 'Providence Sans', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}

/* Contacts section in legal */
.footer-legal .contacts {
  font-family: 'Providence Sans', sans-serif;
}

/* Fascia bianca con logo Comune */
.footer-comune {
  background: white;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

.footer-comune img {
  height: 80px;
  width: auto;
  max-width: 90%;
}

@media (max-width: 768px) {
  .footer-comune img {
    height: 100px;
  }
}

/* FOOTER TRIGGER BAR - Appears only at page bottom */
.footer-trigger {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.footer-trigger.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.footer-trigger:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: var(--christmas-red);
}

.trigger-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Providence Sans', sans-serif;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-trigger:hover .trigger-content {
  color: var(--christmas-red);
}

.trigger-icon {
  transition: transform 0.3s ease;
}

.footer-trigger:hover .trigger-icon {
  transform: translateY(-2px);
}

/* NAVETTA SECTION - GIF with title layout */
.navetta-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* REMOVED: Generic navetta-icon rule causing conflicts */

.navetta-title h4 {
  margin: 0 !important;
  flex: 1;
}

/* Navetta inside sketch card - centered layout */
.sketch-card .navetta-title {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* General rule for images in sketch cards (excluding navetta) */
.sketch-card img:not(.navetta-icon) {
  max-width: 80px;
  height: auto;
}

.sketch-card .navetta-icon {
  width: 120px; /* INGRANDITO - era 60px */
  height: 120px;
  object-fit: contain;
  mix-blend-mode: screen;
  margin: 0 auto;
  display: block;
}

.sketch-card .navetta-title h4 {
  font-size: 1.5rem !important;
  text-align: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-family: 'Providence Sans', sans-serif;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--christmas-green);
}

/* Ensure all links have consistent underlines */
.company-info a {
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.faq-index a {
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--christmas-red);
  border-color: var(--christmas-red);
  transform: scale(1.1);
}

/* BACK TO TOP BUTTON */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--christmas-red);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.125rem; /* 18px minimum */
  font-family: 'Providence Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--christmas-green);
  transform: scale(1.1);
}

/* FAQ ACCORDION - Clean & Simple */
.faq-index {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.faq-index h4 {
  color: var(--christmas-gold) !important;
  margin-bottom: 0.5rem !important;
  font-size: 1rem !important;
}

.faq-index ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-index li {
  margin: 0.25rem 0;
}

.faq-index a {
  color: var(--text-white);
  text-decoration: none;
}

.faq-index a:hover {
  color: var(--christmas-gold);
}

.faq-accordion {
  margin: 2rem 0;
}

/* Removed duplicate - correct style is below */

/* REMOVED - Consolidated in final FAQ section below */

.faq-answer {
  padding: 0 0 1rem 0;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* FORMATTED CONTENT FROM SHOPIFY PAGES */
.formatted-content {
  color: var(--text-white);
}

.formatted-content h1 { 
  font-size: 3rem; 
  color: var(--text-white);
  margin-bottom: 2rem;
}
.formatted-content h2 { 
  font-size: 2.5rem; 
  color: var(--text-white);
  margin: 3rem 0 1.5rem 0;
}
.formatted-content h3 { 
  font-size: 2rem; 
  color: var(--text-white);
  margin: 2rem 0 1rem 0;
}
.formatted-content h4 { 
  font-size: 1.5rem; 
  color: var(--text-white);
}

.formatted-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-white);
  font-family: 'Providence Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.formatted-content ul,
.formatted-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.formatted-content li {
  margin: 0.75rem 0;
  color: var(--soft-white);
  line-height: 1.7;
}

.formatted-content li::marker {
  color: var(--christmas-gold);
}

.formatted-content strong,
.formatted-content b {
  color: var(--christmas-gold);
  font-weight: 600;
}

.formatted-content em,
.formatted-content i {
  color: var(--christmas-cream);
  font-style: italic;
}

.formatted-content blockquote {
  border-left: 3px solid var(--christmas-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--warm-white);
}

.formatted-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 1.5rem 0;
}

/* Esclusioni specifiche per immagini eventi - ALTA SPECIFICITÀ */
.formatted-content .event-item .event-thumb,
.formatted-content .events-list-standard .event-item .event-thumb,
.formatted-content .event-item img.event-thumb {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  margin: 0 !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.formatted-content .events-featured-grid .featured-image,
.formatted-content .featured-event-card .featured-image {
  max-width: 100% !important;
  width: 100% !important;
  height: 200px !important;
  margin: 0 !important;
  border-radius: 12px !important;
}

.formatted-content a {
  color: var(--christmas-red);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.formatted-content a:hover {
  color: var(--christmas-gold);
  text-decoration: underline;
}

.formatted-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
  margin: 2.5rem 0;
}

.formatted-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.formatted-content th,
.formatted-content td {
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: left;
}

.formatted-content th {
  background: rgba(212, 175, 55, 0.1);
  color: var(--christmas-gold);
  font-weight: 600;
}

.formatted-content tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* SPECIAL SECTIONS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-box {
  background: #1a1a1a;
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
}

.info-box h4 {
  color: var(--christmas-gold);
  margin-bottom: 0.5rem;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(45deg, var(--christmas-gold), #f4d03f);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0.5rem;
}

/* QUOTE CARD - Uses sketch-card style with gold accent */
.sketch-quote-card {
  position: relative;
  background: transparent;
  color: var(--text-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  min-height: 100px;
}

/* Quote card specific seed variation */
.sketch-quote-card.seed-quote {
  --sketch-ink: var(--christmas-gold); /* Gold border for quotes */
}

@media (min-width: 1024px) {
  .sketch-quote-card {
    padding: 3rem 3.5rem;
    margin: 3rem auto;
    max-width: 800px;
  }
}

/* Use same sketch-border system as regular cards */
.sketch-quote-card .sketch-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Quote-specific border pattern - matching sketch-card specs */
.sketch-quote-card.seed-quote .sketch-border rect {
  stroke: var(--christmas-gold) !important;
  stroke-width: 3.2 !important; /* Same as regular sketch-cards */
  stroke-dasharray: 14 8 6 12 10 9 !important; /* Same pattern as regular cards */
  animation: dashFlowQuote 20s linear infinite !important; /* Animated border */
}

@keyframes dashFlowQuote {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -59; /* Sum of dasharray: 14+8+6+12+10+9 */
  }
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* No quote marks - cleaner look */

.quote-text {
  font-size: 1.125rem !important; /* Same as body text */
  font-style: italic;
  color: var(--text-white);
  margin: 0 0 1rem 0;
  line-height: 1.7; /* Same as body */
  font-family: 'Providence Sans', sans-serif;
  position: relative;
  z-index: 2;
  padding: 0;
}

@media (min-width: 1024px) {
  .quote-text {
    font-size: 1.25rem !important; /* Slightly larger on desktop */
    padding: 0;
  }
}

.quote-author {
  font-size: 1rem !important;
  color: var(--christmas-gold);
  font-weight: 600;
  font-family: 'Providence Sans', sans-serif;
  text-align: center; /* Centered alignment */
  opacity: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
  .quote-author {
    font-size: 1.125rem !important;
  }
}

/* FONT SIZE IMPROVEMENTS - Ensure minimums */
body {
  font-size: 1.125rem; /* 18px minimum - base body size */
}

p {
  font-size: 1.2rem; /* Increased from 1.125rem */
}

/* Ensure Providence Sans never goes below 15px */
h5 {
  font-size: 1.25rem !important; /* Minimum 20px at base 16px - increased */
}

h6 {
  font-size: 1.125rem !important; /* Minimum 18px at base 16px - increased */
}

/* Small text elements minimum sizes */
.event-date {
  font-size: 1.1em; /* Increased from 1em */
}

.event-name {
  font-size: 1em; /* Increased from 0.9em */
}

/* REMOVED: Duplicate concert class overrides */

.footer-column h4 {
  font-size: 1rem; /* Increased from 0.85em */
}

.company-info {
  font-size: 1rem; /* Increased from 0.85em */
}

.footer-legal {
  font-size: 0.95em; /* Increased from 0.8em */
}

.footer-link {
  font-size: 1rem; /* Increased from 0.95em */
}

.trigger-content {
  font-size: 1rem; /* Increased from 0.9em */
}

.faq-index h4 {
  font-size: 1.125rem !important; /* Increased from 1rem */
}

/* REMOVED - Consolidated in final FAQ section below */

/* Tab button font size */
.tab {
  font-size: 1.125rem; /* 18px minimum - increased from 17px */
}

.tab-content {
  font-size: 1.1875rem; /* 19px equivalent in REM */
}

/* REMOVED - Consolidated in final FAQ section below */
/* REMOVED */

.faq-answer {
  padding: 0 0 1.5rem 0;
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeInAnswer 0.3s ease-in-out;
}

.faq-answer p {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
  color: rgba(255,255,255,0.9) !important;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* EVENT COMPONENTS FONT SIZE IMPROVEMENTS */
.event-date {
  font-size: 1rem !important; /* Minimum size for Providence Sans */
}

.featured-content .event-date {
  font-size: 1.1rem !important;
}

.event-info h4 {
  font-size: 1.25rem !important; /* Increased from smaller sizes */
}

.event-info p {
  font-size: 1rem !important; /* Minimum readable size */
}

.event-category {
  font-size: 1rem !important; /* Never below 15px equivalent */
}

.event-meta {
  font-size: 1rem !important; /* Consistent with other elements */
}

/* PARKING ICONS STYLING */
.parking-icons {
  display: flex;
  gap: 1rem;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.parking-icons .parking-icon {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
  margin: 0 0 0.5rem 0 !important;
  filter: brightness(1.1) contrast(1.1);
  border-radius: 0;
  background: transparent;
}

.parking-icon:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(1.3) contrast(1.2);
}

/* Responsive parking icons */
@media (max-width: 480px) {
  .parking-icons {
    gap: 0.75rem;
    margin: 0;
  }
  
  .parking-icons .parking-icon {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }
}

/* Nessuno spazio extra necessario con absolute positioning */

/* ============ FAQ DESIGN SYSTEM ============ */

/* FAQ Category Navigation */
.faq-navigation {
  margin: 2rem 0;
}

.faq-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-nav-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0; /* No indent */
}

/* Disable general arrow rule for FAQ navigation */
.faq-nav-list li::before {
  display: none !important;
}

.faq-nav-link {
  display: inline-block;
  color: var(--text-white);
  text-decoration: none !important;
  font-size: 1.125rem !important; /* 18px - bigger */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.faq-nav-link:hover {
  color: var(--christmas-green) !important;
}

/* FAQ Accordion */
.faq-accordion {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(15, 47, 31, 0.5);
}

/* FAQ Question Button - CONSOLIDATED & CLEAN */
.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-white);
  font-family: 'Providence Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.188rem; /* 19px equivalent */
  font-weight: 600;
  font-stretch: normal;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1.25rem 6rem 1.25rem 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: none;
  position: relative;
  line-height: 1.4;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  font-weight: 300;
  color: var(--christmas-red);
  transition: none;
  line-height: 1;
  width: 2rem;
  text-align: center;
  font-family: 'Providence Sans', sans-serif;
  letter-spacing: 0.1em;
}

/* FAQ Question Active State - Keep white, don't change color */
.faq-question.active {
  color: var(--text-white);
}

/* Simple hover - Keep white, don't change color */
.faq-question:hover {
  color: var(--text-white);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
  max-height: 1000px;
  padding: 1.5rem;
}

/* FAQ Active State - question button when answer is open */
.faq-question.active:after {
  content: 'x';
  transform: translateY(-50%) rotate(0deg);
  font-size: 2.2em;
  font-weight: 400;
  font-family: 'Providence Sans', sans-serif;
  letter-spacing: 0;
}

.faq-answer p {
  margin-bottom: 1rem;
  color: var(--text-white);
  font-size: 1.188rem; /* 19px equivalent */
  line-height: 1.6;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* FAQ Highlight text */
.faq-highlight {
  color: var(--christmas-red) !important;
  font-weight: 600;
}

.faq-highlight-green {
  color: var(--christmas-green) !important;
  font-weight: 600;
}

/* FAQ Section Headers */
.faq-section-header {
  color: var(--text-white);
  margin: 3rem 0 2rem 0;
  font-size: 2rem;
}

/* Mobile FAQ Optimizations */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.125rem; /* 18px for mobile */
    padding: 1rem 5rem 1rem 1.25rem;
    line-height: 1.3;
  }
  
  .faq-question:after {
    right: 1.25rem;
    font-size: 1.8em; /* Increased from 1.3em for better mobile visibility */
  }
  
  .faq-answer.active {
    padding: 1.25rem;
  }
  
  .faq-nav-link {
    font-size: 1.125rem; /* 18px minimum */
  }
}

/* MENU STYLING */
.menu-category {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

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

/* Removed hover - menu items are not clickable */

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-info h4 {
  margin: 0 0 0.5rem 0 !important;
  color: white !important;
  font-size: 1.125rem !important;
}

.menu-item-info .meta {
  margin: 0;
  font-size: 1.125rem; /* 18px minimum */
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.menu-item-row h4 {
  font-size: 1.125rem !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.menu-item-row p {
  font-size: 1.125rem !important;
  margin: 0 !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.2 !important;
}

.menu-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: #f59e0b;
}

.menu-price--special {
  color: #dc2626;
}

/* Special item styles */
.menu-item-row.featured .menu-item-info h4 {
  color: var(--christmas-green) !important;
}

.menu-item-row.featured .menu-price {
  color: var(--christmas-red);
}

@media (max-width: 768px) {
  .menu-item-row {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .menu-price {
    margin-left: 0;
    font-size: 1.4rem;
  }
  
  .menu-category {
    padding: 1rem;
  }
}

/* ================================================
   PAGINE SEPARATE - ATOMIC CSS COMPONENTS 
   ================================================ */

/* MENU SECTION CARD - Unified design system */
.menu-section-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* Clickable card styles */
a.menu-section-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

a.menu-section-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--christmas-gold);
  transform: translateX(4px);
  text-decoration: none !important;
}

/* Ensure text colors remain consistent in linked cards */
a.menu-section-card h3,
a.menu-section-card p {
  color: inherit;
  text-decoration: none !important;
}

/* Remove underline from all card hover states */
a.menu-section-card:hover h3,
a.menu-section-card:hover p {
  text-decoration: none !important;
}

/* Compensate h3 top margin and p bottom margin in cards */
.menu-section-card h3:first-child {
  margin-top: 0.5rem !important;
}
.menu-section-card p:last-child {
  margin-bottom: 0.5rem !important;
}

/* Control image sizes in menu cards (excluding specific icons and location images) */
.menu-section-card img:not(.parking-icon):not(.navetta-icon):not(.location-image) {
  max-width: 80px;
  height: auto;
}

/* Removed hover - menu sections are not clickable */

/* Removed obsolete .event-minor-item styles - now using .event-item */

/* EVENTS LAYOUT SYSTEM */
.events-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.featured-event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Removed hover - events are not clickable */

.featured-event-card .featured-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 !important;
}

.featured-event-card .featured-content {
  padding: 1.5rem;
}

.featured-event-card .event-date {
  background: var(--christmas-red);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 1.125rem; /* 18px minimum instead of 13.6px */
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-event-card h4 {
  margin: 0 0 1rem 0 !important;
  color: var(--text-white);
  font-size: 1.25rem !important;
}

.featured-event-card p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem !important;
  line-height: 1.6;
}

.events-list-standard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.event-item {
  display: flex !important;
  gap: 1rem !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
}

/* Removed hover - events are not clickable */

.event-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.event-item .event-info {
  flex: 1;
  min-width: 0;
}

.event-item .event-info .event-date {
  background: var(--christmas-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-item .event-info h4 {
  margin: 0 0 0.5rem 0 !important;
  color: var(--text-white);
  font-size: 1.125rem !important;
}

.event-item .event-info p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem !important;
  line-height: 1.5;
}

/* Regole event-minor-item rimosse - non usate nel contenuto Shopify */

/* Fix per eventi standard con event-item e event-thumb (contenuto Shopify) */
.formatted-content .event-item,
.formatted-content .events-list-standard .event-item {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 1rem !important;
  margin-bottom: 0.75rem;
}

.event-item .event-thumb,
.event-item img.event-thumb,
.events-list-standard .event-item .event-thumb,
.events-list-standard .event-item img.event-thumb {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.event-item .event-info {
  flex: 1;
}

.event-item p {
  margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .events-featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .formatted-content .event-item,
  .formatted-content .events-list-standard .event-item {
    flex-direction: row !important;
    gap: 1rem !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .event-item .event-thumb,
  .event-item img.event-thumb,
  .events-list-standard .event-item .event-thumb,
  .events-list-standard .event-item img.event-thumb {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    align-self: center;
  }
  
  /* Regole event-minor-item mobile rimosse - non usate */
}

/* Maintain compatibility with existing event styles */
.special-events-container,
.card-container,
.concerts-list {
  /* Keep existing styles */
}

/* UNIFIED CARD SYSTEM - Base class for all cards */
.standard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* FAQ Section Cards */
.faq-section-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* VEDI MAPPA LINKS - Add arrows to map links */
a.cta[href*="maps"]:after {
  content: " →";
}

/* ============================================
   DESKTOP RESPONSIVE LAYOUT
   ============================================ */

/* Desktop elements - Hidden on mobile */
.desktop-sidebar {
  display: none;
}

/* Desktop Layout for screens > 1024px */
@media (min-width: 1024px) {
  /* Hide mobile navigation on desktop */
  .mobile-menu {
    display: none;
  }
  
  /* Show desktop sidebar */
  .desktop-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: rgba(15, 47, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
  }
  
  /* Custom scrollbar for sidebar */
  .desktop-sidebar::-webkit-scrollbar {
    width: 6px;
  }
  
  .desktop-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }
  
  .desktop-sidebar::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
    transition: background 0.3s ease;
  }
  
  .desktop-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
  }
  
  /* Firefox scrollbar styling */
  .desktop-sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.4) rgba(255, 255, 255, 0.05);
  }
  
  /* Sidebar Header */
  .sidebar-header {
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
  }
  
  .logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .logo-link:hover {
    opacity: 0.8;
  }
  
  .sidebar-logo {
    max-width: 180px; /* Reduced by 20px from 200px */
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
  }
  
  .site-dates {
    color: var(--christmas-gold);
    font-size: 1.125rem; /* 18px minimum */
    font-weight: 600;
    margin: 0.5rem 0 0.2rem 0;
  }
  
  .site-closed {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem; /* Smaller text */
    margin: 0;
    font-style: italic;
    padding-bottom: 0.5rem;
  }
  
  /* Sidebar Menu Items */
  .sidebar-menu {
    flex: 1;
  }
  
  .nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 0.3rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1875rem; /* 19px - same as body text */
    font-family: 'Providence Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  }
  
  .nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
  }
  
  .nav-item.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--christmas-gold);
    color: var(--christmas-gold);
  }
  
  .nav-icon {
    font-size: 1.3rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
  }
  
  .nav-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 19px;
  }
  
  /* Sidebar Footer */
  .sidebar-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Social Title */
  .social-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Social Icons in Sidebar */
  .sidebar-social {
    display: flex;
    gap: 0.8rem;
    margin: 0 0 1.5rem 0;
    justify-content: center;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--christmas-gold);
    color: white;
    transform: translateY(-2px);
  }
  
  /* TEST if CSS loads in mobile footer */
  .snap-footer.show .test-mobile-css {
    background: red !important;
    color: yellow !important;
    font-size: 20px !important;
    padding: 10px !important;
  }
  
  /* Fix mobile footer social icons - same as working inline CSS */
  .footer-social-links a[aria-label="Facebook"],
  .footer-social-links a[aria-label="Instagram"],
  .footer-social-links a[aria-label="TikTok"],
  .footer-social-links a[aria-label="Spotify"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }
  
  .snap-footer.show .footer-social-links .social-icon:hover {
    background: var(--christmas-gold) !important;
    color: white !important;
    transform: translateY(-2px) !important;
  }
  
  /* Comune Logo */
  .comune-logo {
    max-width: 120px !important;
    height: auto !important;
    margin: 1.5rem auto 1rem auto;
    display: block;
    opacity: 1; /* Full opacity as requested */
  }
  
  /* Legal Links in Sidebar - Bigger */
  .sidebar-legal {
    text-align: center;
    font-size: 0.9rem; /* Increased from 0.75rem */
    margin: 1rem 0;
    font-weight: 500;
  }
  
  .sidebar-legal a {
    color: rgba(255, 255, 255, 0.7); /* More visible */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .sidebar-legal a:hover {
    color: var(--christmas-gold);
  }
  
  /* Company Info in Sidebar - Smaller */
  .company-info {
    text-align: center;
    margin: 1rem 0 0 0;
    padding-top: 1rem;
  }
  
  .company-info p {
    color: rgba(255, 255, 255, 0.4); /* Less prominent */
    font-size: 0.875rem; /* 14px - interface exception for legal info */
    margin: 0.2rem 0;
    line-height: 1.3;
  }
  
  .company-info strong {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem; /* Smaller */
  }
  
  /* Hide mobile footer trigger on desktop */
  #footer-trigger {
    display: none !important;
  }
  
  /* Main Content Area - Adjusted for sidebar */
  .navigation-container {
    padding-left: 280px;
  }
  
  .content-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: visible; /* Allow footer to extend */
  }
  
  .content {
    flex: 1;
    max-width: none;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll from footer */
  }
  
  /* Desktop Content Layout */
  .content.show {
    padding: 2rem 3rem;
    max-width: 800px; /* Reduced from 1200px for better readability */
    margin: 0 auto;
  }
  
  /* Limit ALL content widths including sections */
  .content.show .formatted-content,
  .content.show .content-section,
  .content.show .location-section,
  .content.show section {
    max-width: 800px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Limit image sizes on desktop */
  .formatted-content img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
    display: block;
    border-radius: 12px;
  }
  
  /* Esclusioni specifiche per immagini eventi su desktop - ALTA SPECIFICITÀ */
  .formatted-content .event-item .event-thumb,
  .formatted-content .events-list-standard .event-item .event-thumb,
  .formatted-content .event-item img.event-thumb {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
  
  .formatted-content .events-featured-grid .featured-image,
  .formatted-content .featured-event-card .featured-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 200px !important;
    margin: 0 !important;
    display: block !important;
  }
  
  /* Better paragraph width for readability */
  .formatted-content p {
    max-width: 65ch; /* Optimal line length for reading */
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Desktop Homepage Layout */
  .navigation-container.bottom {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 280px;
  }
  
  .navigation-container.bottom .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
  }
  
  .navigation-container.bottom .tab-content {
    background: rgba(15, 47, 31, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Desktop Typography */
  body {
    font-size: 1.125rem; /* 18px minimum */
  }
  
  .formatted-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .formatted-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  
  .formatted-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  /* Desktop Card Layouts */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .event-card, .sketch-card {
    margin: 2rem 0;
    padding: 2.5rem !important; /* Ensure good padding on desktop */
  }
  
  /* Desktop: Ensure images in sketch-cards stay reasonable (excluding navetta) */
  .sketch-card img:not(.navetta-icon) {
    max-width: 70px;
    height: auto;
  }
  
  /* Two-column layouts for longer content */
  .two-column-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
  }
  
  /* CTA buttons - larger on desktop */
  .cta, .family-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    display: inline-block;
  }
  
  .cta:hover, .family-cta:hover {
    color: var(--christmas-gold) !important;
    transition: color 0.3s ease;
  }
}

/* Tablet Layout (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Mobile navigation but with better spacing */
  .mobile-menu {
    padding: 1rem 0;
  }
  
  .menu-tabs {
    gap: 1rem;
    padding: 0 2rem;
  }
  
  .tab {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    min-width: 120px;
  }
  
  /* Content area improvements for tablet */
  .content.show {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .formatted-content h1 {
    font-size: 2.5rem;
  }
  
  .formatted-content h2 {
    font-size: 2rem;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .desktop-sidebar {
    width: 320px;
  }
  
  .navigation-container {
    padding-left: 320px;
  }
  
  .navigation-container.bottom {
    padding-left: 320px;
  }
  
  .content.show {
    padding: 3rem 4rem;
    max-width: 1400px;
  }
  
  .formatted-content h1 {
    font-size: 3.5rem;
  }
  
  /* Three column grid for larger screens */
  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Footer Enhanced Styles */
@media (max-width: 1023px) {
  /* Footer trigger completely removed - using burger menu only */
  .footer-trigger {
    display: none !important;
  }
  
  /* Close button in same position as burger menu */
  .footer-close-btn {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 1001 !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
  }
  
  .footer-close-btn:hover {
    background: white !important;
    transform: scale(1.05) !important;
  }
  
  .footer-close-btn svg {
    fill: var(--christmas-red) !important;
  }
  
  /* Main navigation styled */
  .footer-nav-main {
    text-align: center;
  }
  
  .footer-mobile-logo {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: -3rem;
  }
  
  .footer-logo-small {
    width: 100px !important; /* Increased by 20px from 80px */
    height: auto !important;
    max-width: 100px !important;
    display: block !important;
    margin: 0 auto !important;
  }
  
  .footer-link-main {
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none !important;
    color: white;
    transition: color 0.3s ease;
  }
  
  .footer-link-main:hover {
    color: var(--christmas-gold);
  }
  
  /* Footer container single column */
  .footer-container {
    display: block;
    padding: 3rem 2rem 2rem;
  }
  
  /* Legal info styled */
  .footer-legal {
    text-align: center;
    padding: 1.5rem;
    /* Removed background - should use main green background only */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .legal-line {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem; /* 18px minimum - NO 14px ALLOWED */
    line-height: 1.6;
    margin: 0.25rem 0;
  }
  
  .legal-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .legal-link:hover {
    color: var(--christmas-gold);
  }
  
}

/* Mobile Burger Menu Styles */
@media (max-width: 1023px) {

  .content-wrapper {
    margin-left: 0 !important;
    width: 100% !important;
    /* Removed padding-top: 0 to allow proper spacing */
  }

/* Desktop - Hide mobile elements and add content padding */
@media (min-width: 1024px) {
  .mobile-header {
    display: none;
  }

  
  .content-wrapper {
    padding-top: 60px !important;
  }
}

/* EVEY EVENTS VISIBILITY FIX - Global override */
button[data-evey-trigger],
[data-evey-string],
.evey-scheduler-button,
.evey-btn,
.evey-scheduler-container,
.evey-scheduler-container button {
  visibility: visible !important;
  display: block !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 999 !important;
}


/* Mobile specific fix for Evey button */
@media (max-width: 1023px) {
  .evey-scheduler-container {
    position: relative !important;
    z-index: 995 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  
  button[data-evey-trigger="scheduler"] {
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 995 !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  /* Ensure product section doesn't block Evey elements */
  .section-main-product {
    overflow: visible !important;
  }
  
  .product__info {
    overflow: visible !important;
    z-index: auto !important;
  }
  
  /* Fix potential content wrapper issues on mobile */
  .content-wrapper {
    overflow: visible !important;
  }

  /* ============================================================
     MODULAR ICON SIZING SYSTEM
     ============================================================ */
  
  /* Small UI Icons (16px) - Default for interface elements */
  .ui-icons,
  .accordion summary .icon,
  .slider-button .icon,
  .quantity__button .icon,
  .quantity__button svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
  }

  /* Payment Method Icons (36px) - Larger for better visibility */
  .payment-icon,
  .payment-logo-large,
  span.payment-icon,
  span.payment-logo-large,
  .payment-icon svg,
  .payment-logo-large svg,
  span.payment-icon svg,
  span.payment-logo-large svg {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }
  
  /* Ensure payment icons container also has correct size */
  .trust-section .payment-icon,
  .trust-section .payment-logo-large {
    display: inline-flex !important;
    width: 36px !important;
    height: 36px !important;
  }
  
  /* Medium Icons (24px) - For secondary interface elements */
  .medium-icons,
  .product__view-details .icon,
  .media-gallery .icon,
  .trust-badge svg,
  .location-icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }
  
  /* Star Rating Icons (16px) - Consistent with UI icons */
  .star-rating svg,
  [aria-label*="stars"] svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
  }
  
  /* Cart Icons (32px) - With circle styling */
  .cart-icons,
  .mobile-cart-icon .cart-icon {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
  }
  
  /* Cart icon circle styling */
  .mobile-cart-icon a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mobile-cart-icon a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
  
  .mobile-cart-icon .cart-icon {
    fill: white;
    stroke: none;
  }
  
  /* Cart count badge positioning */
  .mobile-cart-icon .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--christmas-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
  }

  /* Preserve Evey app icons - Don't override */
  [class*="evey"] .icon,
  [class*="evey"] svg,
  .evey__variant-container .icon,
  .evey__variant-container svg {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
  }
}

/* FORCE SOCIAL ICON CSS AT END OF FILE - MAXIMUM SPECIFICITY */
#snap-footer a.social-icon,
.snap-footer a.social-icon,
.footer-social-links a.social-icon,
a.social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

/* FORCE FOOTER H4 CSS */
#snap-footer h4,
.snap-footer h4,
.footer-social h4 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 0 0 1rem 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
