/* 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);
}

.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;
}
