/* Amazon Reviews Section */
.amazon-reviews-section {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.amazon-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.amazon-review {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
}

.amazon-reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.amazon-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: #555;
}

.amazon-username {
    font-weight: 500;
    color: #0F1111;
}

.amazon-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.amazon-stars {
    color: #FFA41C;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.amazon-verified {
    font-size: 0.8rem;
    color: #007600;
    background-color: #f0f2f2;
    padding: 2px 6px;
    border-radius: 3px;
}

.amazon-review-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0F1111;
}

.amazon-review-date {
    font-size: 0.8rem;
    color: #565959;
    margin-bottom: 0.75rem;
}

.amazon-review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1rem;
}

.amazon-review-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.amazon-helpful-btn {
    background-color: #f0f2f2;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    color: #0F1111;
    cursor: pointer;
    transition: all 0.2s;
}

.amazon-helpful-btn:hover {
    background-color: #e7e9ec;
}

.amazon-share-btn {
    background-color: transparent;
    border: none;
    font-size: 0.8rem;
    color: #007185;
    cursor: pointer;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

.amazon-share-btn i {
    margin-right: 0.25rem;
}

.amazon-report-link {
    font-size: 0.8rem;
    color: #565959;
    text-decoration: none;
    margin-left: auto;
}

.amazon-report-link:hover {
    text-decoration: underline;
    color: #c45500;
}

.amazon-reviews-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.show-more-reviews-btn {
    background-color: #FFD814;
    border: 1px solid #FCD200;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0F1111;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.show-more-reviews-btn i {
    margin-right: 0.5rem;
}

.show-more-reviews-btn:hover {
    background-color: #F7CA00;
}

/* Modal Styles */
.reviews-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.reviews-modal-content {
    background-color: #fff;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.reviews-modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F1111;
    margin: 0;
}

.reviews-modal-close {
    color: #aaa;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
}

.reviews-modal-close:hover {
    color: #555;
}

.reviews-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.reviews-modal-body .amazon-review {
    margin-bottom: 1.5rem;
    box-shadow: none;
    border-bottom: 1px solid #e7e7e7;
    border-radius: 0;
    padding: 0 0 1.5rem 0;
}

.reviews-modal-body .amazon-review:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.amazon-reviews-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e7e7e7;
}

.amazon-reviews-link {
    color: #007185;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.amazon-reviews-link:hover {
    color: #c45500;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .amazon-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}
