/* ============================================ */
/* VOICE SEARCH OPTIMIZATION STYLES */
/* ============================================ */

/* Speakable Content - Product Details */
.speakable-content {
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #16bcdc;
    margin-bottom: 30px;
}

.speakable-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.speakable-content .price-info {
    font-size: 18px;
    margin-bottom: 10px;
}

.speakable-content .price-label {
    color: #16bcdc;
    font-weight: bold;
}

.speakable-content .price-value {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.speakable-content .price-original {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.speakable-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.speakable-content .stock-info {
    font-size: 15px;
}

.speakable-content .stock-available {
    color: #27ae60;
}

.speakable-content .stock-unavailable {
    color: #e74c3c;
}

.speakable-content .warranty-info {
    color: #3498db;
}

.speakable-content .brand-info {
    color: #555;
}

/* Featured Snippet Box */
.featured-snippet-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.featured-snippet-box .header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.featured-snippet-box .header i {
    font-size: 24px;
    margin-right: 12px;
}

.featured-snippet-box h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.featured-snippet-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.5);
    }
}

/* Category FAQ Section */
.category-faq-section {
    margin-top: 50px;
    padding: 40px 20px;
    background: #f8f9fa;
}

.category-faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.category-faq-section h2 i {
    color: #16bcdc;
    margin-right: 10px;
}

.faq-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(22, 188, 220, 0.2);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #16bcdc;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.faq-card:hover h3 {
    color: #14a9d0;
}

.faq-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Product FAQ Section (from partial view) */
.product-faq-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.product-faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.product-faq-section h2 i {
    color: #16bcdc;
    margin-right: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 188, 220, 0.15);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #16bcdc;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.faq-item:hover h3 {
    color: #14a9d0;
}

.faq-item h3 i {
    font-size: 14px;
    margin-right: 8px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.faq-cta {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #16bcdc 0%, #14a9d0 100%);
    border-radius: 8px;
    text-align: center;
}

.faq-cta p {
    color: white;
    font-size: 16px;
    margin: 0;
}

.faq-cta i {
    margin-right: 8px;
}

.faq-cta a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.faq-cta a:hover {
    text-decoration: none;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .speakable-content {
        padding: 20px;
    }
    
    .speakable-content h1 {
        font-size: 24px;
    }
    
    .featured-snippet-box {
        padding: 18px;
    }
    
    .category-faq-section {
        padding: 30px 15px;
    }
    
    .category-faq-section h2 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .speakable-content {
        padding: 15px;
    }
    
    .speakable-content h1 {
        font-size: 22px !important;
    }
    
    .speakable-content .price-value {
        font-size: 20px;
    }
    
    .speakable-content p {
        font-size: 14px;
    }
    
    .featured-snippet-box {
        padding: 15px;
    }
    
    .featured-snippet-box h3 {
        font-size: 16px;
    }
    
    .featured-snippet-box p {
        font-size: 14px;
    }
    
    .category-faq-section {
        padding: 30px 15px;
    }
    
    .category-faq-section h2 {
        font-size: 22px;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-card h3 {
        font-size: 16px;
    }
    
    .faq-card p {
        font-size: 14px;
    }
    
    .product-faq-section {
        padding: 20px 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .speakable-content h1 {
        font-size: 20px !important;
    }
    
    .speakable-content .price-value {
        font-size: 18px;
    }
    
    .featured-snippet-box .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .featured-snippet-box .header i {
        margin-bottom: 8px;
    }
    
    .category-faq-section h2 {
        font-size: 20px;
    }
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */

@media print {
    .featured-snippet-box {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd;
    }
    
    .faq-item,
    .faq-card {
        page-break-inside: avoid;
    }
}
