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

:root {
    --primary-color: #030000;      /* Primario Scuro */
    --secondary-color: #1A1A1A;    /* Grigio Scuro */
    --accent-color: #E6619F;       /* Primario Acceso */
    --highlight-color: #FF8603;    /* Highlight Secondario */
    --accent-deep: #B04079;        /* Accent Profondo */
    --light-gray: #E5E5E5;         /* Grigio Chiaro */
    --white: #FFFFFF;              /* Bianco Puro */
    --text-dark: #030000;
    --text-light: #1A1A1A;
    --text-on-dark: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.15);
    
    --font-heading: 'Typewriter Serial Medium', 'Courier New', 'Courier', monospace;
    --font-body: 'Inter', sans-serif;
    
    --section-padding: 80px 0;
    --container-max-width: 1200px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

* {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
}

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

.nav-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-genepi {
    color: var(--text-dark);
}

.logo-nk {
    color: var(--accent-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(3, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.4) 100%), 
                url('./IMG/IMG-20210705-WA0004.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.logo-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.title-genepi {
    color: var(--white);
}

.title-nk {
    color: var(--accent-color);
}



.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.65);
    padding: 1.2rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 97, 159, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    min-width: 180px;
    text-align: center;
}

.hero-btn:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 97, 159, 0.4);
}

.hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(230, 97, 159, 0.3);
}





/* Sections */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

/* Storia Section */
.storia {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.storia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.storia-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.storia-text h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.storia-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.storia-cards {
    display: grid;
    gap: 1.5rem;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--accent-color);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-light);
}

/* Coltivazione Section */
.coltivazione {
    padding: var(--section-padding);
    background: var(--white);
}

.coltivazione-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.coltivazione-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.coltivazione-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
}

.feature h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}

.numbers-section {
    display: grid;
    gap: 1.5rem;
}

.number-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    border-left: 4px solid var(--accent-color);
    border: 1px solid rgba(230, 97, 159, 0.1);
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow);
    border-left-width: 6px;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
}

.number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Galleria Section */
.galleria {
    padding: var(--section-padding);
    background: var(--light-gray);
}

/* Prodotti Section - Override per sfondo bianco */
#prodotti.galleria {
    background: var(--white);
}

/* Prodotti Grid - Layout 2x2 */
#prodotti .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 1100px;
}

#prodotti .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
    border: 3px solid var(--accent-color);
}

#prodotti .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#prodotti .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#prodotti .gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Sold Out Badge */
.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
    white-space: nowrap;
    backdrop-filter: blur(5px);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    height: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1 !important;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    padding: 2rem 2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 3;
}

/* Controlli Carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 97, 159, 0.8);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Indicatori */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(230, 97, 159, 0.05);
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: var(--accent-color);
}

.faq-icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2.5rem 2rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--light-gray);
}

/* Contatti Section */
.contatti {
    padding: var(--section-padding);
    background: var(--white);
}

.contatti-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contatti-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contatti-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 20px;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #2A2A2A 0%, #3C3C3C 100%);
    color: var(--white);
    padding: 2rem 0;
    border-top: 3px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.logo-genepi-footer {
    color: var(--white);
}

.logo-nk-footer {
    color: var(--accent-color);
}

.footer-logo p {
    color: var(--accent-color);
    font-style: italic;
}


.footer-info {
    text-align: right;
    margin-right: -2rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--light-gray);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-genepi,
    .title-nk {
        display: inline;
    }
    
    /* Hero buttons responsive - tablet */
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .storia-content,
    .coltivazione-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .numbers-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 2rem 1.5rem;
        max-height: 400px;
    }
    
    /* Prodotti responsive - tablet */
    #prodotti .gallery-grid {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    #prodotti .gallery-item {
        min-height: 350px;
    }
    
    /* Carousel responsive - tablet */
    .carousel-container {
        max-width: 100%;
        height: 500px;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn-prev {
        left: 15px;
    }
    
    .carousel-btn-next {
        right: 15px;
    }
    
    .carousel-caption {
        font-size: 1rem;
        padding: 1.5rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    body, html {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-genepi,
    .title-nk {
        font-size: inherit;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Hero buttons responsive - mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 200px;
        width: 100%;
        max-width: 250px;
    }
    
    .card,
    .number-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Prodotti responsive - mobile */
    #prodotti .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    #prodotti .gallery-item {
        min-height: 300px;
        aspect-ratio: 3/4;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    /* FAQ mobile - altezza illimitata per leggibilità completa */
    .faq-item.active .faq-answer {
        max-height: none;
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .faq-answer {
        transition: max-height 0.5s ease, padding 0.3s ease;
    }
    
    .faq-answer p {
        line-height: 1.7;
        font-size: 0.95rem;
    }
    
    /* Carousel responsive - mobile */
    .carousel-container {
        height: 300px;
        margin: 0.5rem;
        border-radius: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-caption {
        font-size: 0.9rem;
        padding: 1rem 1rem 1.5rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Product Lightbox Navigation */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.product-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.product-lightbox img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.product-lightbox-caption {
    padding: 1rem;
    background: var(--white);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    font-size: 1.1rem;
}

.product-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 97, 159, 0.8);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.product-lightbox-nav:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.product-lightbox-prev {
    left: 20px;
}

.product-lightbox-next {
    right: 20px;
}

.product-lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.product-lightbox-close:hover {
    background: var(--accent-color);
}

.product-lightbox-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 