:root {
    --primary-color: #3B82F6;
    --primary-dark: #1E3A8A;
    --primary-light: #60A5FA;
    --primary-rgb: 59, 130, 246;
    --primary-dark-rgb: 30, 58, 138;
    --secondary-color: #ffffff;
    --text-color: #ffffff;
    --background-color: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-start: #1E3A8A;
    --gradient-middle: #3B82F6;
    --gradient-end: #60A5FA;
    --section-gradient: linear-gradient(135deg, 
        rgba(44, 26, 53, 0.95) 0%, 
        rgba(116, 68, 134, 0.85) 30%, 
        rgba(155, 109, 183, 0.75) 70%, 
        rgba(116, 68, 134, 0.85) 100%
    );
    --blue-gradient: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%,
        rgba(30, 58, 138, 0.85) 30%,
        rgba(59, 130, 246, 0.75) 70%,
        rgba(30, 58, 138, 0.85) 100%
    );
}

/* تنسيقات القائمة الجانبية */
/* تم حذف تنسيقات القائمة الجانبية لأنها غير مستخدمة في store-profile.html */

/* تنسيقات المحتوى الرئيسي */
.main-content {
    min-height: 100vh;
    padding-top: 0;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
        var(--light-bg);
}

.main-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* تنسيقات قسم الملف الشخصي */
.profile-section {
    position: relative;
    min-height: 700px;
    padding: 5rem 2rem;
    color: #fff;
}

.profile-section .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: stretch;
    padding: 0;
    max-width: 100%;
}

.profile-content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
}

.profile-info h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-info .store-category {
    color: #fff !important;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.store-details {
    margin-top: 2rem;
    color: #fff;
}

