/* Custom Product Reviews Section */
.custom-product-reviews {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.custom-product-reviews .review-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #e8e0d5 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0d5c7;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.custom-product-reviews .review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b6f47, #a68660, #8b6f47);
}

.custom-product-reviews .review-title {
    font-size: 28px;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 12px;
    font-family: inherit;
}

.custom-product-reviews .review-subtitle {
    font-size: 16px;
    color: #6b5b4d;
    margin-bottom: 30px;
    line-height: 1.5;
}

.custom-product-reviews .share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-product-reviews .share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.custom-product-reviews .share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.custom-product-reviews .share-button.facebook {
    background: #1877f2;
    color: white;
}

.custom-product-reviews .share-button.facebook:hover {
    background: #166fe5;
    color: white;
}

.custom-product-reviews .share-button.threads {
    background: #000;
    color: white;
}

.custom-product-reviews .share-button.threads:hover {
    background: #333;
    color: white;
}

.custom-product-reviews .share-button i {
    margin-right: 8px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-product-reviews {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .custom-product-reviews .review-section {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .custom-product-reviews .review-title {
        font-size: 24px;
    }
    
    .custom-product-reviews .review-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .custom-product-reviews .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .custom-product-reviews .share-button {
        width: 100%;
        max-width: 250px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .custom-product-reviews .review-section {
        padding: 25px 15px;
    }
    
    .custom-product-reviews .review-title {
        font-size: 20px;
    }
    
    .custom-product-reviews .review-subtitle {
        font-size: 13px;
    }
}

/* Animation Effects */
.custom-product-reviews .review-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect cho section */
.custom-product-reviews .review-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* Integration với Flatsome theme */
.product-page .custom-product-reviews {
    margin-top: 50px;
}

.single-product .custom-product-reviews {
    clear: both;
    width: 100%;
}