.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-color);
}

.producto-detalle {
    padding: 2rem 0;
}

.producto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.producto-imagenes {
    position: relative;
}

.imagen-principal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.miniaturas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.miniaturas img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.miniaturas img:hover {
    opacity: 0.8;
}

.producto-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.producto-detalles h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.producto-detalles ul {
    list-style: none;
    margin-bottom: 2rem;
}

.producto-detalles li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.producto-detalles li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.social-share {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-share a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: var(--secondary-color);
}

/* Formulario de Consulta */
.consulta-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.acciones-producto {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-whatsapp,
.btn-consulta {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-consulta {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover,
.btn-consulta:hover {
    transform: translateY(-2px);
}

.producto-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--light-gray);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    padding: 1rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tab-content.active {
    display: block;
}

.social-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-share span {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .acciones-producto {
        flex-direction: column;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }
}

.social-share a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .producto-grid {
        grid-template-columns: 1fr;
    }

    .miniaturas {
        grid-template-columns: repeat(3, 1fr);
    }

    .miniaturas img {
        height: 80px;
    }
}