/* Modern Store Design - مستوحى من Apple */

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--store-font-family, 'Avenir Next World'), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1D1D1F;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Avenir Next World Arabic Font */
@import url('https://fonts.cdnfonts.com/css/avenir-next-world-arabic');

/* Store Specific Styles */
.store-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #E5E5E7;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.store-navbar {
    background: rgba(255, 255, 255, 0.7) !important; /* شفافية افتراضية 70% */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #E5E5E7;
    padding: 0.75rem 0;
    border-radius: 15px !important; /* radius افتراضي جميل */
    margin: 0.5rem 1rem;
    transition: all 0.3s ease;
}

/* Store Footer Styles */
.store-footer {
    background: var(--footer-bg-color, rgba(245, 245, 247, 0.9));
    color: var(--footer-text-color, #1D1D1F);
    border-radius: var(--footer-border-radius, 10px);
    margin: 2rem 1rem 0 1rem;
    box-shadow: var(--footer-shadow, 0 -2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.store-footer .container {
    padding: 2rem 0;
}

.store-footer h5 {
    color: var(--footer-heading-color, #1D1D1F);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.store-footer p,
.store-footer a {
    color: var(--footer-text-color, #1D1D1F);
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-footer a:hover {
    color: var(--header-hover, #007AFF);
}

.store-footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--footer-social-bg, rgba(0, 0, 0, 0.1));
    color: var(--footer-social-color, #1D1D1F);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.store-footer .social-links a:hover {
    background: var(--header-hover, #007AFF);
    color: var(--footer-social-hover-color, #FFFFFF);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Payment Methods Styling */
.store-footer .payment-methods {
    align-items: center;
}

.store-footer .payment-methods .payment-icons {
    gap: 0.75rem;
}

.store-footer .payment-methods .payment-icons i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-footer .payment-methods .payment-icons i:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .store-footer .payment-methods {
        flex-direction: column !important;
        gap: 1rem;
        text-align: center;
    }

    .store-footer .payment-methods .payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-footer .social-links {
        justify-content: center;
    }
}

.store-footer .footer-bottom {
    border-top: 1px solid var(--footer-separator-color, rgba(0, 0, 0, 0.1));
    margin-top: 2rem;
}

/* Newsletter Styles */
.newsletter-signup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.newsletter-signup:hover::before {
    left: 100%;
}

.newsletter-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.newsletter-signup.newsletter-full-width {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.newsletter-signup.newsletter-full-width h6 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.newsletter-signup.newsletter-full-width p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-signup.newsletter-full-width .input-group {
    max-width: 600px;
}

.newsletter-signup h6 {
    color: var(--footer-text-color, #1D1D1F);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.newsletter-signup p {
    color: var(--footer-text-color, #1D1D1F);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1D1D1F;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 1);
}

.newsletter-form .btn {
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0 25px 25px 0;
    background: var(--primary-color, #007AFF);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--primary-hover-color, #0056CC);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.newsletter-form .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
}

.newsletter-form .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-signup {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .form-control {
        border-radius: 15px 15px 0 0;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form .btn {
        border-radius: 0 0 15px 15px;
        width: 100%;
    }
    
    .newsletter-signup.newsletter-full-width {
        margin: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .newsletter-signup {
        padding: 1rem;
    }
    
    .newsletter-signup h6 {
        font-size: 1.1rem;
    }
    
    .newsletter-signup p {
        font-size: 0.9rem;
    }
}

.store-footer .footer-bottom {
    padding-top: 1rem;
    text-align: center;
}

.store-footer .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Column Layouts */
.store-footer[data-columns="1"] .row > div {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.store-footer[data-columns="2"] .row > div {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.store-footer[data-columns="3"] .row > div {
    width: 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.store-footer[data-columns="4"] .row > div {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.store-footer[data-columns="5"] .row > div {
    width: 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.store-footer[data-columns="6"] .row > div {
    width: 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

/* Footer Effects */
.store-footer[data-glass="true"] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.store-footer[data-shadow="none"] {
    box-shadow: none;
}

.store-footer[data-shadow="light"] {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.store-footer[data-shadow="medium"] {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.store-footer[data-shadow="strong"] {
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer Separators */
.store-footer[data-separator="line"] hr {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.store-footer[data-separator="dotted"] hr {
    border-top: 2px dotted rgba(0, 0, 0, 0.1);
}

.store-footer[data-separator="gradient"] hr {
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent) 1;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .store-footer {
        border-radius: 6px;
        margin: 1rem 0.5rem 0 0.5rem;
    }
    
    .store-footer .container {
        padding: 1.5rem 0;
    }
    
    /* Mobile column adjustments */
    .store-footer[data-columns] .row > div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .store-footer .social-links {
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .store-footer {
        border-radius: 4px;
        margin: 0.5rem 0.25rem 0 0.25rem;
    }
    
    .store-footer .container {
        padding: 1rem 0;
    }
    
    .store-footer h5 {
        font-size: 1rem;
    }
    
    .store-footer .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin-right: 0.25rem;
    }
}

/* Store Logo */
.store-logo {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.store-logo:hover {
    transform: scale(1.05);
}

/* Mobile Header Improvements */
@media (max-width: 768px) {
    .store-navbar {
        padding: 0.5rem 0;
        margin: 0.25rem 0.5rem !important;
        border-radius: 8px !important;
    }
    
    .store-navbar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .store-navbar .navbar-brand {
        margin: 0;
        padding: 0;
        flex: 1;
        display: flex;
        justify-content: center;
        order: 1;
    }
    
    .store-navbar .navbar-toggler {
        order: 0;
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.1rem;
        background: none;
    }
    
    .store-navbar .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .store-navbar .mobile-actions {
        order: 2;
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
    }
    
    .store-navbar .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .store-navbar .navbar-nav {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .store-navbar .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .store-navbar .search-form {
        width: 100%;
        margin: 1rem 0 0.5rem 0;
    }
    
    .store-navbar .search-form .input-group {
        width: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .store-navbar .search-form .form-control {
        border: none;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        background: #f8f9fa;
    }
    
    .store-navbar .search-form .form-control:focus {
        box-shadow: none;
        background: white;
    }
    
    .store-navbar .search-form .btn {
        border: none;
        padding: 0.875rem 1.25rem;
        background: var(--store-primary-color, #007AFF);
        color: white;
        font-weight: 600;
    }
    
    .store-logo-nav {
        max-height: 40px;
        max-width: 150px;
        object-fit: contain;
    }
    
    .store-name-nav {
        font-size: 1.1rem;
        font-weight: 600;
        color: inherit;
    }
    
    .mobile-actions .cart-icon,
    .mobile-actions .wishlist-icon {
        position: relative;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-actions .cart-icon:hover,
    .mobile-actions .wishlist-icon:hover {
        background: rgba(0, 122, 255, 0.1);
    }
    
    .cart-badge {
        position: absolute;
        top: -2px;
        right: -2px;
        background: #dc3545;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        z-index: 10;
    }
}

/* Desktop Header Improvements */
@media (min-width: 769px) {
    .store-navbar {
        padding: 0.75rem 0;
    }
    
    .store-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .store-navbar .navbar-brand {
        flex-shrink: 0;
        margin-right: 2rem;
    }
    
    .store-navbar .navbar-nav {
        flex: 1;
        justify-content: center;
        margin: 0 2rem;
    }
    
    .store-navbar .navbar-nav.ms-auto {
        flex: 0 0 auto;
        justify-content: flex-end;
        margin: 0;
    }
    
    .store-navbar .search-form .input-group {
        min-width: 250px;
        max-width: 300px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .store-navbar .search-form .input-group:focus-within {
        box-shadow: 0 4px 15px rgba(0, 122, 255, 0.2);
        transform: translateY(-1px);
    }
    
    .store-navbar .search-form .form-control {
        border: none;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        background: white;
        color: #333;
        border-radius: 20px 0 0 20px;
    }
    
    .store-navbar .search-form .form-control:focus {
        box-shadow: none;
        background: white;
        color: #333;
    }
    
    .store-navbar .search-form .form-control::placeholder {
        color: #999;
        opacity: 1;
    }
    
    .store-navbar .search-form .btn {
        border: none;
        padding: 0.6rem 1rem;
        background: var(--store-primary-color, #007AFF);
        color: white;
        border-radius: 0 20px 20px 0;
        transition: all 0.3s ease;
        min-width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .store-navbar .search-form .btn:hover {
        background: var(--store-secondary-color, #0056CC);
        transform: scale(1.02);
    }
    
    .store-logo-nav {
        max-height: 50px;
        max-width: 200px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .store-logo-nav:hover {
        transform: scale(1.05);
    }
    
    .store-name-nav {
        font-size: 1.5rem;
        font-weight: 700;
        color: inherit;
        text-decoration: none;
    }
}

/* Additional Mobile Styles */
@media (max-width: 576px) {
    .store-navbar {
        border-radius: 6px;
        margin: 0.25rem 0.25rem !important;
    }
    
    .search-form {
        margin: 1rem 0 0.5rem 0;
    }
    
    .search-form .input-group {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .search-form .form-control {
        border: 1px solid #dee2e6;
        border-right: none;
    }
    
    .search-form .btn {
        border: 1px solid #dee2e6;
        border-left: none;
        background: #007bff;
        color: white;
        padding: 0.5rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .search-form .btn:hover {
        background: #0056b3;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
    }
}

/* Store Navigation */
.store-navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: #1D1D1F !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
}

/* Dynamic Header Hover Colors */
.store-navbar .navbar-nav .nav-link:hover,
.store-navbar .navbar-nav .nav-link.active {
    color: var(--header-hover, #007AFF) !important;
    transform: translateY(-1px);
}

.store-navbar .navbar-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

/* Store Search */
.store-navbar .form-control {
    border: 2px solid #E5E5E7;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    background-color: #F5F5F7;
    transition: all 0.3s ease;
    min-width: 300px;
}

.store-navbar .form-control:focus {
    border-color: #007AFF;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
    background-color: white;
}

/* Store Icons */
.cart-icon, .user-menu {
    position: relative;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-icon:hover, .user-menu:hover {
    transform: translateY(-1px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 59, 48, 0.3);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 0;
}

/* Language Switcher */
.language-switcher .dropdown-toggle {
    background: transparent;
    border: 1px solid #E5E5E7;
    color: #1D1D1F;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-toggle:hover {
    background-color: #F5F5F7;
    border-color: var(--header-hover, #007AFF);
}

.language-switcher .dropdown-menu {
    border: 1px solid #E5E5E7;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
}

.language-switcher .dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.language-switcher .dropdown-item:hover {
    background-color: #F5F5F7;
}

/* Currency Badge */
.currency-badge .badge {
    background: #F5F5F7 !important;
    color: #1D1D1F !important;
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #86868B;
}

/* Modern Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-img-top {
    border-radius: 16px 16px 0 0;
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1D1D1F;
}

.card-text {
    color: #86868B;
    margin-bottom: 1rem;
}

/* Modern Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056CC, #4A4AC7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.btn-outline-primary {
    border: 2px solid #007AFF;
    color: #007AFF;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Modern Forms */
.form-control {
    border: 2px solid #E5E5E7;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #F5F5F7;
}

.form-control:focus {
    border-color: #007AFF;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
    background-color: white;
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 0.5rem;
}

/* Modern Navigation */
.navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #1D1D1F !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(0, 122, 255, 0.1);
    color: #007AFF !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007AFF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Modern Search */
.search-container {
    position: relative;
}

.search-container .form-control {
    padding-right: 3rem;
}

.search-container .btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    border-radius: 8px;
    background: #007AFF;
    color: white;
    border: none;
}

/* Modern Icons */
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    transition: all 0.3s ease;
}

.icon-container:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-2px);
}

/* Modern Badges */
.badge {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

.badge-primary {
    background: #007AFF;
    color: white;
}

.badge-success {
    background: #34C759;
    color: white;
}

.badge-warning {
    background: #FF9500;
    color: white;
}

/* Modern Alerts */
.alert {
    border: none;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
}

.alert-primary {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    border-left: 4px solid #007AFF;
}

.alert-success {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border-left: 4px solid #34C759;
}

.alert-warning {
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
    border-left: 4px solid #FF9500;
}

/* Modern Tables */
.table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table thead th {
    background: #F5F5F7;
    border: none;
    font-weight: 600;
    color: #1D1D1F;
    padding: 1rem;
}

.table tbody td {
    border: none;
    padding: 1rem;
    border-bottom: 1px solid #E5E5E7;
}

.table tbody tr:hover {
    background-color: rgba(0, 122, 255, 0.05);
}

/* Modern Pagination */
.pagination .page-link {
    border: none;
    color: #1D1D1F;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: rgba(0, 122, 255, 0.1);
    color: #007AFF;
}

.pagination .page-item.active .page-link {
    background: #007AFF;
    color: white;
}

/* Modern Dropdowns */
.dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 122, 255, 0.1);
    color: #007AFF;
}

/* Modern Modals */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid #E5E5E7;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #E5E5E7;
    padding: 1.5rem;
}

/* Modern Progress Bars */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #F5F5F7;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 4px;
}

/* Modern Spinners */
.spinner-border {
    color: #007AFF;
}

/* Modern Utilities */
.text-primary { color: #007AFF !important; }
.text-secondary { color: #5856D6 !important; }
.text-success { color: #34C759 !important; }
.text-warning { color: #FF9500 !important; }
.text-danger { color: #FF3B30 !important; }
.text-muted { color: #86868B !important; }

.bg-primary { background-color: #007AFF !important; }
.bg-secondary { background-color: #5856D6 !important; }
.bg-success { background-color: #34C759 !important; }
.bg-warning { background-color: #FF9500 !important; }
.bg-danger { background-color: #FF3B30 !important; }
.bg-light { background-color: #F5F5F7 !important; }

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
        color: #FFFFFF;
    }
    
    .card {
        background-color: #1C1C1E;
        color: #FFFFFF;
    }
    
    .form-control {
        background-color: #1C1C1E;
        border-color: #38383A;
        color: #FFFFFF;
    }
    
    .navbar {
        background-color: rgba(28, 28, 30, 0.95);
    }
}

/* RTL Support */
[dir="rtl"] .card-img-top {
    border-radius: 16px 16px 0 0;
}

[dir="rtl"] .alert {
    border-left: none;
    border-right: 4px solid;
}

[dir="rtl"] .table thead th {
    text-align: right;
}

[dir="rtl"] .table tbody td {
    text-align: right;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
}

.top-bar.hidden {
    display: none;
}

.top-bar .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.top-bar .btn-close:hover {
    opacity: 1;
}

/* RTL Support for Avenir Next World Arabic */
[dir="rtl"] body {
    font-family: 'Avenir Next World Arabic', 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
}

[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-nav .nav-item {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .store-logo {
    margin-right: 0;
    margin-left: 1rem;
}

/* Store Header RTL Fixes */
[dir="rtl"] .store-header .col-md-6:first-child {
    text-align: right;
}

[dir="rtl"] .store-header .col-md-6:last-child {
    text-align: left;
}

[dir="rtl"] .store-header .d-flex.justify-content-end {
    justify-content: flex-start !important;
}

/* Navigation RTL Fixes */
[dir="rtl"] .navbar-nav .nav-link {
    text-align: right;
}

[dir="rtl"] .navbar-nav .nav-link i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Search and Cart RTL Fixes */
[dir="rtl"] .form-control {
    text-align: right;
}

[dir="rtl"] .cart-icon {
    margin-left: 1rem;
    margin-right: 0;
}

/* Footer RTL Fixes */
[dir="rtl"] .store-footer .text-end {
    text-align: left !important;
}

[dir="rtl"] .store-footer .social-links a {
    margin-right: 0;
    margin-left: 0.75rem;
}

/* Language Switcher RTL */
[dir="rtl"] .language-switcher .dropdown-toggle {
    text-align: right;
}

[dir="rtl"] .language-switcher .dropdown-item {
    text-align: right;
}

/* Currency Badge RTL */
[dir="rtl"] .currency-badge {
    margin-left: 0;
    margin-right: 1rem;
}

/* Responsive RTL Fixes */
@media (max-width: 768px) {
    [dir="rtl"] .navbar-nav {
        flex-direction: column;
        text-align: right;
    }
    
    [dir="rtl"] .store-header .row {
        flex-direction: row-reverse;
    }
    
    [dir="rtl"] .store-header .col-md-6:first-child {
        text-align: center;
    }
    
    [dir="rtl"] .store-header .col-md-6:last-child {
        text-align: center;
    }
}

/* Store Logo in Navigation */
.store-logo-nav {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.store-name-nav {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--store-text-color);
    margin-right: 1rem;
}

/* Navigation Layout */
.navbar-nav {
    flex-direction: row !important;
}

.navbar-nav .nav-item {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* Ensure logo and navigation are on the same line */
.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

/* RTL Support for Navigation */
[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse !important;
}

[dir="rtl"] .navbar-nav .nav-item {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: 2rem;
}

[dir="rtl"] .store-logo-nav {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .store-name-nav {
    margin-right: 0;
    margin-left: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        margin-right: 1rem;
        margin-left: 0;
    }
    
    [dir="rtl"] .navbar-brand {
        margin-right: 0;
        margin-left: 1rem;
    }
    
    .store-logo-nav {
        max-height: 45px;
        max-width: 150px;
    }
    
    .store-name-nav {
        font-size: 1rem;
    }
}

/* Store Footer Enhanced Styles */

/* Footer Container */
.store-footer {
    background: var(--footer-bg-color, rgba(245, 245, 247, 0.9));
    color: var(--footer-text-color, #1D1D1F);
    border-radius: var(--footer-border-radius, 10px);
    margin: 2rem 1rem 0 1rem;
    box-shadow: var(--footer-shadow, 0 -2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}

.store-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Footer Row */
.store-footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.store-footer .row > div {
    flex: 1;
    min-width: 250px;
    padding: 0 1rem;
    margin-bottom: 1rem;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Footer Headings */
.store-footer h5 {
    color: var(--footer-heading-color, #1D1D1F);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
}

.store-footer h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--footer-accent-color, #007AFF);
    border-radius: 1px;
}

/* Footer Links */
.store-footer a {
    color: var(--footer-link-color, #1D1D1F);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.store-footer a:hover {
    color: var(--header-hover, #007AFF);
    transform: translateX(5px);
}

.store-footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--footer-link-hover-color, #007AFF);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.store-footer a:hover::before {
    width: 100%;
}

/* Footer Lists */
.store-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-footer ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
}

.store-footer ul li::before {
    content: '•';
    color: var(--footer-accent-color, #007AFF);
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

/* Footer Social Links */
.store-footer .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.store-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--footer-social-bg, rgba(0, 0, 0, 0.1));
    color: var(--footer-social-color, #1D1D1F);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-footer .social-links a:hover {
    background: var(--header-hover, #007AFF);
    color: var(--footer-social-hover-color, #FFFFFF);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Payment Methods Styling */
.store-footer .payment-methods {
    align-items: center;
}

.store-footer .payment-methods .payment-icons {
    gap: 0.75rem;
}

.store-footer .payment-methods .payment-icons i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-footer .payment-methods .payment-icons i:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .store-footer .payment-methods {
        flex-direction: column !important;
        gap: 1rem;
        text-align: center;
    }

    .store-footer .payment-methods .payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-footer .social-links {
        justify-content: center;
    }
}

.store-footer .social-links a::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: left 0.5s ease;
}

.store-footer .social-links a:hover::before {
    left: 100%;
}

/* Footer Bottom */
.store-footer .footer-bottom {
    border-top: 1px solid var(--footer-separator-color, rgba(0, 0, 0, 0.1));
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.store-footer .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--footer-text-color, #1D1D1F);
}

/* Footer Newsletter - إصلاح مهم! */
.store-footer .newsletter-section {
    background: var(--footer-newsletter-bg, rgba(0, 0, 0, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.store-footer .newsletter-section h6 {
    margin-bottom: 1rem;
    color: var(--footer-heading-color, #1D1D1F);
}

.store-footer .newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.store-footer .newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--footer-input-border, rgba(0, 0, 0, 0.1));
    border-radius: 25px;
    background: var(--footer-input-bg, rgba(255, 255, 255, 0.8));
    color: var(--footer-input-color, #1D1D1F);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.store-footer .newsletter-form input:focus {
    outline: none;
    border-color: var(--footer-input-focus-border, #007AFF);
    background: var(--footer-input-focus-bg, #FFFFFF);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.store-footer .newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--footer-button-bg, #007AFF);
    color: var(--footer-button-color, #FFFFFF);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.store-footer .newsletter-form button:hover {
    background: var(--footer-button-hover-bg, #0056CC);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Footer Contact Info */
.store-footer .contact-info {
    margin-bottom: 1rem;
}

.store-footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-footer .contact-info i {
    color: var(--footer-accent-color, #007AFF);
    width: 16px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .store-footer {
        border-radius: 6px;
        margin: 1rem 0.5rem 0 0.5rem;
        padding: 1rem 0;
    }
    
    .store-footer .container {
        padding: 1.5rem 0;
    }
    
    .store-footer .row > div {
        min-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .store-footer .social-links {
        justify-content: center;
    }
    
    .store-footer .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .store-footer .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .store-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .store-footer ul li::before {
        display: none;
    }
    
    .store-footer ul li {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .store-footer {
        border-radius: 4px;
        margin: 0.5rem 0.25rem 0 0.25rem;
        padding: 0.75rem 0;
    }
    
    .store-footer .container {
        padding: 1rem 0;
    }
    
    .store-footer .newsletter-section {
        padding: 1rem;
    }
    
    .store-footer h5 {
        font-size: 1rem;
    }
    
    .store-footer .social-links a {
        width: 35px;
        height: 35px;
    }
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0; /* تم تغييرها من 500px إلى 0 للسماح بارتفاعات صغيرة */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-section .hero-search {
    margin-bottom: 2rem;
}

.hero-section .hero-search .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.hero-section .hero-search input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .hero-search .btn {
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

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

/* Hero Slider Navigation */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 1rem;
}

.hero-slider-next {
    right: 1rem;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

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

.hero-slider-dot.active,
.hero-slider-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Hero Custom Backgrounds */
.hero-background-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-background-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    pointer-events: none;
    /* تأكد من أن الخلفية مرئية */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    pointer-events: none;
    /* تأكد من أن الخلفية مرئية */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* إصلاح مشكلة z-index للخلفيات */
.hero-section {
    position: relative;
    z-index: 1;
}

.hero-section .hero-background-custom {
    z-index: 0;
}

.hero-section .hero-content {
    z-index: 10;
}

/* Hero Background Overlay */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 0; /* تم تغييرها من 400px إلى 0 */
    }
    
    .hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section .hero-search .input-group {
        max-width: 100%;
    }
    
    .hero-slider-arrow {
        padding: 0.75rem 0.5rem;
        font-size: 1.25rem;
    }
    
    .hero-slider-dots {
        bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 0; /* تم تغييرها من 350px إلى 0 */
    }
    
    .hero-section .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}
