/* ============================================================
   ISUPERCHAMP — style.css
   ملف CSS الموحد لكل الصفحات
   ============================================================ */

/* =========================================
   1. المتغيرات العامة (Variables)
   ========================================= */
/* Google Fonts 'Cairo' يتم تحميله عبر <link> في HTML */

:root {
    --primary-blue: #2764c5;
    --dark-blue: #0f3973;
    --accent-yellow: #f1c40f;
    --success-green: #2ecc71;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-dark: #1e272e;
    --text-gray: #808e9b;
    --border-color: #e1e8ed;
    --transition: all 0.3s ease;
}

/* =========================================
   2. الإعدادات الأساسية (Reset & Base)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* =========================================
   3. الشريط العلوي (Top Bar)
   ========================================= */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.top-bar span {
    color: var(--accent-yellow);
    margin-right: 5px;
    cursor: pointer;
}

/* =========================================
   4. الترويسة والتنقل (Header & Nav)
   ========================================= */
header {
    background-color: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo i {
    color: var(--primary-blue);
}

.logo span {
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: var(--text-gray);
    margin-top: -5px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 25px;
    transition: var(--transition);
    color: var(--text-gray);
}

nav ul li a.active {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: transparent;
}

nav ul li a:hover {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: rgba(39, 100, 197, 0.05);
}

/* أزرار الهيدر */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn,
.cart-btn {
    background: var(--light-bg);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-family: 'Cairo', sans-serif;
}

.icon-btn:hover,
.cart-btn:hover {
    background: var(--border-color);
}

/* Badge عدد السلة */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* قائمة الموبايل (Hamburger) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 5px;
}

/* =========================================
   5. البانر الرئيسي (Hero Section)
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--dark-blue);
}

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

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-dot.active {
    background: var(--accent-yellow);
}

.hero {
    background: linear-gradient(rgba(16, 59, 117, 0.5), rgba(16, 59, 117, 0.6)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* =========================================
   6. المميزات (Features)
   ========================================= */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 5%;
    background: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.feature-box i {
    font-size: 35px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-gray);
}

/* =========================================
   7. قسم العروض والمنتجات (Products)
   ========================================= */
.offers-section {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to left, var(--dark-blue) 50%, var(--accent-yellow) 50%);
}

[dir="ltr"] .section-title h2::after {
    right: auto;
    left: 0;
}

.view-all {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* بطاقة المنتج */
.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b6b;
    color: var(--white);
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

[dir="ltr"] .badge {
    left: auto;
    right: 15px;
}

.product-image-container {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.product-icon {
    font-size: 60px;
    color: #d1d8e0;
    margin: 20px 0;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    min-height: 45px;
    overflow: hidden;
}

.price-box {
    border: 1px dashed var(--success-green);
    color: var(--success-green);
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 15px;
    background: rgba(46, 204, 113, 0.05);
    font-size: 15px;
}

.price-box del {
    color: #a4b0be;
    font-size: 13px;
    margin-inline-start: 8px;
}

.stock-status {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stock-status.out {
    color: #ff6b6b;
}

.stock-status.in {
    color: var(--success-green);
}

.offer-timer {
    font-size: 12px;
    font-weight: 700;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px dashed #ff6b6b;
}

/* أزرار الإضافة للسلة */
.btn-add {
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    width: 100%;
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
}

.btn-add.disabled {
    background-color: #a4c4f3;
    color: var(--white);
    cursor: not-allowed;
}

.btn-add.active {
    background-color: var(--primary-blue);
    color: var(--white);
    cursor: pointer;
}

.btn-add.active:hover {
    background-color: var(--dark-blue);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: var(--text-gray);
    background: var(--white);
    border-radius: 12px;
    border: 1px dashed var(--border-color);
}

/* =========================================
   8. هيكل المتجر (Shop Layout)
   ========================================= */
.shop-container {
    display: flex;
    gap: 30px;
    padding: 40px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.category-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    color: var(--text-gray);
}

.category-list li.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.category-list li:not(.active):hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
}

/* =========================================
   9. صفحة من نحن (About Page)
   ========================================= */
.about-page {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to left, var(--dark-blue) 50%, var(--accent-yellow) 50%);
    border-radius: 2px;
}

.page-header p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p strong {
    color: var(--dark-blue);
}

.about-image {
    background: linear-gradient(135deg, rgba(39, 100, 197, 0.1), rgba(15, 57, 115, 0.05));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.about-image i {
    font-size: 120px;
    color: var(--primary-blue);
    opacity: 0.8;
}

.about-image .overlay-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
    border: 5px solid var(--white);
}

.values-section {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.values-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 20px;
}

.value-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    background: var(--light-bg);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =========================================
   10. سلة المشتريات الجانبية (Cart Sidebar)
   ========================================= */
.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    font-size: 18px;
    color: var(--dark-blue);
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-gray);
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 15px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-gray);
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 700;
}

