/**
 * Lina Store - Custom Styling (landing.css)
 */

:root { 
    --gold: #D4AF37; 
    --dark: #0A0A0A; 
}

body { 
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--dark) 100%); 
    color: #fff; 
    font-family: 'Segoe UI', sans-serif; 
    margin: 0; 
    display: flex; 
    justify-content: center; 
    align-items: flex-start; 
    min-height: 100vh; 
    padding: 20px 10px; 
}

.card { 
    width: 100%;           
    max-width: 550px;      
    text-align: center; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid #333; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    overflow: hidden; 
    padding-bottom: 30px;
}

.top-banner { 
    width: 100%; 
    display: block; 
    margin-bottom: 20px; 
}

.name { 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: var(--gold); 
    margin-bottom: 10px; 
    text-transform: uppercase; 
}

.title { 
    color: #ccc; 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    padding: 0 20px; 
    line-height: 1.4; 
    font-style: italic; 
}

/* الأزرار */
.btn { 
    display: block; 
    margin: 12px auto; 
    padding: 14px; 
    width: 90%; 
    color: white; 
    text-decoration: none; 
    border-radius: 12px; 
    font-weight: 600; 
    text-align: center; 
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    box-sizing: border-box;
}

.btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

.btn-rb { background: #000; } 
.btn-vs { background: #1a2a6c; } 
.btn-amzn { background: #232f3e; border-color: #ff9900; color: #ff9900; } 

.connect-text { 
    color: var(--gold); 
    font-size: 0.9rem; 
    margin-top: 25px; 
    margin-bottom: 15px; 
    font-weight: 600; 
}

/* أيقونات التواصل الاجتماعي */
.social-links { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 25px; 
    border-top: 1px solid #333; 
    padding-top: 20px; 
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links img { 
    width: 45px; 
    height: 45px; 
    object-fit: contain; 
    display: block;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.social-links a:hover img,
.social-links a:active img { 
    transform: translateY(-10px) rotate(360deg); 
    filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.5));
}

.social-links a:active {
    transform: scale(0.9);
}

/* تنسيق الحاوية للأزرار الفرعية */
.sub-deals {
    display: flex;
    justify-content: center;
    gap: 10px; /* المسافة بين الزرين */
    margin-top: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* تنسيق الأزرار الصغيرة (Men/Women) */
.sub-btn {
    flex: 1; /* لجعل الزرين بنفس الحجم */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #fff;
    text-decoration: none;
    padding: 8px 5px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* تعديل بسيط لزر Shop Now ليتناسب مع التصميم الجديد */
.shop-now-btn {
    margin-bottom: 5px !important;
}

/* تنسيق الزر الجديد بلمسة ربيعية وردية فاقعة */
.btn-spring { 
    background: #232f3e; /* نفس لون خلفية زر أمازون */
    border: 1.5px solid #f06292; /* إطار وردي فاقع مستوحى من شعار العرض */
    color: #f06292; /* لون النص وردي ليتناسب مع العرض */
    display: block;
    margin: 12px auto;
    padding: 14px;
    width: 90%;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* تأثير التمرير (نفس تأثير بقية الأزرار ولكن بتوهج وردي) */
.btn-spring:hover, .btn-spring:active { 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(240, 98, 146, 0.4); /* توهج وردي ربيعي */
    background: #2b3949; /* تفتيح الخلفية قليلاً */
    filter: brightness(1.1);
}

/* تنسيق النص الصغير أسفل العنوان لزر الربيع */
.btn-spring span {
    font-size: 0.75rem;
    opacity: 0.8;
}