.profile-content-wrapper .store-description {
    display: block;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.profile-content-wrapper .store-description:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-value {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.rating-count {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.badge.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge.verified {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #fff;
    padding: 0.4rem;
    border-radius: 50%;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.badge.verified:hover {
    transform: scale(1.1);
}

.badge.verified i {
    color: #fff;
    font-size: 1rem;
}

.badge i {
    color: #fff;
    font-size: 1.1rem;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem; /* تقليل المسافة بين العناصر */
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.profile-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    background-size: 30px 30px;
    animation: patternMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.profile-image {
    width: 150px; /* تقليل حجم الصورة قليلاً */
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.5s ease;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        var(--accent-color),
        var(--primary-light)
    );
    z-index: -1;
    animation: rotateGradient 4s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.profile-info h1,
.profile-info .store-category,
.store-description,
.meta-label,
.meta-value,
.rating-value,
.rating-count {
    color: #fff;
}

.store-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.meta-item i {
    font-size: 1.5rem;
    color: #ffffff;
}

.meta-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.store-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: var(--gradient);
    color: var(--secondary-color);
}

.feature:hover i {
    color: var(--secondary-color);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.store-description {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.store-description h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.store-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateX(-10px);
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--border-radius);
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.features-list li span {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* تحسينات للشاشات المتوسطة والصغيرة */
@media (max-width: 1200px) {
    .profile-section .container {
        grid-template-columns: 2fr 3fr; /* تعديل النسب للشاشات المتوسطة */
    }
}

@media (max-width: 992px) {
    .profile-section {
        padding: 5rem 3rem;
    }

    .profile-section .container {
        grid-template-columns: 1fr; /* عمود واحد للشاشات الصغيرة */
    }

    .profile-content-wrapper {
        padding-left: 0;
    }

    .store-meta {
        grid-template-columns: repeat(2, 1fr); /* صفين للمعلومات في الشاشات الصغيرة */
    }

    .video-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-side {
        order: 1;
    }

    .info-side {
        order: 2;
    }

    .store-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .feature {
        padding: 1rem;
    }

    .feature i {
        font-size: 1.8rem;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .profile-section::after {
        background-size: 20px 20px;
    }

    .feature:hover,
    .custom-link:hover,
    .contact-card:hover {
        transform: translateY(-5px);
    }

    .social-link:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 280px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .store-details {
        margin-top: 2rem;
        text-align: center;
    }
    
    .store-meta {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 1.5rem auto 0;
    }
    
    .meta-item {
        text-align: right;
    }
    
    .meta-item i {
        font-size: 1.3rem;
    }
    
    .meta-value {
        font-size: 1rem;
    }
    
    .rating-stars {
        font-size: 1.1rem;
    }

    .store-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-category {
        margin-bottom: 1rem;
    }

    .links-grid,
    .social-links,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .profile-section::after {
        background-size: 20px 20px;
    }

    .feature:hover,
    .custom-link:hover,
    .contact-card:hover {
        transform: translateY(-5px);
    }

    .social-link:hover {
        transform: scale(1.05);
    }

    .profile-section {
        padding: 5rem 2rem;
    }

    .share-btn {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .profile-info h1 {
        font-size: 2rem;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .store-meta {
        gap: 0.8rem;
    }
    
    .meta-item {
        padding: 0.8rem;
    }
    
    .meta-label {
        font-size: 0.8rem;
    }
    
    .meta-value {
        font-size: 0.95rem;
    }
    
    .rating-count {
        font-size: 0.8rem;
    }

    .store-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .feature {
        padding: 1.5rem;
    }

    .custom-link,
    .social-link,
    .contact-card {
        padding: 1.2rem;
    }

    .profile-section {
        padding: 5rem 1rem;
    }

    .share-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
        margin-right: 0;
    }
}

/* تنسيقات الروابط المخصصة */
.custom-links-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.custom-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-link:hover {
    transform: translateY(-5px);
    background: var(--gradient);
    color: var(--secondary-color);
}

.custom-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.custom-link:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.custom-link:hover i {
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.custom-link i {
    font-size: 1.5rem;
}

.custom-link span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* تنسيقات قسم وسائل التواصل */
.social-media-section {
    padding: 6rem 0;
    background: #fff;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.social-link:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.social-link i {
    font-size: 1.5rem;
}

.social-link span {
    font-size: 1.1rem;
    font-weight: 600;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.tiktok {
    background: #000;
}

.social-link.snapchat {
    background: #fffc00;
    color: #000;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* تنسيقات قسم الاتصال */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%, /* أزرق داكن جداً */
        rgba(30, 58, 138, 0.85) 30%, /* أزرق داكن */
        rgba(59, 130, 246, 0.75) 70%, /* أزرق فاتح */
        rgba(30, 58, 138, 0.85) 100% /* أزرق داكن */
    ) !important;
}

.contact-section::before {
    opacity: 0.08;
}

/* تحسين ألوان النصوص في قسم تواصل معنا للتناسق مع الخلفية الزرقاء */
.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section label {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-section input,
.contact-section textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section input:focus,
.contact-section textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover i {
    transform: rotateY(360deg);
    color: var(--accent-color);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* تنسيقات التذييل */
.store-footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.98) 0%,
        rgba(30, 58, 138, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
    color: var(--secondary-color);
}

.store-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.05;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
}

.footer-logo a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-logo a:hover::after {
    transform: scaleX(1);
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

/* تنسيقات العناوين */
.section-header {
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* حذف جميع الخطوط والتأثيرات */
.section-header h2::before,
.section-header h2::after,
.links-section .section-header h2::before,
.links-section .section-header h2::after,
.products-section .section-header h2::before,
.products-section .section-header h2::after,
.video-container .section-header h2::before,
.video-container .section-header h2::after {
    display: none;
}

.products-section .section-header h2,
.video-container .section-header h2,
.links-section .section-header h2 {
    color: #ffffff;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
}

.section-header h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

.links-section .section-header h2::before {
    width: 80px;
}

.links-section .section-header h2::after {
    width: 160px;
}

.products-section .section-header h2,
.video-container .section-header h2 {
    color: #ffffff;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        padding-bottom: 1.2rem;
    }

    .section-header h2::before {
        width: 50px;
        height: 3px;
    }

    .section-header h2::after {
        width: 100px;
        height: 1.5px;
        bottom: -3px;
    }
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    /* تم حذف تنسيقات القائمة الجانبية لأنها غير مستخدمة */

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .store-badges {
        justify-content: center;
    }

    .store-details {
        margin-top: 2rem;
        text-align: center;
    }
    
    .store-meta {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .meta-item {
        width: calc(50% - 1rem);
        justify-content: center;
    }
    
    .store-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .meta-value {
        font-size: 1rem;
    }
    
    .rating-stars {
        font-size: 1.1rem;
    }

    .store-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .links-grid,
    .social-links,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .profile-section::after {
        background-size: 20px 20px;
    }

    .feature:hover,
    .custom-link:hover,
    .contact-card:hover {
        transform: translateY(-5px);
    }

    .social-link:hover {
        transform: scale(1.05);
    }

    .profile-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 480px) {
    .profile-info h1 {
        font-size: 2rem;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .store-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .meta-item {
        width: 100%;
        justify-content: center;
    }

    .store-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .feature {
        padding: 1.5rem;
    }

    .custom-link,
    .social-link,
    .contact-card {
        padding: 1.2rem;
    }
}

/* تأثيرات إضافية للتفاعل */
.section-header h2 {
    transition: color 0.3s ease;
}

.section-header:hover h2 {
    color: var(--primary-dark);
}

.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* تحسين أداء الصفحة */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تنسيقات شريط المعلومات السريعة */
.quick-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%,
        rgba(30, 58, 138, 0.85) 30%,
        rgba(59, 130, 246, 0.75) 70%,
        rgba(30, 58, 138, 0.85) 100%
    );
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    border-radius: 20px;
    padding: 1.8rem;
    margin: 2rem 0 4rem;
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
}

.quick-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,
        var(--primary-color),
        var(--accent-color),
        var(--primary-color)
    );
    opacity: 0.8;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    flex: 1;
    margin: 0 0.5rem;
}

.quick-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 10px 20px rgba(37, 99, 235, 0.1),
        0 3px 6px rgba(37, 99, 235, 0.05);
}

.quick-info-item::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(37, 99, 235, 0.2),
        transparent
    );
}

.quick-info-item:last-child::after {
    display: none;
}

.quick-info-item i {
    font-size: 1.8rem;
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

.quick-info-item:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 3px 6px rgba(37, 99, 235, 0.3));
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.info-value small {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-right: 0.3rem;
    font-weight: 600;
}

.quick-info-item:hover .info-label {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* تحسينات للشاشات المتوسطة */
@media (max-width: 1200px) {
    .quick-info-bar {
        padding: 1.5rem;
        gap: 1rem;
    }

    .quick-info-item {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }

    .quick-info-item i {
        font-size: 1.6rem;
    }

    .info-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .quick-info-bar {
        flex-wrap: wrap;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .quick-info-item {
        width: calc(50% - 1rem);
        margin: 0;
        justify-content: flex-start;
    }

    .quick-info-item::after {
        display: none;
    }

    .quick-info-item:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .quick-info-bar {
        padding: 1.2rem;
        margin: 1.5rem 0 3rem;
    }

    .quick-info-item {
        width: 100%;
        padding: 1rem;
    }

    .quick-info-item i {
        font-size: 1.5rem;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .info-value {
        font-size: 1.1rem;
    }

    .info-value small {
        font-size: 0.8rem;
    }
}

/* تحسين المسافات والتناسق */
.video-info-section {
    padding-top: 2rem;
}

.video-info-grid {
    margin-top: 3rem;
}

/* إضافة تأثير خلفية متحركة */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.quick-info-bar {
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
}

/* تحسين تأثيرات التحويم */
.quick-info-item {
    transform-origin: center;
    will-change: transform;
}

.quick-info-item:hover {
    z-index: 2;
}

.quick-info-item:hover .info-content {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* تنسيقات سلايدر الخلفية */
.profile-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 700px;
    z-index: 1;
    overflow: hidden;
}

.profile-background-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.35) 0%,
        rgba(var(--primary-dark-rgb), 0.25) 50%,
        rgba(var(--primary-rgb), 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.profile-background-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-background-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profile-background-slider .slide.active {
    opacity: 1;
}

.profile-background-slider .slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.profile-background-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-background-slider .dot:hover {
    background: rgba(0, 0, 0, 0.8);
}

.profile-background-slider .dot.active {
    background: #000;
    transform: scale(1.2);
}

/* تنسيقات قسم الفيديو */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%,
        rgba(30, 58, 138, 0.85) 30%,
        rgba(59, 130, 246, 0.75) 70%,
        rgba(30, 58, 138, 0.85) 100%
    );
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.08;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-container .section-header h2 {
    color: #ffffff;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.video-container .section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

@media (max-width: 768px) {
    .video-container {
        padding: 0 0.5rem;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .video-wrapper iframe {
        border-radius: 10px;
    }
}

/* تنسيقات الروابط الدائرية */
.circular-links-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%,
        rgba(30, 58, 138, 0.85) 30%,
        rgba(59, 130, 246, 0.75) 70%,
        rgba(30, 58, 138, 0.85) 100%
    );
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.circular-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.08;
    animation: patternMove 20s linear infinite;
}

.circular-links-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0 1rem;
}

.circular-link {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.circular-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.circular-link span {
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

.circular-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                inset 0 2px 15px rgba(255, 255, 255, 0.15);
}

.circular-link:hover i,
.circular-link:hover span {
    transform: scale(1.1);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    padding: 2rem 0;
}

.store-profile {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%,
        rgba(30, 58, 138, 0.85) 30%,
        rgba(59, 130, 246, 0.75) 70%,
        rgba(30, 58, 138, 0.85) 100%
    );
    position: relative;
    overflow: hidden;
}

.store-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.08;
    animation: patternMove 20s linear infinite;
}

.store-profile h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.store-profile h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.store-profile-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.store-profile-card {
    background: linear-gradient(145deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 280px;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.store-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.store-profile-card:hover::before {
    left: 100%;
}

.store-profile-card.featured {
    background: linear-gradient(145deg, #1e40af 0%, #1e3a8a 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4),
                0 0 20px rgba(255, 255, 255, 0.1);
}

.store-profile-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.5),
                0 0 30px rgba(255, 255, 255, 0.2);
}

.store-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4),
                0 0 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #1e40af 0%, #1e3a8a 100%);
}

.store-profile-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.store-profile-card:hover .store-profile-icon {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.store-profile-info {
    text-align: center;
    padding: 1rem;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.store-profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.store-profile-info p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.store-profile-card:hover .store-profile-info h3 {
    transform: translateY(-5px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.store-profile-card:hover .store-profile-info p {
    transform: translateY(-5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.store-profile-card.featured .store-profile-info h3,
.store-profile-card.featured .store-profile-info p {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .store-profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .store-profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .store-profile-grid {
        grid-template-columns: 1fr;
    }
}

/* تحسين التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .store-profile .container {
        padding: 0 15px;
    }

    .store-profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .store-profile-card {
        height: 250px;
        padding: 15px;
    }

    .store-profile-info {
        padding: 0.5rem;
    }

    .store-profile-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .store-profile-info h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .store-profile-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .store-profile-grid {
        grid-template-columns: 1fr;
    }

    .store-profile-card {
        height: 220px;
    }

    .store-profile-icon {
        font-size: 1.8rem;
    }

    .store-profile-info h3 {
        font-size: 1rem;
    }
}

/* تطبيق التدرج على جميع الأقسام */
.store-profile,
.circular-links,
.products-section,
.about-section,
.contact-section,
.testimonials-section,
.partners-section,
.blog-section,
.newsletter-section {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%,
        rgba(30, 58, 138, 0.85) 30%,
        rgba(59, 130, 246, 0.75) 70%,
        rgba(30, 58, 138, 0.85) 100%
    );
    position: relative;
    overflow: hidden;
}

/* نمط الخلفية المتحركة المشترك */
.store-profile::before,
.circular-links::before,
.products-section::before,
.about-section::before,
.contact-section::before,
.testimonials-section::before,
.partners-section::before,
.blog-section::before,
.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png');
    opacity: 0.08;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

/* تأكيد أن المحتوى يظهر فوق الخلفية */
.store-profile > *:not(::before),
.circular-links > *:not(::before),
.products-section > *:not(::before),
.about-section > *:not(::before),
.contact-section > *:not(::before),
.testimonials-section > *:not(::before),
.partners-section > *:not(::before),
.blog-section > *:not(::before),
.newsletter-section > *:not(::before) {
    position: relative;
    z-index: 2;
}

/* تعريف حركة النمط */
@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.circular-links-section .section-header h2 {
    color: var(--secondary-color);
}

.circular-links-section .section-header h2::before,
.circular-links-section .section-header h2::after {
    background: rgba(255, 255, 255, 0.2);
}

.platform {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform:hover {
    transform: translateY(-15px);
}

.combined-section {
    padding: 4rem 0;
    position: relative;
    background: var(--blue-gradient);
}

.combined-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.links-section {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin: 0;
}

.section-header h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.products-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-section .section-header h2,
.video-container .section-header h2 {
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(135deg, 
        #1e3a8a 0%,      /* أزرق داكن */
        #1e40af 50%,     /* أزرق متوسط */
        #1e3a8a 100%     /* أزرق داكن */
    ) !important;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    background: transparent !important;
}

.product-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    position: relative;
    transition: transform 0.3s ease;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.product-price .price {
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3), /* أزرق فاتح */
        rgba(30, 58, 138, 0.4)  /* أزرق داكن */
    );
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* تأثيرات التحويم */
.product-card:hover .product-info h3 {
    transform: translateY(-2px);
}

.product-card:hover .product-info p {
    transform: translateY(-2px);
}

.product-card:hover .product-price .price {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.4), /* أزرق فاتح */
        rgba(30, 58, 138, 0.5)  /* أزرق داكن */
    );
    transform: scale(1.05);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.1), /* أزرق داكن */
        rgba(17, 24, 99, 0.1)   /* أزرق أغمق */
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

/* تم حذف التنسيقات المكررة */

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* تحسين الصور */
.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 992px) {
    .combined-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* تنسيقات قسم المنتجات */
.products-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-wrapper .section-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-info h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-info p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
}

/* تنسيقات قسم الفيديو */
.video-wrapper-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-wrapper-section .section-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin: 0;
}

.video-content {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.video-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* تنسيقات الشبكة المشتركة */
.combined-section {
    padding: 4rem 0;
    position: relative;
    background: var(--blue-gradient);
}

.combined-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .combined-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .video-content {
        border-radius: 10px;
    }
    
    .video-content iframe {
        border-radius: 10px;
    }
}

.products-wrapper .product-info h3 {
    color: #ffffff !important;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.products-wrapper .product-info p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    position: relative;
    transition: transform 0.3s ease;
}

.products-wrapper .product-price .price {
    color: #ffffff !important;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3), /* أزرق فاتح */
        rgba(30, 58, 138, 0.4)  /* أزرق داكن */
    );
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-wrapper .product-info {
    padding: 1.4rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    min-height: 200px; /* ارتفاع ثابت للمحتوى */
}

.products-wrapper .product-info h3 {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.products-wrapper .product-info p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
}

.products-wrapper .product-price {
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.products-wrapper .product-price .price {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Tajawal', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.9;
}

.products-wrapper .product-price .price::before {
    content: 'السعر:';
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.products-wrapper .product-actions {
    margin-top: 0.8rem;
    gap: 0.6rem;
}

.products-wrapper .glass-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.products-wrapper .glass-btn i {
    font-size: 0.9rem;
}

.products-wrapper .product-image {
    height: 180px;
}

.products-wrapper .product-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.products-wrapper .glass-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.products-wrapper .glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.products-wrapper .glass-btn:hover::before {
    transform: translateX(100%);
}

.products-wrapper .glass-btn.primary-btn {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.products-wrapper .glass-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
}

.products-wrapper .glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.products-wrapper .glass-btn.primary-btn:hover {
    background: rgba(59, 130, 246, 0.25);
}

.products-wrapper .glass-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.products-wrapper .glass-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.products-wrapper .glass-btn:hover i {
    transform: translateX(-3px);
}

/* تحسين تأثير الزجاج على مستوى البطاقة */
.products-wrapper .product-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.products-wrapper .price {
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-top: 0.4rem;
    font-family: 'Tajawal', sans-serif;
    position: relative;
}

.products-wrapper .price::before {
    content: 'السعر: ';
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 0.2rem;
}

/* تنسيق رقم السعر */
.products-wrapper .price {
    font-size: 1.4rem;
    font-weight: 700;
}

/* تنسيق كلمة ريال */
.products-wrapper .price::after {
    content: ' ريال';
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-right: 0.2rem;
}

.products-wrapper .product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px; /* ارتفاع ثابت للبطاقة بالكامل */
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.products-wrapper .product-image {
    width: 100%;
    height: 200px; /* ارتفاع ثابت للصورة */
    overflow: hidden;
    position: relative;
}

.products-wrapper .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-wrapper .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    gap: 0.8rem; /* مسافة موحدة بين العناصر */
}

.products-wrapper .product-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    height: 3em; /* ارتفاع ثابت للعنوان - يكفي لسطرين */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Tajawal', sans-serif;
}

.products-wrapper .product-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    height: 4.5em; /* ارتفاع ثابت للوصف - يكفي لثلاثة أسطر */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.products-wrapper .price {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0; /* إزالة الهوامش التلقائية */
    padding: 0.5rem 0;
    text-align: start; /* محاذاة النص إلى بداية السطر (اليمين في النص العربي) */
    font-family: 'Tajawal', sans-serif;
    position: relative; /* لضمان ثبات الموضع */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* محاذاة المحتوى إلى بداية العنصر */
}

.products-wrapper .product-actions {
    display: flex;
    gap: 0.6rem;
    padding: 0.8rem 0 0;
    margin-top: auto; /* يثبت الأزرار في نهاية البطاقة */
}

.products-wrapper .product-actions button {
    flex: 1;
    height: 40px; /* ارتفاع ثابت للأزرار */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.products-wrapper .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    gap: 0.8rem;
    justify-content: space-between; /* توزيع المساحات بين العناصر */
}

.products-wrapper .product-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    min-height: 4.8em; /* زيادة الارتفاع الأدنى */
    max-height: 6.4em; /* السماح بمزيد من المساحة للنص */
    display: -webkit-box;
    -webkit-line-clamp: 4; /* السماح بأربعة أسطر */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    text-overflow: ellipsis; /* إضافة نقاط عند قطع النص */
    word-wrap: break-word; /* السماح بكسر الكلمات الطويلة */
    padding: 0.2rem 0; /* إضافة مساحة صغيرة حول النص */
}

/* تعديل ارتفاع البطاقة لاستيعاب النص الإضافي */
.products-wrapper .product-card {
    height: 480px; /* زيادة ارتفاع البطاقة */
}

/* تعديل المسافات بين العناصر */
.products-wrapper .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    gap: 1rem; /* زيادة المسافة بين العناصر */
    justify-content: flex-start; /* بداية العناصر من الأعلى */
}

.products-wrapper .product-info h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    min-height: 1.6em; /* ارتفاع سطر واحد */
    max-height: 3.2em; /* ارتفاع سطرين كحد أقصى */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Tajawal', sans-serif;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.products-wrapper .product-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    min-height: 3.2em; /* ارتفاع سطرين */
    max-height: 4.8em; /* ارتفاع ثلاثة أسطر */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

/* تحسين تنظيم العناصر في البطاقة */
.products-wrapper .product-card {
    height: 460px; /* تعديل الارتفاع الكلي */
    display: flex;
    flex-direction: column;
}

.products-wrapper .product-image {
    height: 200px; /* ارتفاع ثابت للصورة */
    flex-shrink: 0; /* منع تقلص الصورة */
}

.products-wrapper .price {
    margin: 0.5rem 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: start;
}

.products-wrapper .product-actions {
    margin-top: auto; /* دفع الأزرار إلى الأسفل */
    padding-top: 1rem;
}

.products-wrapper .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
    gap: 0.8rem;
}

.products-wrapper .price {
    margin: 0.3rem 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: start;
}

.products-wrapper .product-actions {
    margin-top: 0.5rem; /* تقليل المسافة من أعلى */
    padding-top: 0;
    display: flex;
    gap: 0.8rem;
}

.products-wrapper .product-card {
    height: 460px;
    display: flex;
    flex-direction: column;
}

.products-wrapper .product-info {
    display: flex;
    flex-direction: column;
}

.products-wrapper .product-info > * {
    margin: 0; /* إزالة الهوامش الافتراضية */
}

.products-wrapper .product-info h3 {
    margin-bottom: 0.5rem;
}

.products-wrapper .product-info p {
    margin-bottom: 0.3rem;
}

/* تحسين مظهر الأزرار */
.products-wrapper .glass-btn {
    padding: 0.7rem 1rem;
    margin: 0;
    height: auto;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.profile-additional-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-additional-content .section-header {
    margin-bottom: 1.5rem;
}

.profile-additional-content .video-content {
    position: relative;
    width: 100%;
    padding-bottom: 45%;
    margin-top: 1rem;
}

.profile-additional-content .video-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .profile-section .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-additional-content {
        margin-top: 1.5rem;
    }
}

/* تعديل تنسيق قسم المنتجات ليأخذ العرض الكامل */
.combined-section .combined-grid {
    display: block;
}

.products-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.badge.store-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.badge.store-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.badge.store-btn:hover i {
    transform: scale(1.1);
}

.store-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.store-header h1 {
    margin: 0;
}

.badge.verified {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #fff;
    padding: 0.4rem;
    border-radius: 50%;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.badge.verified:hover {
    transform: scale(1.1);
}

.badge.verified i {
    color: #fff;
    font-size: 1rem;
}

.store-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 2.2rem !important;
    height: 2.2rem !important;
    padding: 0 !important;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.store-link:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

.store-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.icon-circles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
    justify-items: center;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.icon-circle {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.icon-circle .circle {
    animation: float 3s ease-in-out infinite;
}

.icon-circle:nth-child(2) .circle {
    animation-delay: 0.2s;
}

.icon-circle:nth-child(3) .circle {
    animation-delay: 0.4s;
}

.icon-circle:nth-child(4) .circle {
    animation-delay: 0.6s;
}

.icon-circle:nth-child(5) .circle {
    animation-delay: 0.8s;
}

.icon-circle:hover .circle {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.05);
}

.icon-circle:hover i {
    transform: scale(1.1) rotate(10deg);
}

.circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.circle::before,
.circle::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    filter: blur(3px);
    box-shadow: 0 0 20px #ffffff, 0 0 30px rgba(255, 255, 255, 0.8);
}

.circle::before {
    --tx: 70px;
    --ty: -40px;
    top: 50%;
    left: 50%;
    animation: particle-glow 3s ease-out infinite;
}

.circle::after {
    --tx: -60px;
    --ty: 50px;
    top: 50%;
    left: 50%;
    animation: particle-glow 3s ease-out infinite 0.5s;
}

.circle .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    filter: blur(3px);
    box-shadow: 0 0 20px #ffffff, 0 0 30px rgba(255, 255, 255, 0.8);
}

.circle .particle:nth-child(1) {
    --tx: 80px;
    --ty: 0;
    top: 50%;
    left: 50%;
    animation: particle-glow 3s ease-out infinite 0.2s;
}

.circle .particle:nth-child(2) {
    --tx: -70px;
    --ty: -30px;
    top: 50%;
    left: 50%;
    animation: particle-glow 3s ease-out infinite 0.7s;
}

.circle .particle:nth-child(3) {
    --tx: 40px;
    --ty: 70px;
    top: 50%;
    left: 50%;
    animation: particle-glow 3s ease-out infinite 1s;
}

.icon-circle:nth-child(2) .circle::before,
.icon-circle:nth-child(2) .circle::after,
.icon-circle:nth-child(2) .circle .particle {
    animation-delay: 0.3s, 0.8s, 0.5s, 1s, 1.3s;
}

.icon-circle:nth-child(3) .circle::before,
.icon-circle:nth-child(3) .circle::after,
.icon-circle:nth-child(3) .circle .particle {
    animation-delay: 0.6s, 1.1s, 0.8s, 1.3s, 1.6s;
}

.icon-circle:nth-child(4) .circle::before,
.icon-circle:nth-child(4) .circle::after,
.icon-circle:nth-child(4) .circle .particle {
    animation-delay: 0.9s, 1.4s, 1.1s, 1.6s, 1.9s;
}

.icon-circle:nth-child(5) .circle::before,
.icon-circle:nth-child(5) .circle::after,
.icon-circle:nth-child(5) .circle .particle {
    animation-delay: 1.2s, 1.7s, 1.4s, 1.9s, 2.2s;
}

.icon-circle:hover .circle::before,
.icon-circle:hover .circle::after,
.icon-circle:hover .circle .particle {
    animation-play-state: paused;
    opacity: 0;
}

@keyframes particle-glow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.circle i {
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.icon-circle h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.icon-circle h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: width 0.3s ease;
}

.icon-circle:hover h3::after {
    width: 80%;
}

.icon-circle:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-header {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

/* Social Media Dock */
.social-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 15px 30px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.social-dock.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100px);
}

