/* Estilos para producto destacado */
.featured-product {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: var(--light-color);
    border: none;
    box-shadow: none;
}

.featured-product .product-image {
    height: 100%;
    min-height: 300px;
}

.featured-product .product-info {
    padding: 3rem;
}

.featured-product h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.featured-product p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.featured-product .product-price {
    margin-bottom: 2.5rem;
}

.featured-product .current-price {
    font-size: 2.4rem;
}

/* Estilos para la sección de características destacadas */
.product-highlights {
    padding: 6rem 0;
    background-color: #fff;
}

.product-highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.highlight-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

.highlight-details h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.highlight-details > p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.highlight-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    background-color: rgba(216, 125, 29, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.highlight-cta {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .featured-product {
        grid-template-columns: 1fr;
    }
    
    .product-highlight-content {
        grid-template-columns: 1fr;
    }
    
    .highlight-image {
        order: -1;
    }
    
    .highlight-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .highlight-cta {
        flex-direction: column;
    }
    
    .highlight-cta .btn {
        width: 100%;
        text-align: center;
    }
}