/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8dcc4 100%);
    min-height: 100vh;
    padding: 20px;
    direction: rtl;
}
.container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}
.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #d4af37;
    object-fit: cover;
}
.brand-name {
    font-size: 2.5em;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.brand-subtitle {
    font-size: 1.2em;
    color: #d4af37;
    font-weight: 300;
}
.store-button {
    margin: 30px 0;
}
.btn-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #6b8e6f 0%, #5a7a5e 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 142, 111, 0.3);
}
.btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 142, 111, 0.4);
}
.btn-store i {
    font-size: 2em;
}
.btn-store .btn-title {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}
.btn-store .btn-subtitle {
    display: block;
    font-size: 0.9em;
    opacity: 0.9;
}
.divider {
    text-align: center;
    margin: 30px 0;
    color: #d4af37;
    font-size: 1.2em;
}
.section-title {
    text-align: center;
    font-size: 1.3em;
    color: #333;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.social-btn i {
    font-size: 1.5em;
}
.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbb 100%);
}
.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}
.tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.contact-btn i {
    font-size: 1.3em;
}
.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.email {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}
.phone {
    background: linear-gradient(135deg, #4285f4 0%, #2a56c6 100%);
}
.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9em;
}
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    .brand-name {
        font-size: 2em;
    }
    .logo {
        width: 100px;
        height: 100px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.container > * {
    animation: fadeIn 0.6s ease-out;
}