
:root {
    --gold: #c5a059;
    --black: #0d0d0d;
    --white: #ffffff;
}


body {
    font-family: 'Cairo', sans-serif;
    background: radial-gradient(circle, #222, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    direction: rtl;
}


.product-card {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: 0.4s;
    opacity: 0;
}


.product-card:hover {
    transform: translateY(-10px);
}


.image-wrapper {
    position: relative;
    height: 300px;
}


.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, white, transparent);
}


.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 12px;
    z-index: 2;
}


.details {
    padding: 30px;
    text-align: center;
}


.title {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 10px 0;
}


.price-tag {
    margin-bottom: 20px;
}


.amount {
    font-size: 35px;
    font-weight: 900;
    color: var(--gold);
}


.curr {
    font-weight: bold;
    color: var(--gold);
}


.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}


.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #888;
}


.features i {
    color: var(--gold);
    margin-left: 5px;
}


.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}


.btn-whatsapp:hover {
    background: #1eb957;
    transform: scale(1.02);
}