body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #fff7fb;
}

/* ===== الهيدر ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
    color: #e91e63;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
}

.nav a:hover {
    color: #e91e63;
}

.btn-header {
    background: #e91e63;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
}

/* ===== الصفحة الرئيسية ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    color: #e91e63;
    font-size: 36px;
}

.hero p {
    color: #666;
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #e91e63;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    }
.store-title {
    text-align: center;
    padding: 40px 20px;
}

.store-title h1 {
    color: #e91e63;
    font-size: 32px;
}

.store-title p {
    color: #777;
}

/* المنتجات */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 10px;
    color: #555;
}

.card:hover {
    transform: translateY(-5px);
} 
.section-title {
    text-align: center;
    color: #e91e63;
    margin-top: 40px;
    font-size: 24px;
}
.order-section {
    text-align: center;
    margin: 60px 20px;
    padding: 40px;
    background: #fff0f6;
    border-radius: 20px;
}

.order-section h2 {
    color: #e91e63;
    margin-bottom: 10px;
}

.order-section p {
    color: #777;
    margin-bottom: 20px;
}

.order-btn {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.order-btn:hover {
    background: #c2185b;
    transform: scale(1.05);
}
.about-container {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffe6f0, #ffffff);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-container h1 {
    color: #e91e63;
    font-size: 45px;
    margin-bottom: 10px;
}

.about-container h2 {
    color: #555;
    margin-bottom: 20px;
}

.about-container p {
    color: #777;
    max-width: 600px;
    margin: 10px auto;
    line-height: 1.8;
}

.student-info {
    margin: 20px 0;
    font-size: 18px;
    color: #333;
}

.start-btn {
    display: inline-block;
    margin-top: 20px;
    background: #e91e63;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.start-btn:hover {
    background: #c2185b;
    transform: scale(1.05);
}