/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #d4b896;
    --accent-color: #34495e;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    margin-right: 0.5rem;
}

/* Language Selector */
.language-selector {
    margin-left: 1rem;
}

.language-selector select {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background: var(--primary-color);
    color: var(--white);
}

.language-selector select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.2);
}

/* Monumenti Aversa */
.monumenti-aversa {
    margin: 2rem 0;
}

.monumenti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.monumento-item {
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.monumento-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.monumento-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.monumento-item strong {
    color: var(--primary-color);
}

/* Via Roma Highlight */
.via-roma-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    border-radius: 15px;
    color: var(--white);
    text-align: center;
}

.via-roma-highlight h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.via-roma-highlight p {
    margin: 0;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    height: 65px;
    width: auto;
    border-radius: 8px;
}

.language-flags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.flag-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-btn:hover {
    border-color: var(--primary-color);
    background: rgba(44, 62, 80, 0.1);
    transform: scale(1.1);
}

.flag-btn.active {
    border-color: var(--secondary-color);
    background: rgba(184, 134, 11, 0.1);
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
}

.nav-link.cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.8s both;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Camere Section */
.camere {
    padding: 80px 0;
    background: var(--white);
}

.camere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.camera-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.camera-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.camera-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.camera-card:hover .camera-image img {
    transform: scale(1.05);
}

.camera-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
}

.camera-content {
    padding: 2rem;
}

.camera-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.camera-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.camera-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.camera-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
}

.camera-features li i {
    color: var(--secondary-color);
    width: 16px;
}

/* Servizi Section */
.servizi {
    padding: 80px 0;
    background: var(--light-bg);
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.servizio-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.servizio-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.servizio-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.servizio-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Cucina Features Grid */
.cucina-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Cucina Section */
.cucina-highlight {
    background: var(--white);
    padding: 4rem 0;
    margin-top: 4rem;
}

.cucina-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cucina-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cucina-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cucina-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.camera-features i {
    color: var(--secondary-color);
    width: 16px;
}

/* Servizi Section */
.servizi {
    padding: 80px 0;
    background: var(--light-bg);
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.servizio-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.servizio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servizio-icon i {
    font-size: 2rem;
    color: var(--white);
}

.servizio-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cucina-highlight {
    padding: 4rem 0;
    background: var(--light-bg);
}

.cucina-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cucina-image {
    flex: 1;
    min-width: 0;
}

.cucina-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.cucina-text {
    flex: 1;
    min-width: 0;
}

.cucina-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cucina-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cucina-content ul {
    list-style: none;
}

.cucina-content li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.cucina-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Posizione Section */
.posizione {
    padding: 80px 0;
    background: var(--white);
}

.posizione-content {
    display: block;
}

.posizione-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.posizione-info h3 i {
    color: var(--secondary-color);
}

.posizione-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.collegamenti, .servizi-zona {
    margin-bottom: 2rem;
}

.collegamenti h4, .servizi-zona h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.collegamenti ul, .servizi-zona ul {
    list-style: none;
}

.collegamenti li, .servizi-zona li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collegamenti i, .servizi-zona i {
    color: var(--secondary-color);
    width: 20px;
}

/* Rimuovo gli stili per posizione-image */

/* Contatti Section */
.contatti {
    padding: 80px 0;
    background: var(--light-bg);
}

.contatti-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contatti-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contatto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contatto-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: var(--primary-color);
    color: var(--white);
}

.contatto-item:hover i {
    color: var(--white);
}

.contatto-item:hover h4,
.contatto-item:hover p {
    color: var(--white);
}

.contatto-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.contatto-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contatto-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Styles */
.form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.prenotazione-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Prenotazione Section */
.prenota {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.prenota-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.prenota-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.payment-info {
    margin-bottom: 3rem;
}

.payment-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-cards i {
    font-size: 2.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-cards i:hover {
    opacity: 1;
    transform: scale(1.1);
}

.prenota-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.prenota .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.prenota .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .camere-grid {
        grid-template-columns: 1fr;
    }

    .servizi-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cucina-content {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .cucina-image {
        flex: none !important;
        width: 100% !important;
        order: -1 !important;
    }
    
    .cucina-image img {
        height: 300px !important;
    }
    
    .cucina-text {
        flex: none !important;
        width: 100% !important;
    }

    .posizione-content {
        grid-template-columns: 1fr;
    }

    .contatti-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .prenota-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .camera-content,
    .form-container {
        padding: 1.5rem;
    }

    .servizio-card {
        padding: 1.5rem;
    }
}


/* Recensioni Section */
.recensioni {
    padding: 80px 0;
    background: var(--light-bg);
}

.recensioni-stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rating-stars {
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.rating-row span:first-child {
    min-width: 60px;
    color: var(--text-light);
}

.rating-row span:last-child {
    min-width: 20px;
    color: var(--text-light);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #ffd700;
    transition: width 0.3s ease;
}

.recensioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recensione-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.recensione-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recensione-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.recensione-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--primary-color);
}

.recensione-stars {
    margin-bottom: 0.25rem;
}

.recensione-stars i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.recensione-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.recensione-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.scrivi-recensione {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.scrivi-recensione h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.recensione-form .form-group {
    margin-bottom: 1.5rem;
}

.recensione-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.recensione-form input,
.recensione-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.recensione-form input:focus,
.recensione-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating .star {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating input:checked ~ .star,
.star-rating .star:hover,
.star-rating .star:hover ~ .star {
    color: #ffd700;
}

.star-rating input:checked ~ .star {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .recensioni-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-overview {
        order: 2;
    }
    
    .rating-breakdown {
        order: 1;
    }
    
    .recensioni-grid {
        grid-template-columns: 1fr;
    }
    
    .scrivi-recensione {
        margin: 0 1rem;
    }
}


/* Nascondi il link "Made with Manus" */
make-with-manus,
[class*="made-with"],
[class*="manus"],
a[href*="manus.im"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Nascondi anche eventuali elementi con testo "Made with Manus" */
*:contains("Made with Manus") {
    display: none !important;
}

