body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    overflow-x: hidden;
}

/* BACKGROUND */
.bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("assets-home/hero.jpg") center/cover no-repeat;
    filter: blur(8px);
    opacity: 0.2;
    z-index: -1;
}

/* HEADER */
.reviews-header {
    background: linear-gradient(135deg,#ffffff,#f8f8f8);
    margin: 20px auto;
    padding: 15px;
    max-width: 400px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

.reviews-header::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg,#ff7a00,#ff3d00);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

/* CARD */
.review-card {
    background: white;
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(40px);
    opacity: 0;
    transition: 0.5s;
}

.review-card.show {
    transform: translateY(0);
    opacity: 1;
}

/* TOP */
.review-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
}

.date {
    color: #777;
}

.votes {
    display: flex;
    gap: 10px;
}

.votes div {
    cursor: pointer;
}

/* IMAGES */
.client {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.product {
    width: 100%;
    max-width: 140px;
    margin: auto;
    border-radius: 10px;
}

/* ADD REVIEW 
.add-review {
    margin: 20px;
    display: flex;
    gap: 10px;
}

.add-review input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.add-review button {
    padding: 10px 15px;
    border: none;
    background: #38b000;
    color: white;
    border-radius: 8px;
}
*/

/* FLOAT BUTTON */
.floating-buy {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg,#7ed957,#38b000);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 500px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}