:root {
    --primary-color: #ba0c2f;       /* Rosso corporate */
    --primary-hover: #960924;
    --dark-bg: #222222;            /* Grigio scuro/antracite */
    --light-bg: #f4f5f7;           /* Grigio chiaro inox */
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

[aria-current="page"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header fisso */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 2px solid var(--border-color);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-container {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    flex: 0 0 auto;
    line-height: 0;
}

.logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 52px;
}

.nav {
    margin-left: auto;
}

.nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

/* Pulsante hamburger: visibile solo su smartphone */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 9px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--dark-bg);
    transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Lo spazio superiore evita che l'header fisso copra il contenuto */
body {
    padding-top: 80px;
}

/* Hero Section */
.hero-product {
    background: linear-gradient(135deg, #2b2d42 0%, #1a1a24 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin: 10px 0;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #d1d5db;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #9ca3af;
}

.badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--light-bg);
}

/* Grid Vantaggi */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Info Sections */
.info-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.info-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.info-text ul {
    list-style: square;
    padding-left: 20px;
    color: var(--text-muted);
}

.info-text li {
    margin-bottom: 8px;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
    margin: 60px 0;
}

.cta-section h2 {
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 25px;
    color: #a0a0a0;
}

/* Footer */
.footer {
    background-color: #111111;
    color: #888888;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {

    body {
        padding-top: 72px;
    }

    .header {
        padding: 8px 0;
    }

    .header-container {
        min-height: 56px;
    }

    .logo img {
        max-width: 165px;
        max-height: 46px;
    }

    /* Menu desktop nascosto su smartphone */
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 2px);
        right: 20px;
        left: 20px;
        margin: 0;
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-top: 3px solid var(--primary-color);
        border-radius: 0 0 6px 6px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .nav.open {
        display: block;
    }

    .nav ul {
        display: block;
        padding: 6px 0;
    }

    .nav li {
        display: block;
    }

    .nav a {
        padding: 12px 15px;
        white-space: normal;
        border-bottom: 1px solid #eeeeee;
    }

    .nav li:last-child a {
        border-bottom: 0;
    }

    .nav a:hover,
    .nav a.active {
        background: var(--light-bg);
    }

    .info-section,
    .info-section.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nav {
        right: 15px;
        left: 15px;
    }

    .logo img {
        max-width: 145px;
    }

    .hero-product {
        padding: 55px 0;
    }
}

/* =========================================================
   MENU ELLE INOX - stile coerente con il sito esistente
   ========================================================= */
:root {
    --elle-red: #a71930;
    --elle-dark: #222;
    --elle-grey: #777;
    --elle-border: #dedede;
}

body { padding-top: 92px; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #d8d8d8;
    box-shadow: 0 1px 7px rgba(0,0,0,.08);
}

.site-header-inner {
    max-width: 1200px;
    min-height: 90px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-logo { display:block; flex: 0 0 auto; line-height:0; }
.site-logo img {
    display:block;
    width:auto;
    height:auto;
    max-width:220px;
    max-height:62px;
}

.main-nav { margin-left:auto; }
.main-menu,
.submenu { list-style:none; margin:0; padding:0; }
.main-menu { display:flex; align-items:center; gap:4px; }
.main-menu > li { position:relative; }
.main-menu > li > a,
.submenu-toggle {
    display:flex;
    align-items:center;
    gap:7px;
    min-height:90px;
    padding:0 13px;
    border:0;
    background:transparent;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px;
    font-weight:400;
    letter-spacing:.15px;
    text-decoration:none;
    white-space:nowrap;
    cursor:pointer;
    transition:color .2s ease, background-color .2s ease;
}
.main-menu > li > a:hover,
.main-menu > li > a.active,
.submenu-toggle:hover,
.has-submenu.submenu-open > .submenu-toggle { color:var(--elle-red); }

.arrow { font-size:14px; line-height:1; }
.submenu {
    position:absolute;
    top:100%;
    right:0;
    width:285px;
    display:none;
    background:#fff;
    border-top:3px solid var(--elle-red);
    box-shadow:0 5px 14px rgba(0,0,0,.14);
    padding:8px 0;
}
.has-submenu:hover > .submenu,
.has-submenu.submenu-open > .submenu { display:block; }
.submenu li a,
.submenu-title {
    display:block;
    padding:9px 16px;
    color:#444;
    text-decoration:none;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    line-height:1.35;
}
.submenu li a:hover,
.submenu li a.active { color:var(--elle-red); background:#f7f7f7; }
.submenu-title {
    color:#888;
    font-size:10px;
    letter-spacing:.3px;
    border-bottom:1px solid #eee;
    margin-bottom:3px;
}

.menu-toggle {
    display:none;
    width:44px;
    height:44px;
    margin-left:auto;
    padding:7px;
    border:1px solid #ddd;
    border-radius:2px;
    background:#fff;
    cursor:pointer;
}
.menu-toggle span {
    display:block;
    width:25px;
    height:2px;
    margin:5px auto;
    background:#333;
    transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width: 768px) {
    body { padding-top:72px; }
    .site-header-inner { min-height:70px; padding:0 15px; }
    .site-logo img { max-width:165px; max-height:48px; }
    .menu-toggle { display:block; }
    .main-nav {
        display:none;
        position:absolute;
        top:70px;
        left:15px;
        right:15px;
        margin:0;
        background:#fff;
        border:1px solid #ddd;
        border-top:3px solid var(--elle-red);
        box-shadow:0 6px 16px rgba(0,0,0,.14);
    }
    .main-nav.menu-open { display:block; }
    .main-menu { display:block; }
    .main-menu > li { border-bottom:1px solid #eee; }
    .main-menu > li:last-child { border-bottom:0; }
    .main-menu > li > a,
    .submenu-toggle {
        width:100%;
        min-height:0;
        padding:14px 16px;
        justify-content:space-between;
        font-size:13px;
        text-align:left;
    }
    .submenu {
        position:static;
        width:100%;
        border-top:1px solid #eee;
        border-bottom:0;
        box-shadow:none;
        padding:4px 0;
        background:#fafafa;
    }
    .has-submenu:hover > .submenu { display:none; }
    .has-submenu.submenu-open > .submenu { display:block; }
    .submenu li a { padding:10px 24px; font-size:11px; }
    .submenu-title { padding:9px 24px; }
}

@media (max-width:420px) {
    .site-logo img { max-width:145px; max-height:43px; }
    .main-nav { left:10px; right:10px; }
}