.dock-item {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dock-item:hover {
    transform: scale(1.3) translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dock-item::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-item:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* Specific colors and effects for social media icons */
.dock-item:nth-child(1) { 
    color: #1877f2;
    text-shadow: 0 0 25px rgba(24, 119, 242, 0.7);
    background: rgba(24, 119, 242, 0.15);
}

.dock-item:nth-child(1):hover {
    background: rgba(24, 119, 242, 0.25);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.dock-item:nth-child(1) i {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.5));
}

.dock-item:nth-child(2) { 
    color: #000000;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.15);
}

.dock-item:nth-child(2):hover {
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dock-item:nth-child(2) i {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.dock-item:nth-child(3) { 
    color: #e4405f;
    text-shadow: 0 0 20px rgba(228, 64, 95, 0.5);
}
.dock-item:nth-child(4) { 
    color: #25d366;
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}
.dock-item:nth-child(5) { 
    color: #000000;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.dock-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Add reflection effect */
.dock-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dock-item:hover::after {
    opacity: 1;
}

/* تنسيقات دليل الروابط */
.links-guide {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.guide-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.guide-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.guide-content {
    color: var(--text-color);
}

.guide-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.guide-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-content ul li {
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.guide-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    right: 0;
    font-size: 1.2em;
}

.guide-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-color);
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
}

.guide-link i {
    margin-left: 10px;
    font-size: 1.2em;
}

.guide-link span {
    font-weight: 500;
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 768px) {
    .links-guide {
        padding: 15px;
        margin: 15px 0;
    }

    .guide-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .guide-section h3 {
        font-size: 1.1rem;
    }

    .guide-link {
        padding: 10px 12px;
    }
}

.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    margin: 2rem 0;
    max-width: 1000px;
    width: 100%;
}

.glass-container .about-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.glass-container .title-icon {
    color: #ffffff;
    font-size: 2rem;
}

.glass-container .text-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.glass-container .about-text p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .glass-container {
        padding: 2rem;
    }
    
    .glass-container .about-title {
        font-size: 2rem;
    }
    
    .glass-container .about-text p {
        font-size: 1.1rem;
    }
    
    .glass-container .text-box {
        padding: 2rem;
    }
}

.about-wrapper {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-text {
    width: 100%;
    display: flex;
    justify-content: center;
}

.text-box {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.about-text p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.2rem;
    margin: 0;
}

/* تنسيق زر المشاركة */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.share-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(37, 99, 235, 0.5));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn i {
    color: #fff;
    font-size: 1rem;
}

/* تنسيقات حاوية رابط المتجر */
.store-link-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.share-btn {
    margin: 0 !important;
    vertical-align: middle !important;
    height: 2.2rem !important;
}

/* تنسيقات مودال المشاركة */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.share-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    min-width: 500px;
    max-width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.share-modal-content h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.share-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: white;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.modal-btn:active {
    transform: translateY(0);
}

.modal-btn i {
    font-size: 1.1rem;
}

.qr-section {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.qr-label {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

#qrCode {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

@media (max-width: 768px) {
    .share-modal-content {
        min-width: 300px;
        padding: 1.5rem;
    }
    
    .share-modal-content h3 {
        font-size: 1.3rem;
    }
    
    .modal-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* إلغاء تنسيقات الـ sidebar من style.css */
.sidebar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateX(100%) !important;
}

.sidebar-toggle,
.sidebar-overlay,
.open-sidebar {
    display: none !important;
    visibility: hidden !important;
}

/* إلغاء أي تأثيرات للـ sidebar على المحتوى الرئيسي */
.main-content {
    margin-right: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

/* إلغاء تنسيقات القائمة الجانبية */
.sidebar-header,
.sidebar-menu,
.sidebar-close {
    display: none !important;
}