/* ==========================================
   Fonts (da Spazio Panà — siti esterni)
   Display: Vintage Whiskey | Body: Source Sans Pro | Accenti: Oswald / Maginot
   ========================================== */
@font-face {
    font-family: 'Vintage Whiskey Full';
    src: url('../fonts/VintageWhiskeyFull.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vintage Whiskey Regular';
    src: url('../fonts/VintageWhiskeyRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vintage Whiskey Shadow';
    src: url('../fonts/VintageWhiskeyShadow.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vintage Whiskey Striped';
    src: url('../fonts/VintageWhiskeyStriped.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vintage Whiskey Aged';
    src: url('../fonts/VintageWhiskeyAged.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maginot Regular';
    src: url('../fonts/MaginotRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   Global Styles
   ========================================== */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --secondary-color: #D4AF37;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --font-body: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    --font-display: 'Vintage Whiskey Full', Georgia, serif;
    --font-hero: 'Vintage Whiskey Striped', 'Vintage Whiskey Full', Georgia, serif;
    --font-section: 'Vintage Whiskey Shadow', 'Vintage Whiskey Full', Georgia, serif;
    --font-category: 'Vintage Whiskey Regular', Georgia, serif;
    --font-accent: 'Oswald', Helvetica, Arial, sans-serif;
    --font-brand: 'Maginot Regular', 'Vintage Whiskey Full', Georgia, serif;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

h1, .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: var(--font-hero);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h2 {
    font-family: var(--font-section);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h3, .category-card h3, .category-card h5, .category-overlay h3 {
    font-family: var(--font-category);
    font-weight: 400;
}

h4, h5, .feature-box h4, .feature-box h5, .stat-card h3, .stat-card h4 {
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.navbar-brand {
    font-family: var(--font-brand);
    letter-spacing: 0.04em;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-decoration: none;
    padding: 0.15rem 0;
}

.brand-lockup:hover,
.brand-lockup:focus {
    text-decoration: none;
}

.brand-lockup .brand-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    text-transform: none;
}

.brand-lockup .brand-subtitle {
    font-family: var(--font-brand);
    font-size: clamp(0.62rem, 2vw, 0.78rem);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.brand-lockup:hover .brand-title {
    color: var(--primary-dark);
}

.hero-section h1 {
    font-family: var(--font-hero);
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.35rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.5);
}

.hero-lead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
    max-width: 38rem;
    opacity: 0.98;
}

/*#categorie h2,
#chi-siamo h2,
#contatti h2,*/

.section-title,
.about-section h2,
.catalog-header h1 {
    font-family: var(--font-section);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ==========================================
   Navbar
   ========================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image: url('../images/scraped-spaziopana/hero-negozio.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

/* ==========================================
   Feature Box
   ========================================== */
.feature-box {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.whatsapp-cta {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.whatsapp-cta i {
    color: var(--primary-color);
    font-size: 1.75rem;
    line-height: 1.35;
    flex-shrink: 0;
}

.whatsapp-cta p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
}

.whatsapp-cta strong {
    white-space: nowrap;
}

/* ==========================================
   Categories
   ========================================== */
.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.category-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    padding: 1.5rem;
    text-align: center;
}

/* ==========================================
   Service Cards
   ========================================== */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
}

/* ==========================================
   Vendere / Guida / Buono Regalo
   ========================================== */
html {
    scroll-padding-top: 90px;
}

.sell-step {
    height: 100%;
    padding: 0.25rem 0.5rem 0.5rem;
}

.sell-step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
}

.sell-step-title {
    font-family: var(--font-category);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0.02em;
}

.sell-detail-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.25rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sell-detail-link:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.transport-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 1.75rem 2rem;
    border-left: 5px solid var(--secondary-color);
}

.transport-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.transport-box a.transport-phone {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.transport-box a.transport-phone:hover {
    color: #fff;
    text-decoration: underline;
}

.guide-block {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-block:last-child {
    border-bottom: none;
}

.guide-block-title {
    font-family: var(--font-category);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: none;
}

.guide-list {
    padding-left: 1.15rem;
    margin-bottom: 1rem;
}

.guide-list li {
    margin-bottom: 0.55rem;
}

.guide-note {
    background: rgba(139, 69, 19, 0.08);
    border-left: 3px solid var(--primary-color);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.discount-timeline {
    margin: 0;
    padding: 0;
}

.discount-timeline li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.discount-timeline li:last-child {
    border-bottom: none;
}

.discount-period {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    min-width: 12rem;
}

.gift-info {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.gift-contact-list p {
    margin-bottom: 0.75rem;
}

.gift-contact-list a {
    color: var(--text-dark);
    text-decoration: none;
}

.gift-contact-list a:hover {
    color: var(--primary-color);
}

.gift-contact-list i {
    color: var(--primary-color);
    width: 1.25rem;
}

.iban-box {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border: 1px dashed var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.iban-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.iban-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: normal;
}

.gift-hint {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .sell-step-icon {
        margin-left: auto;
        margin-right: auto;
    }

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

    .sell-cta-row {
        text-align: center;
    }

    .sell-detail-link {
        margin-bottom: 1rem;
    }

    .transport-box {
        padding: 1.35rem 1.25rem;
        text-align: left;
    }

    .discount-period {
        min-width: 100%;
    }

    .gift-info {
        padding: 1.35rem;
    }
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: #fff;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #1a1a1a !important;
    color: #f1f3f5 !important;
}

.footer h5,
.footer h6,
.footer .h5,
.footer .h6 {
    color: #ffffff !important;
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer p,
.footer li,
.footer span,
.footer small {
    color: #e9ecef !important;
}

.footer .text-muted,
.footer a.text-muted,
.footer .footer-text,
.footer .footer-legal {
    color: #f1f3f5 !important;
}

.footer .footer-legal {
    text-decoration: none;
}

.footer .footer-legal:hover {
    color: var(--secondary-color) !important;
}

.footer-links li {
    margin-bottom: 0.5rem;
    color: #e9ecef;
}

.footer-links a {
    color: #f8f9fa !important;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color) !important;
    opacity: 1;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.footer .social-icon {
    color: #fff !important;
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 150px 0 80px;
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

/* ==========================================
   Catalog - Filters
   ========================================== */
.filters-sidebar .card {
    border: none;
    border-radius: 15px;
}

.form-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

.price-quick-filter {
    text-align: left;
}

.price-quick-filter.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ==========================================
   Category Discover Modal
   ========================================== */
.category-modal-image {
    max-height: 320px;
    object-fit: cover;
}

.category-modal-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Product Cards
   ========================================== */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-disponibile {
    background: #28a745;
    color: #fff;
}

.badge-prenotato {
    background: #ffc107;
    color: #000;
}

.badge-venduto {
    background: #dc3545;
    color: #fff;
}

.badge-ritirato {
    background: #6c757d;
    color: #fff;
}

.product-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.product-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
}

/* List View */
.product-card.list-view {
    flex-direction: row;
}

.product-card.list-view .product-img-container {
    width: 200px;
    height: auto;
    min-height: 150px;
}

.product-card.list-view .product-card-body {
    padding: 1.5rem;
}

/* ==========================================
   Pagination
   ========================================== */
.pagination .page-link {
    color: var(--primary-color);
    border-color: #dee2e6;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==========================================
   Modal
   ========================================== */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #eee;
}

.modal-footer {
    border-top: 1px solid #eee;
}

#modalCarouselInner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* ==========================================
   Responsive
   ========================================== */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        background-attachment: scroll;
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 3rem;
    }

    .hero-section .min-vh-100 {
        min-height: 0 !important;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .filters-sidebar {
        position: static !important;
        top: auto !important;
    }

    .product-card.list-view {
        flex-direction: column;
    }

    .product-card.list-view .product-img-container {
        width: 100%;
        height: 250px;
    }

    .navbar-collapse {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .navbar-nav .nav-link {
        padding: 0.65rem 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
    }

    .hero-tagline {
        font-size: clamp(1.15rem, 5.5vw, 1.65rem);
    }

    .hero-lead {
        font-size: clamp(1.05rem, 4.2vw, 1.2rem);
    }

    .page-header {
        padding-top: 6rem;
        padding-bottom: 2rem;
        text-align: center;
    }

    .page-header h1,
    .page-header .display-4 {
        font-size: clamp(1.6rem, 7vw, 2.25rem);
        line-height: 1.2;
    }

    .category-img {
        height: 200px;
    }

    .product-img-container {
        height: 200px;
    }

    #modalCarouselInner img {
        height: 260px;
    }

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

    .stat-card h3 {
        font-size: 1.25rem;
    }

    .stat-card .fa-3x {
        font-size: 2rem !important;
    }

    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer .text-md-start,
    .footer .text-md-end {
        text-align: center !important;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    #catalogNotice .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    #catalogNotice .fa-2x {
        font-size: 1.5rem !important;
    }

    .map-container iframe,
    .map-container {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 88px;
        padding-bottom: 2rem;
    }

    .hero-section .lead,
    .hero-lead {
        font-size: 1.05rem;
    }

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

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
    }

    .btn-lg {
        padding: 0.65rem 1.1rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero-section .d-flex.gap-3 {
        width: 100%;
    }

    .category-overlay h3,
    .category-overlay h5 {
        font-size: 1.15rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.25rem;
    }
}

/* Preferenze riduzione moto / touch */
@media (hover: none) {
    .product-card:hover,
    .category-card:hover,
    .stat-card:hover,
    .feature-box:hover,
    .whatsapp-cta:hover {
        transform: none;
    }

    .product-card:hover .product-img-container img,
    .category-card:hover .category-img img {
        transform: none;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    animation: spin 1s linear infinite;
}

/* ==========================================
   Utility Classes
   ========================================== */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}
