/* ========================================
   PAVidea Sagl - Global Styles
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-bg: #f5f0eb;
    --color-bg-dark: #1a1a1a;
    --color-foreground: #1a1a1a;
    --color-foreground-light: #f5f0eb;
    --color-primary: #b8860b;
    --color-primary-light: #d4a843;
    --color-muted: #6b6b6b;
    --color-border: #d6cfc6;
    --color-card: #ffffff;
    --color-card-hover: #faf8f5;
    --font-heading: "DM Serif Display", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
  }
  
  /* ---------- Reset & Base ---------- */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 176px;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  /* ---------- Utility Classes ---------- */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 12px;
  }
  
  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-foreground);
    text-wrap: balance;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 600px;
  }
  
  /* ---------- Topbar ---------- */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--color-foreground) 0%, rgba(26, 26, 26, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 101;
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    height: 56px;
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
  }

  .topbar.topbar-hidden {
    transform: translateY(-100%);
  }
  
  .topbar .container {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  
  .topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
  
  .topbar-contacts {
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 24px;
    margin-right: auto;
  }
  
  .topbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .topbar-phone:first-child {
    padding-left: 0;
  }
  
  .topbar-phone:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
  }
  
  .topbar-phone svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary-light);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .topbar-phone-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .topbar-phone-number {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .topbar-phone:hover {
    background: rgba(184, 134, 11, 0.12);
  }
  
  .topbar-phone:hover .topbar-phone-label {
    color: var(--color-primary-light);
  }
  
  .topbar-phone:hover .topbar-phone-number {
    color: var(--color-primary-light);
  }
  
  .topbar-phone:hover svg {
    stroke: var(--color-primary-light);
    transform: scale(1.1);
  }
  
  .topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 24px;
    margin-left: auto;
  }
  
  .topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
    white-space: nowrap;
  }
  
  .topbar-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .topbar-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
  }
  
  .topbar-cta:hover svg {
    transform: translateX(3px);
  }
  
  .topbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
  }
  
  .topbar-social svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
  }
  
  .topbar-social:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
  }
  
  .topbar-social:hover svg {
    stroke: #fff;
    transform: scale(1.1);
  }
  
  /* ---------- Navigation ---------- */
  .nav {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(245, 240, 235, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.35s ease;
  }

  .topbar.topbar-hidden ~ .nav {
    top: 0;
  }
  
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .nav-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  
  .nav-links a {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-muted);
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-primary);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--color-foreground);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a.active {
    color: var(--color-foreground);
  }

  .nav-links a.active::after {
    width: 100%;
  }

  .nav-cta {
    font-family: "Poppins", sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    color: var(--color-muted) !important;
    background: none;
    padding: 0;
    border-radius: 0;
    text-transform: none;
    transition: color 0.3s ease !important;
  }
  
  .nav-cta::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-primary);
    transition: width 0.3s ease;
  }
  
  .nav-cta:hover {
    background: none;
    color: var(--color-foreground) !important;
    transform: none;
  }

  .nav-cta:hover::after {
    width: 100%;
  }
  
  /* Mobile Menu Toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-foreground);
    transition: all 0.3s ease;
  }
  
  /* ---------- Hero Section ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  
  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.75) 0%,
      rgba(26, 26, 26, 0.35) 60%,
      rgba(26, 26, 26, 0.15) 100%
    );
    z-index: 1;
  }
  
  /* Hero Carousel Navigation */
  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
  }
  
  .hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
  }
  
  .hero-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  .hero-arrow-prev {
    left: 24px;
  }
  
  .hero-arrow-next {
    right: 24px;
  }
  
  /* Hero Dots Indicators */
  .hero-dots {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  
  .hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
  }
  
  .hero-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary-light);
    width: 32px;
    border-radius: 6px;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 220px 24px 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    pointer-events: none;
  }

  .hero-content a,
  .hero-content button,
  .hero-content-wrapper {
    pointer-events: auto;
  }
  
  .hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero-text-content {
    max-width: 700px;
  }
  
  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    text-wrap: balance;
  }
  
  .hero-title-accent {
    color: var(--color-primary-light);
    display: block;
    margin-top: 4px;
  }
  
  .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
  }
  
  .hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  
  .hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
  }
  
  .hero-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary-light);
    flex-shrink: 0;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
  }
  
  .btn-hero-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
  }
  
  .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 18px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }
  
  
  /* ---------- Marquee ---------- */
  .marquee-section {
    background: var(--color-foreground);
    padding: 18px 0;
    overflow: hidden;
  }
  
  .marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .marquee-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* ---------- About / Chi Siamo ---------- */
  .about {
    padding: 120px 0;
    background: var(--color-card);
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-main-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  .about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-foreground);
    font-weight: 400;
  }
  
  .about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .about-card {
    background: var(--color-bg);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
  }
  
  .about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(184, 134, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .about-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
  }
  
  .about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin: 0;
  }
  
  .about-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0;
  }
  
  .about-bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-bottom-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin: 0;
  }
  
  .about-highlight {
    font-size: 1.2rem !important;
    color: var(--color-foreground) !important;
    font-weight: 500 !important;
    padding: 24px;
    background: rgba(184, 134, 11, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
  }
  
  .about-image-modern {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .about-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .about-image-modern:hover img {
    transform: scale(1.05);
  }
  
  .about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }
  
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-card);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-feature:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.08);
  }
  
  .about-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(184, 134, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .about-feature p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.5;
  }
  
  /* ---------- Products / Prodotti ---------- */
  .products {
    padding: 120px 0;
    background: var(--color-card);
  }
  
  .products-header {
    text-align: center;
    margin-bottom: 64px;
  }
  
  .products-header .section-subtitle {
    margin: 16px auto 0;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
  }
  
  .product-card:hover {
    transform: translateY(-16px) scale(1.01);
    border-color: var(--color-primary);
    box-shadow: 0 24px 80px rgba(184, 134, 11, 0.25);
  }
  
  .product-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg) 0%, #e8e3dd 100%);
  }
  
  .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .product-card:hover img {
    transform: scale(1.15);
  }
  
  .product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(26, 26, 26, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .product-card:hover .product-card-overlay {
    opacity: 1;
  }
  
  .product-card-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--color-card);
    flex-grow: 1;
  }
  
  .product-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
  }
  
  .product-card:hover .product-card-content h3 {
    color: var(--color-primary);
  }
  
  .product-card-content p {
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 12px;
    transition: all 0.3s ease;
  }
  
  .product-card-cta::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-card-cta {
    gap: 12px;
    color: var(--color-primary-light);
  }
  
  .product-card:hover .product-card-cta::after {
    transform: translateX(6px);
  }
  
  /* Product Modal */
  .product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  
  .product-modal.active {
    display: flex;
  }
  
  .product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: overlayFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  @keyframes overlayFadeIn {
    from {
      opacity: 0;
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
    }
    to {
      opacity: 1;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
  }
  
  .product-modal-content {
    position: relative;
    background: var(--color-card);
    border-radius: 40px;
    max-width: 1200px;
    width: 100%;
    max-height: 92vh;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 
      0 32px 120px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(184, 134, 11, 0.1);
  }
  
  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(40px) scale(0.94);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .product-modal-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(184, 134, 11, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  
  .product-modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg) scale(1.08);
    box-shadow: 
      0 12px 32px rgba(184, 134, 11, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .product-modal-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-foreground);
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
  }
  
  .product-modal-close:hover svg {
    stroke: #fff;
  }
  
  .product-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(184, 134, 11, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  
  .product-modal-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 
      0 12px 32px rgba(184, 134, 11, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .product-modal-nav svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-foreground);
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
  }
  
  .product-modal-nav:hover svg {
    stroke: #fff;
  }
  
  .product-modal-prev {
    left: 120px;
  }
  
  .product-modal-next {
    right: 120px;
  }
  
  .product-modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 600px;
    height: 100%;
  }
  
  .product-modal-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg) 0%, #e8e3dd 100%);
  }
  
  .product-modal-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg, 
      rgba(184, 134, 11, 0.08) 0%, 
      transparent 50%,
      rgba(26, 26, 26, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
  
  .product-modal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(26, 26, 26, 0.02) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
  
  .product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .product-modal-content:hover .product-modal-image img {
    transform: scale(1.05);
  }
  
  .product-modal-text {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
      180deg, 
      var(--color-card) 0%, 
      rgba(255, 255, 255, 0.98) 50%,
      rgba(245, 240, 235, 0.95) 100%
    );
    position: relative;
  }
  
  .product-modal-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
      180deg,
      var(--color-primary) 0%,
      var(--color-primary-light) 100%
    );
    opacity: 0.6;
  }
  
  .product-modal-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
  }
  
  .product-modal-text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--color-primary) 0%,
      transparent 100%
    );
    border-radius: 2px;
  }
  
  .product-modal-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-muted);
    margin-bottom: 48px;
    margin-top: 32px;
    white-space: pre-line;
    font-weight: 400;
  }
  
  .product-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    box-shadow: 
      0 8px 24px rgba(184, 134, 11, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .product-modal-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .product-modal-cta:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 12px 40px rgba(184, 134, 11, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .product-modal-cta:hover::before {
    opacity: 1;
  }
  
  .product-modal-cta > * {
    position: relative;
    z-index: 1;
  }
  
  .product-modal-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .product-modal-cta:hover svg {
    transform: translateX(6px);
  }
  
  @media (max-width: 1024px) {
    .product-modal-content {
      max-width: 92%;
      border-radius: 32px;
    }
    
    .product-modal-body {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    
    .product-modal-image {
      height: 450px;
      min-height: 450px;
    }
    
    .product-modal-prev {
      left: 20px;
    }
    
    .product-modal-next {
      right: 20px;
    }
    
    .product-modal-close {
      top: 24px;
      right: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .product-modal {
      padding: 12px;
      align-items: center;
      justify-content: center;
    }

    .product-modal-content {
      max-width: 100%;
      width: 100%;
      border-radius: 20px;
      max-height: 92vh;
      overflow-y: auto;
    }
    
    .product-modal-body {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    
    .product-modal-image {
      height: 220px;
      min-height: 220px;
    }
    
    .product-modal-text {
      padding: 24px 20px 32px;
    }
    
    .product-modal-text::before {
      display: none;
    }
    
    .product-modal-text h2 {
      font-size: 1.5rem;
      margin-bottom: 16px;
    }
    
    .product-modal-text h2::after {
      width: 40px;
      height: 2px;
      bottom: -8px;
    }
    
    .product-modal-text p {
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 24px;
      margin-top: 20px;
    }
    
    .product-modal-close {
      top: 12px;
      right: 12px;
      width: 36px;
      height: 36px;
      z-index: 10;
    }
    
    .product-modal-close svg {
      width: 18px;
      height: 18px;
    }
    
    .product-modal-nav {
      width: 40px;
      height: 40px;
    }
    
    .product-modal-nav svg {
      width: 18px;
      height: 18px;
    }
    
    .product-modal-prev {
      left: 10px;
    }
    
    .product-modal-next {
      right: 10px;
    }
    
    .product-modal-cta {
      width: 100%;
      justify-content: center;
      padding: 14px 32px;
      font-size: 0.9rem;
      border-radius: 12px;
    }
  }
  
  /* ---------- Services / Servizi ---------- */
  .services {
    padding: 120px 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
  }
  
  .services-content {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    height: fit-content;
  }
  
  .services-content .section-subtitle {
    max-width: 100%;
  }
  
  .services-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin: 32px 0;
    flex-shrink: 0;
  }
  
  .services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: space-between;
  }
  
  .service-item {
    flex: 1;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: padding-left 0.3s ease;
    min-height: 0;
  }
  
  .service-item:first-child {
    border-top: 1px solid var(--color-border);
  }
  
  .service-item:hover {
    padding-left: 12px;
  }
  
  .service-item-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
  }
  
  .service-item-content {
    flex: 1;
  }
  
  .service-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    transition: color 0.3s ease;
  }
  
  .service-item:hover .service-item-content h4 {
    color: var(--color-primary);
  }
  
  .service-item-content p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
  }
  
  .service-item-icon {
    display: none;
  }
  
  /* ---------- Banner ATP ---------- */
  .atp-banner {
    padding: 0 0 60px;
    background: var(--color-card);
  }

  .atp-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 60px;
    text-decoration: none;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    width: 100%;
  }

  .atp-banner-link:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.12);
    color: var(--color-foreground);
    transform: translateY(-1px);
  }

  .atp-banner-flag svg {
    width: 28px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  }

  .atp-banner-divider {
    width: 1px;
    height: 20px;
    background: var(--color-border);
    flex-shrink: 0;
  }

  .atp-banner-text {
    letter-spacing: 0.02em;
  }

  .atp-banner-text strong {
    color: var(--color-primary);
    font-weight: 600;
  }

  .atp-banner-arrow {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
  }

  .atp-banner-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary);
  }

  .atp-banner-link:hover .atp-banner-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* ---------- Numbers / Numeri ---------- */
  .numbers {
    padding: 80px 0;
    background: var(--color-foreground);
  }
  
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
  }
  
  .number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .number-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--color-primary-light);
    line-height: 1;
  }
  
  .number-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* ---------- Why Us ---------- */
  .why-us {
    padding: 120px 0;
    background: var(--color-foreground);
  }

  .why-us .section-label {
    color: var(--color-primary-light);
  }

  .why-us .section-title {
    color: #fff;
  }

  .why-us-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .why-us-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .why-us-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(184, 134, 11, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  }

  .why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .why-us-card:hover .why-us-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
  }

  .why-us-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary-light);
    transition: stroke 0.3s ease;
  }

  .why-us-card:hover .why-us-icon svg {
    stroke: #fff;
  }

  .why-us-card h3 {
    font-family: "DM Serif Display", serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
  }

  .why-us-card p {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
  }

  /* ---------- Contact / Contatti ---------- */
  .contact {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(245, 240, 235, 0.5) 100%);
    position: relative;
  }
  
  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
  }
  
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    text-align: center;
  }
  
  .contact-content .section-label {
    margin: 0 auto;
  }
  
  .contact-content .section-title {
    margin: 0 auto 16px;
    text-align: center;
  }
  
  .contact-content .section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
  }
  
  .contact-info-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
  }
  
  .contact-info-item {
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }
  
  .contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .contact-info-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .contact-info-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 
      0 20px 60px rgba(184, 134, 11, 0.2),
      0 0 0 1px rgba(184, 134, 11, 0.1);
  }
  
  .contact-info-item:hover::before {
    opacity: 1;
  }
  
  .contact-info-item:hover::after {
    opacity: 1;
  }
  
  .contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
      0 8px 24px rgba(184, 134, 11, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
      0 12px 32px rgba(184, 134, 11, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .contact-info-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.5s ease;
  }
  
  .contact-info-item:hover .contact-info-icon svg {
    transform: scale(1.1);
  }
  
  .contact-info-item > div:last-child {
    width: 100%;
  }
  
  .contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  
  .contact-info-item p {
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin: 0;
  }
  
  .contact-info-item a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .contact-info-item a:hover {
    color: var(--color-primary-light);
    transform: translateY(-1px);
  }
  
  .contact-map {
    position: relative;
    margin-top: 8px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.12),
      0 0 0 1px var(--color-border);
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
  }
  
  .contact-map:hover {
    box-shadow: 
      0 24px 80px rgba(184, 134, 11, 0.2),
      0 0 0 2px var(--color-primary);
    transform: translateY(-4px);
  }
  
  .contact-map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
  }

  .contact-map-blocked {
    display: none;
    min-height: 320px;
    padding: 28px;
    background: linear-gradient(180deg, #fbf8f3 0%, #f3ebe2 100%);
    color: var(--color-foreground);
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }

  .contact-map-blocked p {
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c534a;
  }

  .contact-map-accept {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.28);
  }

  .contact-map-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(184, 134, 11, 0.33);
  }

  body:not(.cookie-accepted) .contact-map-iframe {
    display: none;
  }

  body:not(.cookie-accepted) .contact-map-blocked {
    display: flex;
  }
  
  .contact-form {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 100%;
  }
  
  .contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-foreground);
    line-height: 1.2;
  }
  
  .contact-form > p {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    line-height: 1.7;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-group.full {
    grid-column: 1 / -1;
  }
  
  .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-muted);
  }
  
  .form-group label .required {
    color: var(--color-primary);
    font-weight: 700;
    margin-left: 2px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-bg);
    color: var(--color-foreground);
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 
      0 0 0 4px rgba(184, 134, 11, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--color-muted);
    opacity: 0.6;
  }
  
  .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
  }

  .form-consent {
    margin-top: 8px;
    margin-bottom: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
  }

  .form-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #575757;
  }

  .form-consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
  }

  .form-consent-label a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .form-consent-label a:hover {
    color: var(--color-primary-light);
  }
  
  .form-submit {
    margin-top: 32px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
      0 8px 24px rgba(184, 134, 11, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 12px 40px rgba(184, 134, 11, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .form-submit:hover::before {
    opacity: 1;
  }
  
  .form-submit span,
  .form-submit svg {
    position: relative;
    z-index: 1;
  }
  
  .form-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
  }
  
  .form-submit:hover svg {
    transform: translateX(4px);
  }
  
  /* ---------- Footer ---------- */
  .footer {
    background: var(--color-foreground);
    padding: 64px 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 350px;
  }
  
  .footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
  }
  
  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .footer-col li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  .footer-col li strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
  }
  
  .footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .footer-col a:hover {
    color: var(--color-primary-light);
  }
  
  .footer-bottom {
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
  }
  
  .footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .footer-links > a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links > a:hover {
    color: var(--color-primary-light);
  }

  .footer-manage-cookies {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .footer-manage-cookies:hover {
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
  }
  
  .footer-social {
    display: flex;
    gap: 0;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
  }
  
  .footer-social svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.8);
    transition: stroke 0.3s ease;
  }
  
  .footer-social a:hover svg {
    stroke: #fff;
  }
  
  /* ---------- Cookie Banner ---------- */
  .cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9998;
    transition: opacity 0.4s ease;
  }

  .cookie-overlay.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-foreground);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    padding: 28px 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  }

  .cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  /* Hide GTranslate until cookies accepted */
  body:not(.cookie-accepted) .gtranslate_wrapper {
    display: none !important;
  }

  .cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .cookie-text h3 {
    font-family: "DM Serif Display", serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .cookie-text p {
    font-family: "Poppins", sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 700px;
  }

  .cookie-text a {
    color: var(--color-primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
  }

  .cookie-text a:hover {
    color: #fff;
  }

  .cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }

  .cookie-btn {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }

  .cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
  }

  .cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.45);
  }

  .cookie-btn-reject {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
  }

  /* ---------- Privacy Policy Page ---------- */
  .privacy-page {
    padding: 160px 0 100px;
    background: var(--color-bg);
    min-height: 100vh;
  }

  .privacy-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 40px;
    transition: gap 0.3s ease;
  }

  .privacy-back:hover {
    gap: 12px;
  }

  .privacy-back svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
  }

  .privacy-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-foreground);
    margin-bottom: 8px;
  }

  .privacy-updated {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 50px;
  }

  .privacy-content {
    max-width: 800px;
  }

  .privacy-section {
    margin-bottom: 40px;
  }

  .privacy-section h2 {
    font-family: "DM Serif Display", serif;
    font-size: 1.5rem;
    color: var(--color-foreground);
    margin-bottom: 16px;
    font-weight: 400;
  }

  .privacy-section p {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
  }

  .privacy-section ul li {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
  }

  .privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
  }

  .privacy-section a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
  }

  .privacy-section a:hover {
    color: var(--color-foreground);
  }

  .privacy-contact-info {
    background: rgba(184, 134, 11, 0.06);
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin-top: 12px;
  }

  .privacy-contact-info p {
    margin-bottom: 4px;
  }

  /* ---------- Error Pages ---------- */
  .error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    padding: 120px 24px;
    text-align: center;
  }

  .error-content {
    max-width: 560px;
    margin: 0 auto;
  }

  .error-code {
    font-family: "DM Serif Display", serif;
    font-size: clamp(7rem, 15vw, 12rem);
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
    display: block;
    margin-bottom: 16px;
  }

  .error-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--color-foreground);
    margin-bottom: 20px;
  }

  .error-message {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .error-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.25);
  }

  .error-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }

  .error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
  }

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

  /* ---------- Animations ---------- */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  
    .about-cards {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .about-bottom-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .contact-grid {
      gap: 60px;
    }
  
    .services-content {
      position: static;
    }
    
    .contact-info-list {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .contact-form {
      padding: 40px;
    }
    
    .contact-info-item {
      padding: 32px 24px;
    }
    
    .contact-info-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 20px;
    }
    
    .contact-info-icon svg {
      width: 32px;
      height: 32px;
    }
    
    .contact-info-item h4 {
      font-size: 1.3rem;
    }
    
    .contact-map-iframe {
      height: 350px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  
    
    .hero-arrow {
      width: 48px;
      height: 48px;
    }
    
    .hero-arrow svg {
      width: 20px;
      height: 20px;
    }
    
    .hero-arrow-prev {
      left: 16px;
    }
    
    .hero-arrow-next {
      right: 16px;
    }
  
    .numbers-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }
  
  @media (max-width: 1024px) {
    .topbar-contacts {
      gap: 0;
    }
    
    .topbar-phone {
      padding: 8px 12px;
    }
    
    .topbar-phone-label {
      display: none;
    }
    
    .topbar-phone-number {
      font-size: 0.8rem;
    }
    
    .topbar-cta {
      font-size: 0.75rem;
      padding: 8px 16px;
    }
    
    .topbar-actions::before {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .atp-banner-link {
      padding: 12px 20px;
      gap: 10px;
      font-size: 0.8rem;
      border-radius: 50px;
    }

    .atp-banner-flag svg {
      width: 22px;
      height: 16px;
    }

    .atp-banner-arrow {
      display: none;
    }

    .atp-banner {
      padding: 0 0 40px;
    }

    .topbar {
      display: none;
    }
    
    .nav {
      top: 0;
    }
    
    html {
      scroll-padding-top: 100px;
    }
    
    .nav-inner {
      height: 100px;
    }
    
    .nav-logo img {
      height: 75px;
    }
    
    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100vh;
      background: rgba(245, 240, 235, 0.99);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      gap: 36px;
      z-index: 9998;
    }

    .nav-links.active {
      display: flex;
    }

    .nav-links a,
    .nav-links .nav-cta {
      font-size: 1.5rem !important;
      letter-spacing: 1.5px !important;
    }
  
    .nav-toggle {
      display: flex;
      z-index: 9999;
    }
    
    .hero-content {
      padding: 100px 24px 60px;
    }
    
    
    .hero-actions {
      flex-direction: column;
      width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      justify-content: center;
    }
  
    .hero-title {
      font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-description {
      font-size: 1.1rem;
    }
    
    .about-intro-text {
      font-size: 1.1rem;
    }
    
    .about-cards {
      grid-template-columns: 1fr;
    }
    
    .about-bottom-content {
      grid-template-columns: 1fr;
    }
    
    .about-card {
      padding: 32px 24px;
    }
    
    .hero-arrow {
      display: none;
    }

    .hero-bg img.hero-img-right {
      object-position: 70% center;
    }
    
    .hero-dots {
      bottom: 24px;
      gap: 8px;
    }
    
    .hero-dot {
      width: 10px;
      height: 10px;
    }
    
    .hero-dot.active {
      width: 24px;
    }
  
    .products-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .product-card {
      border-radius: 16px;
    }

    .product-card-image-wrapper {
      height: 220px;
    }

    .product-card-content {
      padding: 20px;
      gap: 8px;
    }

    .product-card-content h3 {
      font-size: 1.3rem;
    }

    .product-card-content p {
      font-size: 0.9rem;
      -webkit-line-clamp: 2;
    }

    .product-card-cta {
      font-size: 0.8rem;
      margin-top: 6px;
    }
  
    .why-us {
      padding: 80px 0;
    }

    .why-us-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .why-us-card {
      padding: 28px 20px;
    }

    .why-us-card h3 {
      font-size: 1.05rem;
    }

    .why-us-card p {
      font-size: 0.82rem;
    }

    .contact {
      padding: 80px 0;
    }
    
    .contact-content {
      gap: 32px;
    }
    
    .contact-info-list {
      grid-template-columns: 1fr;
    }
    
    .contact-info-item {
      padding: 32px 24px;
    }
    
    .contact-info-icon {
      width: 64px;
      height: 64px;
      margin-bottom: 20px;
    }
    
    .contact-info-icon svg {
      width: 28px;
      height: 28px;
    }
    
    .contact-info-item h4 {
      font-size: 1.2rem;
      margin-bottom: 12px;
    }
    
    .contact-info-item p {
      font-size: 1rem;
    }
    
    .contact-map {
      margin-top: 24px;
    }
    
    .contact-map-iframe {
      height: 300px;
    }
    
    .contact-form {
      padding: 32px 24px;
      border-radius: 24px;
    }
    
    .contact-form h3 {
      font-size: 1.75rem;
    }
    
    .form-row {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 18px;
      font-size: 0.95rem;
    }
    
    .form-group textarea {
      min-height: 120px;
    }
    
    .form-submit {
      padding: 18px 32px;
      font-size: 0.95rem;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 16px;
    }
    
    .footer-logo img {
      height: 55px;
    }
    
    .footer-col li {
      font-size: 0.875rem;
    }

    .cookie-banner-inner {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }

    .cookie-text p {
      font-size: 0.8rem;
    }

    .cookie-actions {
      width: 100%;
      justify-content: center;
    }

    .privacy-page {
      padding: 130px 0 60px;
    }
  }

  /* ===================== FORM FEEDBACK MESSAGES ===================== */

  .form-message {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    animation: formMessageSlide 0.4s ease;
  }

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

  .form-message-success {
    background: rgba(34, 139, 34, 0.08);
    border: 1px solid rgba(34, 139, 34, 0.25);
    color: #1a6e1a;
  }

  .form-message-error {
    background: rgba(200, 30, 30, 0.08);
    border: 1px solid rgba(200, 30, 30, 0.25);
    color: #a01a1a;
  }

  .form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
  }

  .form-submit-loading {
    position: relative;
  }

  .form-submit-loading::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: formSpinner 0.6s linear infinite;
    margin-left: 8px;
  }

  @keyframes formSpinner {
    to {
      transform: rotate(360deg);
    }
  }

  /* ===================== RECAPTCHA v3 ===================== */

  /* Nasconde il badge di default di reCAPTCHA (consentito se si mostra l'attribuzione nel testo) */
  .grecaptcha-badge {
    visibility: hidden !important;
  }

  .recaptcha-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #888;
  }

  .recaptcha-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #aaa;
  }

  .recaptcha-notice a {
    color: #666;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
  }

  .recaptcha-notice a:hover {
    color: var(--color-primary);
  }

  .recaptcha-blocked-notice {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #7b5a10;
  }

  .inline-manage-cookies {
    border: none;
    background: transparent;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
  }

  .inline-manage-cookies:hover {
    color: #8c6506;
  }
  