.remove-item {
    color: #ff6b6b;
    font-size: 12px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    margin-top: 5px;
    font-family: 'Cairo', sans-serif;
}

.cart-footer {
    padding: 20px;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.btn-checkout {
    background: var(--success-green);
    color: var(--white);
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}

.btn-checkout:hover {
    background: #27ae60;
}

/* =========================================
   11. نافذة إتمام الطلب (Checkout Modal)
   ========================================= */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: var(--transition);
    margin: 0 20px;
}

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

.checkout-header {
    text-align: center;
    margin-bottom: 25px;
}

.checkout-header h3 {
    color: var(--dark-blue);
    font-size: 22px;
    margin-bottom: 5px;
}

.checkout-header p {
    color: var(--text-gray);
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
    text-align: start;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(39, 100, 197, 0.1);
}

.checkout-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-confirm {
    background: var(--success-green);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
}

.btn-confirm:hover {
    background: #27ae60;
}

.btn-confirm:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-cancel {
    background: var(--light-bg);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
}

.btn-cancel:hover {
    background: #e1e8ed;
}

/* =========================================
   12. الإشعارات (Toast Notifications)
   ========================================= */
.toast-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

[dir="ltr"] .toast-container {
    left: auto;
    right: 20px;
}

.toast {
    background: var(--white);
    border-right: 4px solid var(--success-green);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInLeft 0.3s ease forwards;
    min-width: 250px;
}

.toast.error {
    border-right-color: #ff6b6b;
}

.toast i {
    font-size: 18px;
    margin-inline-start: 10px;
}

.toast.success i {
    color: var(--success-green);
}

.toast.error i {
    color: #ff6b6b;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* =========================================
   13. الفوتر (Footer)
   ========================================= */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 5% 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p,
.footer-col ul li a {
    color: #d1d8e0;
    font-size: 14px;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-right: 5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #a4b0be;
}

/* =========================================
   14. الأزرار العائمة (Floating Buttons)
   ========================================= */
.floating-whatsapp,
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--success-green);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4);
    z-index: 1000;
    transition: transform 0.2s;
}

.floating-whatsapp:hover,
.whatsapp-float:hover {
    transform: scale(1.1);
}

.floating-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.floating-top:hover {
    background: var(--dark-blue);
}

/* =========================================
   15. Loading Skeletons (هيكل التحميل)
   ========================================= */
.product-card.loading-skeleton {
    pointer-events: none;
}

.skeleton-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 15px;
}

.skeleton-text {
    height: 18px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 12px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.skeleton-text.short {
    width: 50%;
}

.skeleton-btn {
    height: 44px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
    margin-top: 10px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* =========================================
   16. التجاوب مع الأجهزة (Responsive)
   ========================================= */

/* تابلت */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-top: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* موبايل */
@media (max-width: 768px) {
    /* إظهار زر الهامبرجر */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* إخفاء القائمة بشكل افتراضي */
    header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 99;
    }

    header nav.nav-open {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header nav ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 16px;
    }

    /* هيرو */
    .hero-slider {
        height: auto !important;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero {
        padding: 50px 15px;
    }

    /* المميزات */
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 5%;
    }

    /* المتجر */
    .shop-container {
        flex-direction: column;
        padding: 20px 5%;
    }

    .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }

    /* من نحن */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    /* السلة */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* موبايل صغير */
@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .header-actions {
        gap: 8px;
    }

    .icon-btn,
    .cart-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* =========================================
   18. Pagination
   ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.page-btn:hover {
    background: var(--light-bg);
    border-color: var(--primary-blue);
}

.page-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}


