/* Estilos CSS para la plantilla de producto Amazon */
.product-hero {
    background: linear-gradient(135deg, hsl(0 0% 99%), hsl(220 13% 91% / 0.3), hsl(220 13% 91%));
    padding: 3rem 0 5rem;
}

.product-image {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px -4px hsl(224 15% 20% / 0.1);
    border-radius: 1rem;
}

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

.price-badge {
    background: linear-gradient(135deg, hsl(43 96% 56%), hsl(43 100% 65%));
    color: hsl(224 15% 20%);
    box-shadow: 0 0 40px hsl(43 96% 56% / 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    font-size: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, hsl(271 81% 56%), hsl(271 91% 65%));
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -10px hsl(271 81% 56% / 0.2);
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsl(43 96% 56% / 0.3);
}

.feature-card {
    background: white;
    border: 1px solid hsl(220 13% 91%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px -4px hsl(224 15% 20% / 0.1);
}

.feature-card:hover {
    border-color: hsl(271 81% 56% / 0.2);
    box-shadow: 0 10px 30px -10px hsl(271 81% 56% / 0.2);
}

.rating-stars {
    color: hsl(43 96% 56%);
    filter: drop-shadow(0 0 8px hsl(43 96% 56% / 0.4));
}

.gallery-thumb {
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: hsl(271 81% 56%);
    box-shadow: 0 10px 30px -10px hsl(271 81% 56% / 0.2);
}

.testimonial-card {
    background: linear-gradient(135deg, white, hsl(220 13% 91% / 0.2));
    border: 1px solid hsl(220 13% 91%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -4px hsl(224 15% 20% / 0.1);
}

.trust-badge {
    text-align: center;
    padding: 1rem;
}

.trust-badge svg {
    width: 2rem;
    height: 2rem;
    color: hsl(43 96% 56%);
    margin: 0 auto 0.5rem;
    display: block;
}

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

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:gap-12 { gap: 3rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-6 { padding: 1.5rem; }

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

.bg-muted { background-color: hsl(220 13% 91% / 0.3); }

.accordion {
    border: none;
}

.accordion-item {
    background: white;
    border: 1px solid hsl(220 13% 91%);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.accordion-trigger {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding-bottom: 1.5rem;
    color: hsl(215 16% 47%);
    display: none;
}

.accordion-content.active {
    display: block;
}

/* Responsivo */
@media (max-width: 768px) {
    .lg\:grid-cols-2 { grid-template-columns: 1fr; }
    .grid-cols-2 { grid-template-columns: 1fr; }
    .text-4xl { font-size: 1.875rem; line-height: 2.25rem; }
    .text-3xl { font-size: 1.5rem; line-height: 2rem; }
    .price-badge { font-size: 1.5rem; }
    .product-hero { padding: 2rem 0 3rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 0.5rem; }
    .price-badge { font-size: 1.25rem; padding: 0.5rem 1rem; }
    .cta-button { padding: 1rem 1.5rem; font-size: 1rem; }
    .feature-card { padding: 1rem; }
    .testimonial-card { padding: 1rem; }
    .trust-badge { padding: 0.5rem; }
} 