/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */

/* Main reviews container */
.woocommerce-Reviews,
#reviews,
.woocommerce-tabs .panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(251,248,243,0.98) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

/* Elegant top border accent */
.woocommerce-Reviews::before,
#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: black;
    background-size: 200% 100%;
    animation: luxury-shine 4s ease-in-out infinite;
}

@keyframes luxury-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.main-navigation,
.main-navigation ul,
.main-navigation ul li {
    position: relative;
    z-index: 999 !important;

}

/* Reviews heading */
.woocommerce-Reviews h2,
#reviews h2,
.reviews-title {
    color: black;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.woocommerce-Reviews h2::after,
#reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background:black;
}

/* No reviews message styling */
.woocommerce-info,
.woocommerce-message {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    border-left: 4px solid #2196f3;
    color: #1565c0;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 30px 0;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
    position: relative;
    overflow: hidden;
}

.woocommerce-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2196f3, #1976d2);
}

.woocommerce-info .info-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Review form styling */
#review_form_wrapper,
.comment-form-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#review_form h3,
.comment-form h3 {
    color:black;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Star rating section */
.comment-form-rating {
    margin-bottom: 25px;
}

.comment-form-rating label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    display: inline-block;
}

.stars a {
    color: #ddd;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.stars a:hover,
.stars a.active {
    color: #d4af37;
    transform: scale(1.1);
}

.star-rating {
    color: #d4af37;
    font-size: 18px;
    margin: 10px 0;
}

/* Review textarea styling */
.comment-form-comment {
    margin-bottom: 25px;
}

.comment-form-comment label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#comment,
textarea#comment {
    width: 100%;
    min-height: 150px;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    resize: vertical;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

#comment:focus,
textarea#comment:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

#comment::placeholder,
textarea#comment::placeholder {
    color: #95a5a6;
    font-style: italic;
    font-weight: 300;
}

/* Submit button styling */
#submit,
input[type="submit"] {
    background: black;
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    float: right;
}

#submit:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

#submit:active,
input[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Form row styling for additional fields */
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Existing reviews display */
.commentlist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.commentlist .comment {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.commentlist .comment .comment-text {
    padding-left: 0;
}

.commentlist .comment .meta {
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 10px;
}

.commentlist .comment .meta strong {
    color: #d4af37;
    font-weight: 600;
}

.commentlist .comment .description p {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

/* Clear floats */
.woocommerce-Reviews form::after,
#review_form::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-Reviews,
    #reviews {
        padding: 25px 20px;
        margin: 20px 10px;
    }
    
    .woocommerce-Reviews h2,
    #reviews h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    #submit,
    input[type="submit"] {
        width: 100%;
        float: none;
        margin-top: 15px;
    }
    
    .stars a {
        font-size: 20px;
        margin-right: 3px;
    }
}

@media (max-width: 480px) {
    .woocommerce-Reviews,
    #reviews {
        padding: 20px 15px;
        margin: 15px 5px;
    }
    
    .woocommerce-Reviews h2,
    #reviews h2 {
        font-size: 1.5rem;
    }
    
    #comment,
    textarea#comment {
        min-height: 120px;
        padding: 15px;
    }
}

/* Additional luxury touches */
.woocommerce-Reviews .luxury-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 30px 0;
}

/* Animation for form elements */
.comment-form-rating,
.comment-form-comment,
.comment-form-author,
.comment-form-email {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.comment-form-rating { animation-delay: 0.1s; }
.comment-form-comment { animation-delay: 0.2s; }
.comment-form-author { animation-delay: 0.3s; }
.comment-form-email { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom checkbox and required field styling */

.woocommerce-info, .woocommerce-noreviews, p.no-comments {
    background-color: #d4af37 !important;
}
.form-submit {
    text-align: right;
    margin-top: 25px;
}

/* Tabs integration if using WooCommerce tabs */
.woocommerce-tabs .tabs {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.woocommerce-tabs .tabs li {
    border: none;
    background: none;
}

.woocommerce-tabs .tabs li a {
    color: #7f8c8d;
    padding: 15px 25px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
    color: #d4af37;
    border-bottom: 2px solid black;
}

/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
/* ===== AL FARASHA LUXURY REVIEWS SECTION ===== */