.page-btn.prev-next {
    background: var(--light-bg);
    border: none;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}
.page-btn.prev-next:hover {
    background: #e4eaf5;
}
.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.page-dots {
    display: flex;
    align-items: flex-end;
    padding: 0 5px;
    color: var(--text-gray);
    font-weight: bold;
}


/* =========================================
   19. Advanced Pagination
   ========================================= */
.advanced-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    margin-top: 0;
    width: 100%;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.advanced-pagination .page-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.advanced-pagination .page-btn:hover:not(.disabled) {
    transform: translateY(-3px) scale(1.05);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(39, 100, 197, 0.15);
    color: var(--primary-blue);
}

.advanced-pagination .page-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(39, 100, 197, 0.3);
}

.advanced-pagination .page-btn.prev-next {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
    background: var(--white);
    color: var(--primary-blue);
}

.advanced-pagination .page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    color: var(--text-gray);
    font-size: 18px;
    letter-spacing: 2px;
}


/* =========================================
   20. Shop Top Controls & 5-Column Grid
   ========================================= */
.shop-container.full-width {
    flex-direction: column;
    padding-top: 20px;
}
.shop-top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}
.shop-main-title {
    font-size: 22px;
    color: var(--dark-blue);
    margin: 0;
}
.custom-select {
    padding: 10px 15px;
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    background: var(--light-bg);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    outline: none;
    min-width: 200px;
    transition: var(--transition);
}
.custom-select:hover, .custom-select:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(39, 100, 197, 0.1);
}

/* Override previous grid to force 4 items */
.shop-container .products-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .shop-container .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .shop-container .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .shop-container .products-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-top-controls { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
    .shop-container .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}


/* Global products-grid responsiveness */
@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }


/* =========================================
   21. Best Sellers Carousel
   ========================================= */
.best-sellers-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    position: relative;
}

