@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* استثناء الأيقونات من تطبيق الخط */
i,
i::before,
i::after {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    display: inline-block !important;
}

i.fas,
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

i.far,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

i.fab,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

html {
    zoom: 0.92;
}

body {
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    direction: rtl;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-banner .container {
    padding: 0 !important;
    max-width: 100%;
}

/* Header */
.header {
    background-color: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(109, 40, 217, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    direction: ltr;
}

.cart-icon-btn {
    order: 1;
    margin-right: auto;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 0 0 auto;
    justify-content: flex-end;
    direction: rtl;
    order: 2;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.cart-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cart-icon-btn:hover {
    color: #6366f1;
    background: rgba(109, 40, 217, 0.05);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    box-shadow: 0 2px 6px rgba(109, 40, 217, 0.3);
}

.logo img {
    max-height: 55px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.9;
}

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

.nav-header {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-style: normal;
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #6366f1;
}

.nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-right: 0;
    cursor: pointer;
    pointer-events: auto;
    padding: 4px;
    margin-left: 8px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    padding: 12px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(109, 40, 217, 0.05) 100%);
    color: #6366f1;
    padding-right: 25px;
}

.dropdown-menu a i {
    font-size: 1rem;
    color: #6366f1;
    width: 20px;
    text-align: center;
}

.dropdown-menu a::after {
    display: none;
}

/* Contact Section */
.contact-section {
    padding: 70px 70px;
    background-color: #fafafa;
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 40, 217, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
}

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

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-link {
    color: #6366f1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #6d28d9;
    transform: translateX(-3px);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(109, 40, 217, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

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

/* Welcome Hero Section */
.welcome-hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 70px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
}

.welcome-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.welcome-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(109, 40, 217, 0.05) 50%, rgba(240, 147, 251, 0.05) 100%);
}

.welcome-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(109, 40, 217, 0.08) 0%, transparent 50%);
    animation: welcomePatternMove 15s ease-in-out infinite;
}

@keyframes welcomePatternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-15px, -15px);
    }
}

.welcome-hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .welcome-hero-content {
        grid-template-columns: 1fr;
    }
    
    .welcome-text-section {
        order: 2;
    }
    
    .welcome-visual-section {
        order: 1;
    }
}

.welcome-text-section {
    animation: fadeInUp 0.8s ease-out;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: #6366f1;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.welcome-badge i {
    color: #fbbf24;
    animation: starRotate 3s ease-in-out infinite;
}

@keyframes starRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.welcome-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.welcome-brand {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.welcome-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 45px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.welcome-stat-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.welcome-stat-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 12px;
    color: #6366f1;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.welcome-stat-content {
    flex: 1;
}

.welcome-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 5px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.welcome-visual-section {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.welcome-illustration {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5rem;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    z-index: 2;
    animation: centerIconPulse 3s ease-in-out infinite;
}

@keyframes centerIconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 25px 70px rgba(99, 102, 241, 0.4);
    }
}

.welcome-icon-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.1);
    animation: iconCircleFloat 4s ease-in-out infinite;
}

.welcome-icon-circle.circle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.welcome-icon-circle.circle-2 {
    top: 10%;
    left: 10%;
    animation-delay: 1s;
}

.welcome-icon-circle.circle-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.welcome-icon-circle.circle-4 {
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes iconCircleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.welcome-icon-circle:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Call to Action Section */
.cta-section {
    position: relative;
    width: 100%;
    padding: 70px 70px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: ctaPatternMove 20s linear infinite;
}

@keyframes ctaPatternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #fff;
    color: #6366f1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Hero Section - Removed */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(240, 147, 251, 0.95) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-title-line.highlight {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: #fff;
    color: #667eea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(-5px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-tech-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: svgFloat 6s ease-in-out infinite;
}

@keyframes svgFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-svg .bg-circle {
    animation: circlePulse 4s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-svg .device-main {
    animation: deviceGlow 3s ease-in-out infinite;
}

@keyframes deviceGlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-svg .code-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: codeDraw 3s ease-in-out infinite;
}

.hero-svg .code-line:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-svg .code-line:nth-child(3) {
    animation-delay: 1s;
}

.hero-svg .code-line:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes codeDraw {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 1000;
    }
}

.hero-svg .mobile-device {
    animation: mobileFloat 4s ease-in-out infinite;
}

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

.hero-svg .cloud {
    animation: cloudMove 5s ease-in-out infinite;
}

@keyframes cloudMove {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.3;
    }
}

.hero-svg .float-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-svg .float-dot:nth-child(1) {
    animation-delay: 0s;
}

.hero-svg .float-dot:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-svg .float-dot:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

.hero-svg .connection {
    animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.2;
        stroke-dashoffset: 0;
    }
    50% {
        opacity: 0.5;
        stroke-dashoffset: 10;
    }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatElement 4s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.3s;
}

.floating-element.element-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2.6s;
}

.floating-element.element-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 3.9s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Banner (for banner-2) */
.hero-banner {
    width: 100%;
    padding: 75px 70px;
    margin: 0;
    display: block;
    background-color: #fafafa;
}

