/* إعدادات الخطوط والخلفية */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;800&display=swap');

.saudi-cod-theme {
    font-family: 'Tajawal', sans-serif;
    background-color: #f4f7f6;
    color: #111;
    max-width: 500px; /* تصميم مخصص للهواتف */
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* شريط الثقة */
.trust-bar {
    background-color: #0f172a;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* نصوص المنتج */
.product-showcase {
    padding: 20px;
}
.product-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* منطقة السعر */
.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 18px;
}
.new-price {
    color: #16a34a;
    font-size: 28px;
    font-weight: 800;
}
.discount-badge {
    background-color: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* الصورة والمميزات */
.main-product-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.benefits-box {
    background-color: #f0fdf4;
    border: 1px dashed #16a34a;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
}
.benefits-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefits-box li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #334155;
}

/* زر الطلب الملتصق (Sticky CTA) */
.sticky-cta {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    width: 100%;
    border: none;
    padding: 18px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    transition: transform 0.2s;
}
.sticky-cta:active {
    transform: scale(0.98);
}
