body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    overflow-x: hidden;
    background: linear-gradient(145deg, #0a2f44 0%, #0c3b55 50%, #0f4a6e 100%);
    min-height: 100vh;
}

/* BACKGROUND OVERLAY */
.bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("assets-home/hero.jpg") center/cover no-repeat;
    filter: blur(8px);
    opacity: 0.15;
    z-index: -1;
}

/* HEADER */
.reviews-header {
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    margin: 20px auto;
    padding: 20px;
    max-width: 400px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    position: relative;
    color: #0a2f44;
}

.reviews-header::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: translateY(40px);
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(2px);
}

.review-card.show {
    transform: translateY(0);
    opacity: 1;
}

/* TOP */
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(30, 106, 143, 0.2);
}

.date {
    color: #1e6a8f;
    font-weight: 500;
}

.votes {
    display: flex;
    gap: 15px;
}

.votes div {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(30, 106, 143, 0.1);
}

.votes div:hover {
    background: rgba(30, 106, 143, 0.2);
    transform: scale(1.05);
}

.like.active {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.dislike.active {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* IMAGES */
.client {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff8c42;
    margin-bottom: 10px;
}

.product {
    width: 100%;
    max-width: 140px;
    margin: 10px auto;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* COMMENT */
.comment {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
    padding: 0 10px;
}

/* FLOATING BUY BUTTON (GREEN) */
.floating-buy {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    z-index: 1000;
}

.floating-buy:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* MOBILE */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .reviews-header {
        font-size: 20px;
        margin: 15px;
        padding: 15px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .floating-buy {
        padding: 10px 18px;
        font-size: 13px;
        bottom: 70px;
    }
}