/* Enhanced Page Styling for Kunhar India */

/* FAQ Page Enhancements */
.faq-page .faq-item {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-page .faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-page .faq-item h4 {
    color: #374151;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-page .faq-item h4::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
}

/* Contact Page Enhancements */
.contact-page .contact-method {
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
}

.contact-page .contact-method:hover {
    background-color: #f8fafc;
    border-left-color: #4f46e5;
}

/* Brand Story Page */
.brand-story-page .story-section {
    position: relative;
    padding-left: 1.5rem;
}

.brand-story-page .story-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6);
    border-radius: 2px;
}

/* Product Categories Page */
.product-categories-page .category-section {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.product-categories-page .category-section:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Care Guide Page */
.care-guide-page .care-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.care-guide-page .troubleshooting {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

/* Shipping Page */
.shipping-page .shipping-option,
.shipping-page .returns-section {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

.shipping-page .shipping-option:hover,
.shipping-page .returns-section:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Quality Page */
.quality-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.quality-page .features-grid ul li {
    background: linear-gradient(135deg, #dcfdf4 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #065f46;
}

/* Icons for different sections */
.page-content h2::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.5rem;
}

.faq-page h2::before { content: '❓'; }
.contact-page h2::before { content: '📞'; }
.brand-story-page h2::before { content: '🏺'; }
.product-categories-page h2::before { content: '🍽️'; }
.care-guide-page h2::before { content: '🧼'; }
.shipping-page h2::before { content: '📦'; }
.quality-page h2::before { content: '🏆'; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-content .category-section,
    .page-content .faq-item,
    .page-content .contact-method,
    .page-content .story-section {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .page-content .features-grid ul {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .sidebar,
    .action-buttons,
    .contact-card {
        display: none !important;
    }
    
    .main-content {
        width: 100% !important;
    }
    
    .page-content {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* =================================
   PAGE CONTENT STYLING
   ================================= */

/* Base page content styling */
.page-content h2 { 
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #6366f1;
    padding-left: 1rem;
}

.page-content h3 { 
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content h4 { 
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.page-content p { 
    color: #4b5563;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.page-content ul, .page-content ol { 
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content ul > li {
    margin-bottom: 0.5rem;
}

.page-content ol > li {
    margin-bottom: 0.5rem;
}

.page-content li { 
    color: #4b5563;
    line-height: 1.625;
}

.page-content a { 
    color: #6366f1;
    text-decoration: underline;
}

.page-content a:hover {
    color: #4f46e5;
}

.page-content blockquote { 
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f9fafb;
    font-style: italic;
    color: #374151;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Section-specific styling */
.page-content .category-section {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.page-content .category-section:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.page-content .features-grid ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-left: 0;
}

@media (min-width: 768px) {
    .page-content .features-grid ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-content .features-grid li {
    background-color: #f0fdf4;
    color: #166534;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.page-content .faq-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.page-content .contact-method {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.page-content .story-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.page-content .story-section:last-child {
    border-bottom: none;
}

.page-content .shipping-option,
.page-content .returns-section {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-content .shipping-option:hover,
.page-content .returns-section:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.page-content .care-section {
    background: linear-gradient(to right, #dbeafe, #e0e7ff);
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content .troubleshooting {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.page-content .refund-info {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Contact card styling */
.contact-card-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: 2px solid #2563eb !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-1px) !important;
}

.contact-card-button i,
.contact-card-button span {
    color: #ffffff !important;
}

/* Ensure all contact card text is visible */
.contact-card .contact-info-item {
    background: rgba(249, 250, 251, 0.8) !important;
    border: 1px solid #e5e7eb !important;
}

.contact-card .contact-info-item span {
    color: #111827 !important;
    font-weight: 600 !important;
}


