* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    color: #1d1d1f;
    line-height: 1.5;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header بسيط */
header {
    border-bottom: 1px solid #e5e5e5;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
}

.logo span {
    color: #0071e3;
}

nav a {
    text-decoration: none;
    color: #1d1d1f;
    margin-right: 24px;
    font-size: 0.9rem;
}

nav a:hover {
    color: #0071e3;
}

/* Hero بسيط */
.hero {
    background: #f5f5f7;
    border-radius: 28px;
    padding: 48px 32px;
    margin: 32px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero p {
    color: #6e6e73;
    max-width: 500px;
    margin: 0 auto 24px;
}

.btn {
    background: #0071e3;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

/* شبكة المنتجات */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid #e5e5e5;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f5f5f7;
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 16px 16px 8px;
}

.product-card .offer {
    margin: 8px 16px;
    font-size: 0.85rem;
    color: #0071e3;
    font-weight: 500;
}

.product-card .btn-sm {
    display: block;
    margin: 16px;
    text-align: center;
    background: #f5f5f7;
    color: #1d1d1f;
    padding: 8px;
    border-radius: 40px;
    text-decoration: none;
}

/* صفحة المنتج - عمودان */
.product-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 48px 0;
}

.product-gallery img {
    width: 100%;
    border-radius: 28px;
    background: #f5f5f7;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-info .desc {
    color: #6e6e73;
    margin: 16px 0;
}

.offer-badge {
    background: #f5f5f7;
    padding: 12px 16px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-links a {
    background: #f5f5f7;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 0.85rem;
}

/* فوتر */
footer {
    background: #f5f5f7;
    margin-top: 80px;
    padding: 48px 0 24px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    text-decoration: none;
    color: #6e6e73;
}

.copyright {
    text-align: center;
    padding-top: 32px;
    color: #6e6e73;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .product-two-columns {
        grid-template-columns: 1fr;
    }
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
}