.banner-2 {
    padding: 0 70px 0 !important;
}

.banner-image {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Contact Banner */
.contact-banner {
    width: 100%;
    padding: 30px 70px;
    margin: 0;
    display: block;
    background-color: #fafafa;
}

.contact-banner .container {
    padding: 0 !important;
    max-width: 100%;
}

.contact-banner .banner-image {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-banner .banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Products Section */
.products {
    padding: 70px 70px;
    margin-top: 0;
    background-color: #fafafa;
    position: relative;
}

.products .container {
    max-width: 100%;
    padding: 0;
}

.products .section-header {
    margin-bottom: 50px;
}

.category-section .container {
    max-width: 100%;
    padding: 0;
}

.products::before {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.related-products .products-grid,
.category-section .products-grid {
    gap: 25px;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.products-grid .product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.products-grid .product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.products-grid .product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.products-grid .product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card-link:hover .product-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
}

.product-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.favorite-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #999;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    color: #e74c3c;
}

.favorite-btn svg {
    width: 20px;
    height: 20px;
}

.product-card-wrapper {
    position: relative;
}

.product-image {
    width: 100%;
    margin-bottom: 0;
    display: block;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    padding: 0;
    transition: transform 0.3s ease;
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    color: #6366f1;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    white-space: nowrap;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
}

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

.quick-view-btn:hover {
    background: #fff;
    border-color: #6366f1;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.quick-view-btn i {
    font-size: 1rem;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 400;
    color: #6d28d9;
    margin-bottom: 15px;
    direction: rtl;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.2;
}

.product-price .price-number {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 400;
    font-variant-numeric: arabic-indic;
    font-feature-settings: "tnum";
    letter-spacing: 0;
    display: inline-block;
}

.product-price .currency {
    font-size: 1.4rem;
    font-weight: 400;
    color: #6d28d9;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1;
    display: inline-block;
    unicode-bidi: embed;
    direction: rtl;
    font-feature-settings: normal;
    vertical-align: baseline;
}

.add-to-cart-btn {
    background: #fff;
    color: #6d28d9;
    border: 2px solid #6d28d9;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #6d28d9 100%);
    color: #fff;
    border-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.add-to-cart-btn:active,
.add-to-cart-btn.active {
    background: linear-gradient(135deg, #6d28d9 0%, #6d28d9 100%);
    color: #fff;
    border-color: #6d28d9;
}

.add-to-cart-btn i.fa-shopping-cart {
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 60px 70px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(109, 40, 217, 0.03) 100%);
    border-radius: 0 0 0 200px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    direction: rtl;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.brand-name {
    color: #6366f1;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(109, 40, 217, 0.3) 100%);
    border-radius: 3px;
    z-index: -1;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 8px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    max-width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.25);
    position: relative;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: brightness(1.1);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    color: #6366f1;
    text-align: center;
    padding: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
    z-index: 1;
}

.about-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.about-image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.about-image-placeholder small {
    font-size: 0.9rem;
    color: #666;
}

/* Services Overview Section */
.services-overview {
    padding: 60px 70px;
    background-color: #fff;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

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

.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(109, 40, 217, 0.2);
    border-color: rgba(109, 40, 217, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.service-link:hover {
    color: #6d28d9;
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 70px 70px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

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

.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.why-card:nth-child(5) {
    animation-delay: 0.5s;
}

.why-card:nth-child(6) {
    animation-delay: 0.6s;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 0 14px 0 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(109, 40, 217, 0.2);
    border-color: rgba(109, 40, 217, 0.2);
}

.why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 1.6rem;
    color: #6366f1;
    transition: color 0.3s ease;
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 70px 70px;
    margin-top: 0;
    background-color: #fafafa;
}

.features .container {
    max-width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
    border-color: rgba(109, 40, 217, 0.2);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #6366f1 !important;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: scale(1.05);
}

.feature-card:hover .feature-icon i {
    color: #fff !important;
}

/* تسوق آمن - حركة حقيبة التسوق */
.feature-card:nth-child(1):hover .feature-icon i {
    animation: shoppingBagHover 0.8s ease-in-out infinite;
}

/* تسليم سريع - حركة الشحن */
.feature-card:nth-child(2):hover .feature-icon i {
    animation: shippingMoveHover 1s ease-in-out infinite;
}

/* فريقنا - حركة الفريق */
.feature-card:nth-child(3):hover .feature-icon i {
    animation: teamPulseHover 0.9s ease-in-out infinite;
}

@keyframes shoppingBagHover {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(8px) rotate(-8deg);
    }
}

@keyframes shippingMoveHover {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes teamPulseHover {
    0%, 100% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.1) translateX(6px);
    }
}

.feature-card h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 70px 70px 25px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.footer-section h3:first-child {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.3rem;
}

.footer-section:nth-child(2) h3,
.footer-section:nth-child(3) h3 {
    font-size: 1.3rem;
}

.footer-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.commercial-register {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
}

.register-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register-title {
    margin: 0 !important;
    font-size: 1.2rem !important;
    color: #333 !important;
    font-weight: 400 !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

.register-number {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: #333 !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

.saudi-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.phone:hover {
    opacity: 0.8;
}

.phone span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    direction: ltr;
    text-align: left;
    display: inline-block;
}

.phone i.fa-phone {
    color: #666;
    font-size: 1.2rem;
}

.email {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
    margin-top: 15px;
}

.email:hover {
    opacity: 0.8;
}

.email span {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.email i.fa-envelope {
    color: #666;
    font-size: 1.2rem;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #6366f1;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: #6d28d9;
}

.copy-btn i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    animation: whatsappPulse 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappRipple 2s ease-out infinite;
    z-index: -1;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-float:active {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 3px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 34px;
    color: white;
    transition: transform 0.3s ease;
    z-index: 1;
}

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

/* Pulse Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Ripple Animation */
@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Cart Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    direction: rtl;
    animation: fadeIn 0.3s ease;
}

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

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

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

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.cart-modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.close-cart:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

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

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}

.empty-cart-message {
    text-align: center;
    color: #999;
    padding: 60px 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.4;
}

.cart-item-price {
    color: #6366f1;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cart-item-controls button {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.cart-item-controls button:hover {
    background: #6366f1;
    color: white;
    transform: scale(1.1);
}

.cart-item-controls span {
    min-width: 35px;
    text-align: center;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1rem;
}

.remove-item {
    color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.1) !important;
}

.remove-item:hover {
    background: #e74c3c !important;
    color: white !important;
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.cart-total {
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6d28d9 0%, #6366f1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.checkout-btn:active:not(:disabled) {
    transform: translateY(0);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 0 70px 75px;
    margin-top: 0;
    background-color: #fafafa;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.product-detail-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6366f1;
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.product-detail-price .price-number {
    font-variant-numeric: arabic-indic;
    font-feature-settings: "tnum";
}

.product-detail-price .currency {
    font-size: 1.8rem;
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
}

.product-detail-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.product-detail-description p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-detail-section .section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 30px 0 15px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

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

.features-list li {
    padding: 12px 0;
    padding-right: 25px;
    position: relative;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.features-list li::before {
    content: "–";
    position: absolute;
    right: 0;
    color: #6366f1;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-detail-right {
    position: sticky;
    top: 100px;
}

.product-detail-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.add-to-cart-btn-large {
    background: #fff;
    color: #6d28d9;
    border: 2px solid #6d28d9;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    margin-top: 20px;
}

.add-to-cart-btn-large:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #6d28d9 100%);
    color: #fff;
    border-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.add-to-cart-btn-large:active,
.add-to-cart-btn-large.active {
    background: linear-gradient(135deg, #6d28d9 0%, #6d28d9 100%);
    color: #fff;
    border-color: #6d28d9;
}

.add-to-cart-btn-large i.fa-shopping-cart {
    font-size: 1.1rem;
}

.related-products {
    padding: 0 70px 75px;
    margin-top: 0;
    background-color: #fafafa;
}

.related-products .container {
    max-width: 100%;
    padding: 0;
}

.related-products-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.related-products .products-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

/* Breadcrumb Styles */
.breadcrumb-container {
    background-color: #fff;
    padding: 20px 70px;
    border-bottom: 1px solid #eee;
    margin-top: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    direction: rtl;
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6d28d9;
}

.breadcrumb-separator {
    color: #999;
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: #666;
    font-size: 0.95rem;
}

/* Category Pages Styles */
.category-section {
    padding: 0 70px 75px;
    margin-top: 0;
    background-color: #fafafa;
}

.category-section .products-grid {
    margin-top: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    direction: rtl;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-count-text {
    display: inline-block;
}

.product-count-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.no-products-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 2rem;
}

.no-products-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.no-products-message p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-products-message .reset-filters-btn {
    margin-top: 10px;
}

/* Filters Section */
.filters-section {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    direction: rtl;
    border: 1px solid rgba(109, 40, 217, 0.1);
    position: relative;
    overflow: hidden;
}

.filters-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
    flex: 1;
}

.filter-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    border-radius: 2px;
}

.filter-group select,
.filter-group input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-group select:hover,
.filter-group input:hover {
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #6d28d9;
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
    transform: translateY(-1px);
}

.filter-group input[type="number"] {
    width: 140px;
}

.price-range-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-range-separator {
    color: #6366f1;
    font-size: 1.1rem;
    font-weight: 600;
}

.reset-filters-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reset-filters-btn:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.reset-filters-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.reset-filters-btn:hover i {
    transform: rotate(180deg);
}

.products-count {
    font-size: 1rem;
    color: #666;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* Loading Spinner */
.filter-loading-spinner {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    min-height: 200px;
}

.filter-loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(99, 102, 241, 0.1);
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
}

.filter-loading-spinner p {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    min-width: 320px;
    max-width: 450px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 40, 217, 0.1);
    border-right: 4px solid #6366f1;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    border-right-color: #10b981;
}

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

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.toast-error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.5;
}

.toast-close {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

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

/* Quick View Modal */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-modal.active {
    display: flex;
    opacity: 1;
}

.quick-view-content {
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quick-view-modal.active .quick-view-content {
    transform: scale(1);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quick-view-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

.quick-view-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.quick-view-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-view-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quick-view-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.quick-view-price {
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.quick-view-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-view-btn {
    flex: 1;
    min-width: 150px;
    padding: 14px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-view-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #6d28d9 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.quick-view-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.quick-view-btn-secondary {
    background: #f3f4f6;
    color: #333;
    border: 2px solid #e5e7eb;
}

.quick-view-btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.empty-category-section {
    padding: 0 70px 150px;
    margin-top: 0;
    background-color: #fafafa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-category-content {
    text-align: center;
    max-width: 600px;
}

.empty-category-content i {
    font-size: 5rem;
    color: #6366f1;
    margin-bottom: 30px;
    display: block;
}

.empty-category-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.empty-category-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* Policy Pages Styles */
.policy-section {
    padding: 0 70px 75px;
    margin-top: 0;
    background-color: #fafafa;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.policy-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 35px 0 15px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.policy-paragraph {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.policy-list li {
    position: relative;
    padding-right: 22px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    top: 0;
    color: #6366f1;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(109, 40, 217, 0.05);
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 8px 12px;
    order: 3;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(109, 40, 217, 0.15);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: rgba(109, 40, 217, 0.2);
    color: #6366f1;
}

/* Responsive Design */
/* Hero Section Responsive */
@media (max-width: 1200px) {
    .hero-section {
        padding: 80px 50px;
        min-height: 75vh;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-item {
        padding: 12px 18px;
    }
    
    .hero-visual {
        height: 450px;
    }
    
    .hero-svg {
        max-width: 90%;
    }
}

@media (max-width: 1200px) {
    .welcome-hero-section {
        padding: 80px 50px;
        min-height: 80vh;
    }
    
    .welcome-hero-content {
        gap: 60px;
    }
    
    .welcome-title {
        font-size: 3.2rem;
    }
    
    .welcome-description {
        font-size: 1.15rem;
    }
    
    .welcome-stats {
        gap: 15px;
    }
    
    .welcome-stat-card {
        padding: 20px 15px;
    }
    
    .welcome-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .welcome-stat-number {
        font-size: 1.8rem;
    }
    
    .welcome-center-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .welcome-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .welcome-illustration {
        height: 450px;
    }
    
    .cta-section {
        padding: 60px 50px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        padding: 16px 30px;
        font-size: 1.05rem;
    }
    
    .services-overview,
    .products,
    .why-choose-us {
        padding: 60px 50px;
    }
    
    .hero-banner {
        padding: 60px 50px;
    }
    
    .contact-banner {
        padding: 25px 50px;
    }
    
    .features {
        padding: 60px 50px;
    }
    
    .footer {
        padding: 60px 50px 25px;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .saudi-icon {
        width: 45px;
        height: 45px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .services-grid,
    .why-grid {
        gap: 25px;
    }
    
    .products-grid {
        gap: 25px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 1.9rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-image-wrapper {
        max-width: 280px;
        height: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-banner,
    .products,
    .features,
    .product-detail-section,
    .related-products,
    .category-section,
    .policy-section {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .breadcrumb-container {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .products {
        padding: 60px 50px;
        margin-top: 0;
    }
    
    .related-products {
        padding: 0 50px 60px;
        margin-top: 0;
    }
    
    .category-section {
        padding: 0 50px 60px;
        margin-top: 0;
    }
    
    .products-grid,
    .related-products .products-grid,
    .category-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .welcome-hero-section {
        padding: 60px 40px;
        min-height: 75vh;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
    
    .welcome-description {
        font-size: 1.1rem;
    }
    
    .welcome-stats {
        gap: 12px;
    }
    
    .welcome-stat-card {
        padding: 18px 12px;
    }
    
    .welcome-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .welcome-stat-number {
        font-size: 1.7rem;
    }
    
    .welcome-center-icon {
        width: 95px;
        height: 95px;
        font-size: 2.8rem;
    }
    
    .welcome-icon-circle {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .welcome-illustration {
        height: 420px;
    }
    
    .cta-section {
        padding: 55px 40px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
    }
    
    .cta-content {
        gap: 25px;
    }
    
    .cta-btn {
        padding: 16px 28px;
        font-size: 1.05rem;
    }
    
    .services-overview,
    .products,
    .why-choose-us {
        padding: 55px 40px;
    }
    
    .hero-banner {
        padding: 55px 40px;
    }
    
    .contact-banner {
        padding: 25px 40px;
    }
    
    .features {
        padding: 55px 40px;
    }
    
    .footer {
        padding: 55px 40px 20px;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .saudi-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-header {
        margin-bottom: 45px;
    }
    
    .services-grid,
    .why-grid {
        gap: 22px;
    }
    
    .products-grid {
        gap: 22px;
    }
    
    .about-section,
    .services-overview,
    .why-choose-us {
        padding: 55px 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .about-image-wrapper {
        max-width: 280px;
        height: 280px;
        padding: 35px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-banner,
    .products,
    .features,
    .product-detail-section,
    .related-products,
    .category-section,
    .policy-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .breadcrumb-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-view-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .quick-view-btn span {
        display: none;
    }
    
    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: 100%;
    }
    
    .quick-view-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .features .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-card:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    .hero-banner:first-of-type {
        padding: 50px 40px 0 !important;
    }
    
    .banner-2 {
        padding: 0 40px 0 !important;
    }
    
    .contact-banner {
        padding: 25px 40px;
    }
    
    .products {
        padding: 50px 40px;
        margin-top: 0;
    }
    
    .related-products {
        padding: 0 40px 50px;
        margin-top: 0;
    }
    
    .category-section {
        padding: 0 40px 50px;
        margin-top: 0;
    }
    
    .features {
        padding: 50px 40px;
        margin-top: 0;
    }
}

@media (max-width: 968px) {
    .hero-section {
        padding: 60px 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-svg {
        max-width: 85%;
    }
}

@media (max-width: 968px) {
    .about-section,
    .services-overview,
    .why-choose-us {
        padding: 50px 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-title {
        font-size: 1.7rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 18px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .about-image-wrapper {
        max-width: 260px;
        height: 260px;
        padding: 30px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-banner,
    .products,
    .features,
    .product-detail-section,
    .related-products,
    .category-section,
    .policy-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .breadcrumb-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .products-grid,
    .related-products .products-grid,
    .category-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .related-products {
        padding: 0 30px 60px;
        margin-top: 0;
    }
    
    .category-section {
        padding: 0 30px 60px;
        margin-top: 0;
    }
    
    .filters-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .filter-group {
        width: 100%;
        min-width: auto;
    }
    
    .price-range-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .price-range-group input {
        flex: 1;
        width: auto;
    }
    
    .reset-filters-btn {
        width: 100%;
        margin-top: 0;
    }
    
    .features .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 28px 18px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .feature-icon i {
        font-size: 1.7rem;
    }
    
    .feature-card h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.88rem;
    }
    
    .feature-card:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    .footer {
        padding: 50px 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .commercial-register {
        margin-top: 18px;
        gap: 12px;
    }
    
    .saudi-icon {
        width: 45px;
        height: 45px;
    }
    
    .register-title {
        font-size: 1.1rem !important;
    }
    
    .register-number {
        font-size: 1rem !important;
    }
    
    .phone,
    .email {
        margin-bottom: 12px;
    }
    
    .phone span,
    .email span {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 15px;
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: right;
    }
    
    .header-content {
        position: relative;
    }
}

@media (max-width: 768px) {
    .welcome-hero-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .welcome-hero-content {
        gap: 30px;
    }
    
    .welcome-badge {
        font-size: 0.85rem;
        padding: 7px 16px;
        margin-bottom: 18px;
    }
    
    .welcome-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .welcome-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    
    .welcome-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .welcome-stat-card {
        padding: 16px 14px;
        flex-direction: row;
        text-align: right;
        gap: 12px;
    }
    
    .welcome-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .welcome-stat-number {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    
    .welcome-stat-label {
        font-size: 0.88rem;
    }
    
    .welcome-visual-section {
        max-width: 100%;
        order: -1;
    }
    
    .welcome-illustration {
        height: 280px;
    }
    
    .welcome-center-icon {
        width: 70px;
        height: 70px;
        font-size: 1.9rem;
    }
    
    .welcome-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .welcome-icon-circle.circle-1 {
        top: 10%;
        right: 10%;
    }
    
    .welcome-icon-circle.circle-2 {
        top: 10%;
        left: 10%;
    }
    
    .welcome-icon-circle.circle-3 {
        bottom: 10%;
        right: 10%;
    }
    
    .welcome-icon-circle.circle-4 {
        bottom: 10%;
        left: 10%;
    }
    
    .cta-section {
        padding: 45px 20px;
    }
    
    .cta-content {
        gap: 20px;
    }
    
    .cta-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
        font-size: 0.98rem;
    }
    
    .services-overview,
    .products,
    .why-choose-us {
        padding: 45px 20px;
    }
    
    .hero-banner {
        padding: 45px 20px;
    }
    
    .features {
        padding: 45px 20px;
    }
    
    .features .container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h2 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-card:nth-child(1) {
        grid-column: 1;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .services-grid,
    .why-grid {
        gap: 18px;
    }
    
    .products-grid {
        gap: 18px;
    }
    
    html {
        zoom: 1;
    }
    
    body {
        background-color: #fafafa;
    }
    
    .header {
        background-color: #fafafa;
    }
    
    .footer {
        background-color: #fafafa;
    }
    
    .about-section,
    .services-overview,
    .products,
    .why-choose-us {
        padding: 40px 12px;
    }
    
    .hero-banner {
        padding: 40px 12px;
    }
    
    .contact-banner {
        padding: 20px 12px;
    }
    
    .features {
        padding: 40px 12px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .services-grid,
    .why-grid {
        gap: 18px;
    }
    
    .products-grid {
        gap: 18px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-image-wrapper {
        max-width: 240px;
        height: 240px;
        padding: 30px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .why-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .why-icon i {
        font-size: 1.4rem;
    }
    
    .why-card h3 {
        font-size: 1.1rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    .hero-banner,
    .products,
    .features,
    .product-detail-section,
    .related-products,
    .category-section,
    .policy-section {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 50px;
        padding-bottom: 50px;
        background-color: #fafafa;
    }
    
    .product-detail-section,
    .category-section,
    .policy-section {
        padding: 0 12px 40px;
        margin-top: 25px;
    }
    
    .hero-banner:first-of-type {
        padding: 20px 12px 0 !important;
    }
    
    .banner-2 {
        padding: 0 12px 0 !important;
    }
    
    .breadcrumb-container {
        padding: 15px 12px;
    }
    
    .header {
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 12px;
    }
    
    .cart-icon-btn {
        order: 1;
        margin-right: 0;
        padding: 10px;
        font-size: 1.4rem;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: 3px;
        left: 3px;
    }
    
    .header-center {
        order: 2;
        flex: 1;
        margin-left: 0;
        justify-content: space-between;
        gap: 10px;
    }
    
    .logo img {
        max-width: 120px;
        max-height: 45px;
        height: auto;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        right: 15px;
        left: auto;
        bottom: auto;
        background: #fff;
        flex-direction: column;
        padding: 0;
        gap: 0;
        z-index: 9999;
        overflow: hidden;
        animation: slideInRight 0.3s ease;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        width: auto;
        min-width: 280px;
        max-width: 90vw;
        max-height: calc(100vh - 100px);
    }
    
    .nav::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav::-webkit-scrollbar-track {
        background: #f5f5f5;
    }
    
    .nav::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 10px;
    }
    
    .nav::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        background: #fff;
        position: relative;
        z-index: 10;
        border-radius: 12px 12px 0 0;
    }
    
    .nav-header h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        font-family: 'IBM Plex Sans Arabic', sans-serif;
    }
    
    .close-menu-btn {
        background: transparent;
        border: none;
        font-size: 1.4rem;
        color: #666;
        cursor: pointer;
        padding: 5px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        border-radius: 4px;
        font-weight: 300;
    }
    
    .close-menu-btn:hover {
        background: #f5f5f5;
        color: #333;
    }
    
    .close-menu-btn:active {
        background: #eee;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: column;
        padding: 0;
        gap: 0;
        overflow-y: auto;
        max-height: calc(100vh - 180px);
    }
    
    .nav-links::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-links::-webkit-scrollbar-track {
        background: #f5f5f5;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 10px;
    }
    
    .nav a {
        font-size: 16px;
        padding: 18px 25px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: right;
        font-weight: 600;
        transition: all 0.2s ease;
        color: #333;
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        background: #fff;
        white-space: nowrap;
    }
    
    .nav a i {
        font-size: 1.1rem;
        color: #6366f1;
        width: 24px;
        text-align: center;
        transition: color 0.2s ease;
    }
    
    .nav a span {
        flex: 1;
    }
    
    .nav a:hover {
        background: #fafafa;
        color: #6366f1;
    }
    
    .nav a:hover i {
        color: #6d28d9;
    }
    
    .nav a:active {
        background: #f5f5f5;
    }
    
    .nav a::after {
        display: none;
    }
    
    .nav a::before {
        display: none;
    }
    
    .nav a:last-child {
        border-bottom: none;
        border-radius: 0 0 12px 12px;
    }
    
    @media (max-width: 480px) {
        .welcome-hero-section {
            padding: 35px 15px;
            min-height: auto;
        }
        
        .welcome-hero-content {
            gap: 25px;
        }
        
        .welcome-badge {
            font-size: 0.78rem;
            padding: 6px 14px;
            margin-bottom: 15px;
        }
        
        .welcome-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .welcome-description {
            font-size: 0.88rem;
            margin-bottom: 22px;
            line-height: 1.65;
        }
        
        .welcome-stats {
            gap: 8px;
        }
        
        .welcome-stat-card {
            padding: 14px 12px;
            gap: 10px;
        }
        
        .welcome-stat-icon {
            width: 42px;
            height: 42px;
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        
        .welcome-stat-number {
            font-size: 1.4rem;
            margin-bottom: 2px;
        }
        
        .welcome-stat-label {
            font-size: 0.78rem;
        }
        
        .welcome-visual-section {
            order: -1;
        }
        
        .welcome-illustration {
            height: 250px;
        }
        
        .welcome-center-icon {
            width: 60px;
            height: 60px;
            font-size: 1.7rem;
        }
        
        .welcome-icon-circle {
            width: 42px;
            height: 42px;
            font-size: 1rem;
        }
        
        .welcome-icon-circle.circle-1 {
            top: 8%;
            right: 8%;
        }
        
        .welcome-icon-circle.circle-2 {
            top: 8%;
            left: 8%;
        }
        
        .welcome-icon-circle.circle-3 {
            bottom: 8%;
            right: 8%;
        }
        
        .welcome-icon-circle.circle-4 {
            bottom: 8%;
            left: 8%;
        }
        
        .cta-section {
            padding: 35px 15px;
        }
        
        .cta-content {
            gap: 18px;
        }
        
        .cta-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .cta-description {
            font-size: 0.88rem;
            margin-bottom: 18px;
            line-height: 1.6;
        }
        
        .cta-buttons {
            gap: 10px;
        }
        
        .cta-btn {
            padding: 14px 20px;
            font-size: 0.92rem;
        }
        
        .cta-btn i {
            font-size: 1.1rem;
        }
        
        .services-overview,
        .products,
        .why-choose-us {
            padding: 35px 15px;
        }
        
        .hero-banner {
            padding: 35px 15px;
        }
        
        .contact-banner {
            padding: 18px 15px;
        }
        
        .features {
            padding: 35px 15px;
        }
        
        .features .container {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .feature-card {
            padding: 22px 18px;
        }
        
        .feature-icon {
            width: 55px;
            height: 55px;
            margin-bottom: 15px;
        }
        
        .feature-icon i {
            font-size: 1.4rem;
        }
        
        .feature-card h2 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        
        .feature-card p {
            font-size: 0.85rem;
        }
        
        .feature-card:nth-child(1) {
            grid-column: 1;
        }
        
        .section-header {
            margin-bottom: 30px;
        }
        
        .services-grid,
        .why-grid {
            gap: 15px;
        }
        
        .products-grid {
            gap: 15px;
        }
    }
    
    @media (max-width: 480px) {
        .nav {
            top: 70px;
            right: 10px;
            left: 10px;
            width: auto;
            min-width: auto;
            max-width: none;
        }
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
        background: rgba(109, 40, 217, 0.05);
        border-radius: 8px;
        padding: 8px 12px;
        transition: all 0.3s ease;
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(109, 40, 217, 0.15);
        transform: scale(1.05);
    }
    
    .header-center {
        gap: 10px;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .hero-banner img {
        border-radius: 12px;
    }
    
    .products {
        padding: 40px 12px;
        margin-top: 0;
    }
    
    .features {
        padding: 40px 12px;
    }
    
    .products-grid,
    .related-products .products-grid,
    .category-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .related-products {
        padding: 0 12px 40px;
        margin-top: 0;
    }
    
    .category-section {
        padding: 0 12px 40px;
        margin-top: 0;
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-image {
        height: auto;
    }
    
    .product-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        padding: 0;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .product-price {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .product-price .currency {
        font-size: 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .add-to-cart-btn i.fa-shopping-cart {
        font-size: 0.9rem;
    }
    
    .features {
        padding: 45px 20px;
        margin-top: 0;
    }
    
    .features .container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h2 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        left: 20px;
        border-width: 2px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-3px);
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-right {
        position: relative;
        top: 0;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
    }
    
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-section {
        padding: 0 8px 30px;
        margin-top: 25px;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .product-count-number {
        font-size: 1.1rem;
        padding: 3px 10px;
    }
    
    .filters-section {
        padding: 20px 15px;
        margin-bottom: 30px;
        border-radius: 12px;
    }
    
    .filter-group label {
        font-size: 0.9rem;
    }
    
    .filter-group select,
    .filter-group input {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .filter-group input[type="number"] {
        width: 100%;
    }
    
    .price-range-group {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .no-products-message {
        padding: 50px 20px;
        margin-top: 25px;
    }
    
    .no-products-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .no-products-message h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .no-products-message p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .quick-view-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: 100%;
        padding: 15px 18px;
    }
    
    .quick-view-body {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        gap: 30px;
    }
    
    .filter-loading-spinner {
        padding: 35px 20px;
        min-height: 180px;
    }
    
    .price-range-separator {
        display: none;
    }
    
    .reset-filters-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .empty-category-section {
        padding: 80px 8px;
    }
    
    .empty-category-content i {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .empty-category-content h1 {
        font-size: 1.8rem;
    }
    
    .empty-category-content p {
        font-size: 0.95rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .filters-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .filter-group {
        width: 100%;
        min-width: auto;
    }
    
    .price-range-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .price-range-group input {
        flex: 1;
        width: auto;
    }
    
    .reset-filters-btn {
        width: 100%;
        margin-top: 0;
    }
    
    .policy-section {
        padding: 0 8px 30px;
        margin-top: 25px;
    }
    
    .product-detail-section {
        padding: 0 8px 30px;
        margin-top: 25px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-heading {
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 45px 20px 18px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .commercial-register {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .saudi-icon {
        width: 40px;
        height: 40px;
    }
    
    .register-title {
        font-size: 1rem !important;
    }
    
    .register-number {
        font-size: 0.95rem !important;
    }
    
    .phone,
    .email {
        margin-bottom: 10px;
    }
    
    .phone span,
    .email span {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 18px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 100px;
    }
    
    .about-section,
    .services-overview,
    .why-choose-us {
        padding: 35px 8px;
    }
    
    .about-title {
        font-size: 1.4rem;
    }
    
    .about-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 18px 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-image-wrapper {
        max-width: 220px;
        height: 220px;
        padding: 25px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    .service-card {
        padding: 22px 18px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .why-card {
        padding: 22px 18px;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .why-icon i {
        font-size: 1.2rem;
    }
    
    .why-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .why-card p {
        font-size: 0.85rem;
    }
    
    .hero-banner:first-of-type {
        padding: 15px 8px 0 !important;
    }
    
    .banner-2 {
        padding: 0 8px 0 !important;
    }
    
    .hero-banner,
    .products,
    .features,
    .product-detail-section,
    .related-products,
    .category-section,
    .policy-section,
    .contact-banner {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .hero-banner img,
    .contact-banner img {
        border-radius: 10px;
    }
    
    .contact-banner {
        padding: 18px 8px;
    }
    
    .breadcrumb-container {
        padding: 15px 8px;
    }
    
    .products {
        padding: 35px 8px;
        margin-top: 0;
    }
    
    .products-grid,
    .related-products .products-grid,
    .category-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .related-products {
        padding: 0 8px 30px;
        margin-top: 0;
    }
    
    .category-section {
        padding: 0 8px 30px;
        margin-top: 0;
    }
    
    .category-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-count-number {
        font-size: 1rem;
        padding: 3px 8px;
    }
    
    .no-products-message {
        padding: 40px 15px;
        margin-top: 20px;
        border-radius: 12px;
    }
    
    .no-products-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .no-products-message h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .no-products-message p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .quick-view-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .quick-view-btn span {
        display: none;
    }
    
    .toast-notification {
        bottom: 20px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: 100%;
        padding: 15px 18px;
    }
    
    .quick-view-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .quick-view-close {
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
    }
    
    .filter-loading-spinner {
        padding: 30px 15px;
        min-height: 150px;
    }
    
    .filter-loading-spinner .spinner {
        width: 40px;
        height: 40px;
    }
    
    .filter-loading-spinner p {
        font-size: 0.9rem;
    }
    
    .product-image {
        height: auto;
    }
    
    .product-image img {
        padding: 0;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .product-price {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .product-price .currency {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .add-to-cart-btn i.fa-shopping-cart {
        font-size: 0.85rem;
    }
    
    .cart-modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
        margin: auto auto 0 auto;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .cart-modal-header {
        padding: 20px 20px;
    }
    
    .cart-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .close-cart {
        width: 32px;
        height: 32px;
        font-size: 2rem;
    }
    
    .cart-items {
        padding: 15px 20px;
        max-height: calc(92vh - 200px);
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px 0;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-info {
        flex: 1;
        min-width: calc(100% - 85px);
    }
    
    .cart-item-info h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }
    
    .cart-item-controls button {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .cart-item-controls span {
        min-width: 40px;
        font-size: 1.1rem;
    }
    
    .cart-footer {
        padding: 20px;
        position: sticky;
        bottom: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .cart-total {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .checkout-btn {
        padding: 14px;
        font-size: 1.05rem;
        border-radius: 10px;
    }
    
    .footer {
        padding: 40px 15px 15px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .commercial-register {
        margin-top: 12px;
        gap: 8px;
    }
    
    .saudi-icon {
        width: 35px;
        height: 35px;
    }
    
    .register-title {
        font-size: 0.9rem !important;
    }
    
    .register-number {
        font-size: 0.85rem !important;
    }
    
    .phone,
    .email {
        margin-bottom: 8px;
    }
    
    .phone span,
    .email span {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Dropdown Menu Mobile */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        padding: 18px 25px;
        border-bottom: 1px solid #f0f0f0;
        background: #fff;
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0;
        background: transparent;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
        padding-top: 5px;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .dropdown-menu a {
        padding: 15px 50px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }
    
    .dropdown-arrow {
        margin-right: auto;
        margin-left: 10px;
        transition: transform 0.3s ease;
        font-size: 0.85rem;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

/* Dropdown Menu Responsive */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 250px;
    }
}

@media (max-width: 968px) {
    .contact-section {
        padding: 50px 30px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.05rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        padding: 18px 25px;
        border-bottom: 1px solid #f0f0f0;
        background: #fff;
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0;
        background: transparent;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
        padding-top: 5px;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .dropdown-menu a {
        padding: 15px 50px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }
    
    .dropdown-arrow {
        margin-right: auto;
        margin-left: 10px;
        transition: transform 0.3s ease;
        font-size: 0.85rem;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .contact-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .contact-header {
        margin-bottom: 35px;
    }
    
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 35px 15px;
        min-height: auto;
    }
    
    .contact-header {
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }
    
    .contact-info-card {
        padding: 22px 18px;
    }
    
    .contact-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contact-link {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .contact-form-wrapper {
        padding: 25px 18px;
    }
    
    .form-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .form-title::after {
        width: 50px;
        height: 2px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 13px 22px;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-top: 5px;
    }
    
    .submit-btn i {
        font-size: 0.85rem;
    }
}
