/* Edger Product Page Styles */

.product-hero {
    padding: 120px 0 80px;
    min-height: 600px;
}

.product-main-image {
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.carousel-item picture {
    display: block;
    width: 100%;
}

.carousel-item picture img {
    width: 100%;
    height: auto;
}

.product-image-container {
    position: relative;
    padding: 20px;
}

.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
}

.shipping-info {
    font-size: 0.9rem;
    font-style: italic;
}

.trust-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.trust-badge {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.feature-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-box h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #555;
}

.specs-table {
    border: 1px solid #e0e0e0;
}

.specs-table table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.specs-table table tr:last-child td {
    border-bottom: none;
}

.info-box {
    border-left: 4px solid #217ec1;
}

.info-box h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-box p {
    color: #555;
    line-height: 1.8;
}

.btn-white {
    background: white;
    color: #4458dc;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #4458dc;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .product-hero {
        padding: 80px 0 60px;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-main-image {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .product-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shipping-info {
        margin-top: 5px;
        margin-left: 0 !important;
    }
    
    .trust-badges {
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Enhanced credibility elements */
.certification-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.certification-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-badge i {
    font-size: 1.5rem;
    color: #4458dc;
}

.certification-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.customer-reviews .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #217ec1, #1a6ba0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
}

.reviewer-info h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
}

.review-stars {
    color: #FF9500;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.verified-purchase {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #4CAF50;
    margin-top: 15px;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i {
    color: #217ec1;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.7;
}

/* Hero value props */
.hero-value-props {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.hero-value-props .value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
}

.hero-value-props .value-prop i {
    color: #4CAF50;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #217ec1;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-size: 0.95rem;
    padding: 10px 0;
}

.stock-indicator .dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .customer-reviews {
        padding: 60px 0;
    }
    
    .review-card {
        margin-bottom: 20px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px 15px;
    }
    
    .hero-value-props {
        flex-direction: column;
        gap: 10px;
    }
}