.section-title.text-center {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.section-title.text-center h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-title.text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 5px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.carousel-card {
    flex: 0 0 calc(20% - 16px);
    scroll-snap-align: start;
    min-width: 220px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.carousel-btn.prev-btn {
    right: -20px;
}

.carousel-btn.next-btn {
    left: -20px;
}

.view-all-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-btn {
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Responsive adjustments for Carousel */
@media (max-width: 1200px) {
    .carousel-card { flex: 0 0 calc(25% - 15px); }
}
@media (max-width: 992px) {
    .carousel-card { flex: 0 0 calc(33.333% - 14px); }
    .carousel-btn.prev-btn { right: -10px; }
    .carousel-btn.next-btn { left: -10px; }
}
@media (max-width: 768px) {
    .carousel-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
    .carousel-card { flex: 0 0 calc(80% - 10px); }
}


/* =========================================
   22. Product Details Page
   ========================================= */
.product-page-main {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light-bg);
}

.product-details-container {
    display: grid;
    grid-template-columns: 400px 1fr 350px;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.product-image-col {
    display: flex;
    flex-direction: column;
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-col {
    padding: 0 20px;
}

.p-category {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.p-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}

.p-rating {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-size: 14px;
}
.p-rating span {
    color: var(--text-gray);
    margin-right: 10px;
}

.p-price-wrapper {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.p-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
}

.p-tax-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 5px;
}

.p-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.p-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}
.p-feature i {
    color: var(--success-green);
    font-size: 18px;
}

.p-description {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 20px;
}

.product-action-col {
    /* ????? ?????? */
}

.purchase-box {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    background: var(--white);
    position: sticky;
    top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.purchase-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.purchase-box .stock-status {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.purchase-box .delivery-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector select {
    width: 80px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-weight: bold;
}

.btn-buy-now {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-buy-now:hover:not(.disabled) {
    background: #e6b800;
    transform: translateY(-2px);
}

.secure-transaction {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive Product Page */
@media (max-width: 1200px) {
    .product-details-container {
        grid-template-columns: 350px 1fr;
    }
    .product-action-col {
        grid-column: 1 / -1;
    }
    .purchase-box {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }
    .quantity-selector { margin-bottom: 0; }
}

@media (max-width: 992px) {
    .product-details-container {
        grid-template-columns: 1fr;
    }
    .purchase-box {
        grid-template-columns: 1fr;
    }
}


header.scrolled {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 3%;
    margin: 15px 2%;
    border-radius: 50px;
    top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}


.logo img {
    max-height: 75px;
    width: auto;
    mix-blend-mode: multiply;
}


/* =========================================
   23. Promo Section
   ========================================= */
.promo-section {
    background: linear-gradient(rgba(16, 59, 117, 0.85), rgba(16, 59, 117, 0.85)), url('promo-bg.jpg') center/cover no-repeat;
    border-radius: 20px;
    margin: 60px 5%;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(16, 59, 117, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.promo-tag {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.promo-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.promo-title span {
    color: var(--accent-yellow);
    font-size: 56px;
}

.promo-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-blue);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: var(--light-bg);
}

.promo-image {
    position: relative;
    z-index: 2;
    text-align: left;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.promo-image i {
    font-size: 150px;
    color: var(--accent-yellow);
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .promo-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .promo-image {
        margin-top: 40px;
        justify-content: center;
    }
    .promo-title { font-size: 32px; }
    .promo-title span { font-size: 42px; }
}
}


/* =========================================
   24. Smart Assistant Chatbot
   ========================================= */
.assistant-toggle-btn {
    position: relative;
    color: var(--primary-blue);
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--accent-yellow); }
    100% { transform: scale(1); }
}

.chatbot-modal {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.chatbot-modal.active {
    display: flex;
    animation: slideUpFade 0.4s ease forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-info i {
    font-size: 24px;
    color: var(--accent-yellow);
}

.chatbot-header-info h3 {
    margin: 0;
    font-size: 16px;
}

.chatbot-header-info p {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.close-chatbot {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.chatbot-messages {
    padding: 20px;
    height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8f9fa;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-bubble.bot {
    align-self: flex-start;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid #eee;
    border-bottom-right-radius: 5px;
}

.chat-bubble.user {
    align-self: flex-end;
    background: var(--primary-blue);
    color: var(--white);
    border-bottom-left-radius: 5px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply-btn {
    background: var(--white);
    border: 1px solid var(--accent-yellow);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.quick-reply-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-color);
}

.chatbot-input {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.chatbot-input button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.chatbot-input button:hover {
    background: var(--accent-yellow);
    color: var(--text-color);
}

.product-recommendation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: var(--white);
    text-decoration: none;
    color: inherit;
}

.product-recommendation img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.product-recommendation div {
    flex: 1;
}

.product-recommendation h4 {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: var(--primary-blue);
}

.product-recommendation p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: var(--accent-yellow);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    align-self: flex-start;
    border-bottom-right-radius: 5px;
    align-items: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); background: var(--primary-blue); }
}

/* Assistant Hint Badge */
.assistant-hint-badge {
    background-color: transparent;
    color: var(--dark-blue);
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    animation: bounceHint 1s infinite alternate;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
    pointer-events: none;
}

@keyframes bounceHint {
    0% { transform: translateX(0); }
    100% { transform: translateX(5px); }
}

@media (max-width: 480px) {
    .assistant-hint-badge {
        font-size: 11px;
        padding: 2px 4px;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Payment Methods */
.payment-group {
    margin-top: 15px;
}

.payment-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 10px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: #fdfdfd;
    transition: var(--transition);
    color: var(--text-gray);
}

.payment-content i {
    font-size: 24px;
}

.payment-content span {
    font-size: 14px;
    font-weight: 600;
}

.payment-option input[type="radio"]:checked + .payment-content {
    border-color: var(--primary-green);
    background: rgba(39, 174, 96, 0.05);
    color: var(--primary-green);
}

.bank-details-box {
    margin-top: 15px;
    padding: 12px;
    background: #e8f4fd;
    border-left: 4px solid #3498db;
    border-radius: 5px;
    font-size: 13px;
    color: #2c3e50;
    line-height: 1.6;
}

.bank-details-box i {
    color: #3498db;
    margin-left: 5px;
}
