/* Estilos para gradientes en vista de producto */
.product-gradient-placeholder {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
}

.product-gradient-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.product-gradient-placeholder .product-icon {
    font-size: 4rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.thumbnail-gradient-placeholder {
    width: 100%;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-gradient-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.thumbnail-gradient-placeholder .product-icon {
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.related-product-gradient {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.related-product-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.related-product-gradient .product-icon {
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Debug para ver los pros_cons */
.debug-pros-cons {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-family: monospace;
    font-size: 12px;
    color: #ccc;
}

/* Estilos adicionales específicos para la página */
.amazon-cta-button {
    background: linear-gradient(135deg, #ff9500, #ff7b00);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 149, 0, 0.3);
    border: 2px solid transparent;
    display: block;
}

.amazon-cta-button:hover {
    background: linear-gradient(135deg, #ff7b00, #e6690a);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 149, 0, 0.5);
    text-decoration: none;
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    position: relative;
    z-index: 2;
}

.button-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.amazon-cta-button:hover .button-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg) scale(1.1);
}

.button-text {
    flex: 1;
    margin: 0 1.5rem;
    text-align: center;
}

.button-main {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.button-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.button-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.amazon-cta-button:hover .button-arrow {
    transform: translateX(4px);
}
