/* Product Hero Section */
.product-hero {
    padding: 160px 0 100px;
    background: var(--background);
}

.product-hero h1 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.product-hero .lead {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.product-image {
    position: absolute;
    padding: 1rem;
    z-index: 0;
}

.termy {
    width: 650px;
    bottom: -700px;
}

.impresora-ticket{
    bottom: -250px;
}

.touch-screen{
    bottom: -330px;
}

.nativa-3 {
    width: 600px;
    bottom: -450px;
}

.alpha-s{
    width: 750px;
    bottom: -320px;
    left: -100px;
}

.product-description {
    padding: 60px 0;
    background: var(--background);
}

.product-description p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.product-features-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: var(--light-background);
}

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(156,60,233,0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.product-configurations {
    padding: 100px 0;
    background: var(--light-background);
}

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

.config-item {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.config-item:hover {
    background: var(--gradient);
    color: white;
}

.config-item span {
    font-size: 1.2rem;
    font-weight: 500;
}

.config-item span:nth-child(2) {
    font-size: 0.9rem;
    color: var(--light-text);
    display: block;
    margin-top: 0.5rem;
}

.config-item:hover span:nth-child(2) {
    color: white;
}

/* Product View Section */
.product-view {
    padding: 100px 0;
    background: var(--light-background);
}

.product-view h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.product-image-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-image-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(156,60,233,0.2);
}

.product-image-large img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.feature-list .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Admin Panel Section */
.admin-panel {
    padding: 100px 0;
    background: var(--background);
}

.admin-panel h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

/* Galería de Producto */
.product-gallery {
    padding: 60px 0;
    background: var(--light-background);
}

.product-gallery h2 {
    font-weight: 600;
    color: var(--text-color);
}

.gallery-item {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(156,60,233,0.2);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
}

.gallery-item:hover .image-overlay {
    background: rgba(156,60,233,0.9);
}

/* Contacto Section */
.contact-section {
    padding: 100px 0;
    background: var(--background);
}

.contact-section .lead {
    font-weight: 500;
    color: var(--text-color);
}

.contact-section .btn-primary {
    font-weight: 500;
    border: none;
    transition: var(--transition);
}

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

    .product-image {
        position: relative;
        padding: 2rem;
        border-radius: 20px;
        margin: auto;
    }

    .termy{
        width: 100%;
        bottom: 0;
    }

    .touch-screen{
        bottom: 0;
    }

    .impresora-ticket{
        bottom: 0px;
    }

    .nativa-3{
        width: 100%;
        bottom: 0;
    }

    .alpha-s{
        width: 100%;
        bottom: 0;
        left: 0;
    }

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

    .product-hero h1 {
        font-size: 2.5rem;
    }

    .product-hero .lead {
        font-size: 1.2rem;
    }

    .product-image {
        margin-top: 2rem;
    }

    .product-view,
    .admin-panel,
    .product-gallery,
    .contact-section {
        padding: 60px 0;
    }

    .product-view h3,
    .admin-panel h3 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    .product-image-large {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {

    .product-hero h1 {
        font-size: 1.9rem;
    }

    .feature-item {
        font-size: 1rem;
    }

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

    .product-view h3,
    .admin-panel h3 {
        font-size: 1.5rem;
    }

    .product-view p,
    .admin-panel p {
        font-size: 1rem;
    }

    .feature-list .feature-item {
        font-size: 1rem;
    }

    .gallery-item,
    .feature-image-card {
        margin-bottom: 1.5rem;
    }
}

