/* Mockup_hero.css */
.phone-container {
    position: relative;
    width: 280px;
    height: 580px;
    margin: auto;
    background: #1a1a1a;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* زر الصوت والباور الجانبي */
.phone-container::after {
    content: '';
    position: absolute;
    left: -11px;
    top: 100px;
    width: 3px;
    height: 50px;
    background: #444;
    border-radius: 5px 0 0 5px;
}

/* الكاميرا الأمامية (الكبسولة) */
.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* محتوى الشاشة (واجهة المتجر) */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    overflow-y: auto;
    padding: 50px 15px 15px;
    direction: rtl;
}

/* تصميم داخلي للمتجر (داخل الشاشة) */
.store-header {
    height: 120px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
    color: white;
}

.store-search {
    width: 100%;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin-top: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-card {
    height: 140px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    padding: 10px;
}

.product-img {
    height: 70px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 8px;
}

.product-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 5px;
}