/* Modern Professional Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #06b6d4;
    --accent-color: #93c5fd;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    --shadow-hover: 0 8px 30px rgba(59, 130, 246, 0.25);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-secondary: linear-gradient(135deg, #93c5fd 0%, #0ea5e9 100%);
}

body {
    font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-color);
    line-height: 1.6;
    color: var(--text-dark);
}

/* Kurdish Font Support */
[lang="ku"] body,
[lang="ku"] * {
    font-family: 'Noto Sans Arabic', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

[lang="ku"] h1,
[lang="ku"] h2,
[lang="ku"] h3,
[lang="ku"] h4,
[lang="ku"] h5,
[lang="ku"] h6 {
    font-family: 'Noto Sans Arabic', 'Cairo', sans-serif !important;
}

/* RTL Support for Arabic and Kurdish */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-container {
    grid-template-columns: 1fr 1fr;
}

[dir="rtl"] .hero-visual {
    order: -1;
}

[dir="rtl"] .hero-content {
    order: 1;
}

[dir="rtl"] .collection-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .carousel-controls .prev-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .carousel-controls .next-btn i {
    transform: rotate(180deg);
}

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

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

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

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

/* RTL Mobile Responsive */
@media (max-width: 768px) {
    [dir="rtl"] .hero-container {
        grid-template-columns: 1fr;
    }
    
    [dir="rtl"] .hero-visual {
        order: 0;
    }
    
    [dir="rtl"] .hero-content {
        order: 0;
    }
}

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

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(99, 102, 241, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 80%);
    animation: float 20s ease-in-out infinite;
    opacity: 0.6;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Cairo', sans-serif !important;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}


.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.hero-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    gap: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-features .feature i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    position: relative;
    z-index: 3;
}

.main-shoe {
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.main-shoe:hover {
    transform: rotate(-2deg) scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shoe {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatShoe 6s ease-in-out infinite;
}

.floating-shoe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.floating-shoe-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

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

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66% { transform: translateY(20px) translateX(-20px) rotate(240deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #ffd700;
    color: #ffd700;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Modern Black Products Hero Section */
.modern-products-hero {
    background: #000000;
    padding: 100px 0 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.products-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    direction: ltr;
    max-width: 100%;
}

.products-grid-hero {
    order: 1;
}

.products-hero-content {
    order: 2;
}

[dir="rtl"] .products-hero-layout {
    direction: ltr;
}

[dir="rtl"] .products-grid-hero {
    order: 1;
}

[dir="rtl"] .products-hero-content {
    order: 2;
}

.products-hero-content {
    text-align: right;
    padding: 40px;
    direction: rtl;
    order: 2;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.2;
}

.products-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-family: 'Cairo', sans-serif !important;
}

.products-hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

.store-info-items {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.store-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.store-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.store-info-item i {
    color: #ff0066;
    font-size: 1.4rem;
    width: 28px;
    text-align: center;
}

.products-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0066;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.3);
    font-family: 'Cairo', sans-serif;
}

.products-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 0, 102, 0.4);
    background: #ff0055;
}

.products-grid-hero {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.grid-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-bottom-row {
    display: grid;
    grid-template-columns: 1fr;
}

.product-grid-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.product-grid-small {
    aspect-ratio: 1;
}

.product-grid-large {
    aspect-ratio: 2.2 / 1;
}

.product-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.2);
}

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

.product-grid-item:hover img {
    transform: scale(1.05);
}

/* Infinite Red Text Scroller */
.text-scroller-red {
    background: #c41e3a;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    width: 100%;
}

.text-scroller-red-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.text-scroller-red-wrapper {
    display: flex;
    width: fit-content;
    will-change: transform;
    direction: ltr;
    position: relative;
    left: 0;
}

.text-scroller-red-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.text-scroller-red-content span {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    font-family: 'Cairo', sans-serif;
}

.text-scroller-red-content .scroller-bullet {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 8px;
    flex-shrink: 0;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollInfiniteSlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(33.333%);
    }
}

/* Red Scroller Responsive */
@media (max-width: 768px) {
    .text-scroller-red {
        padding: 6px 0;
    }
    
    .text-scroller-red-content {
        gap: 20px;
    }
    
    .text-scroller-red-content span {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .text-scroller-red-content .scroller-bullet {
        font-size: 1rem;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .text-scroller-red {
        padding: 5px 0;
    }
    
    .text-scroller-red-content {
        gap: 15px;
    }
    
    .text-scroller-red-content span {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }
    
    .text-scroller-red-content .scroller-bullet {
        font-size: 0.9rem;
        margin: 0 5px;
    }
}

/* Products Hero Responsive */
@media (max-width: 992px) {
    .modern-products-hero {
        padding: 90px 0 40px;
    }
    
    .products-hero-container {
        padding: 0 15px;
    }
    
    .products-hero-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .products-hero-content {
        text-align: center;
        padding: 30px 15px;
    }
    
    .products-hero-title {
        font-size: 2.5rem;
    }
    
    .products-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .grid-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .store-info-items {
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .modern-products-hero {
        padding: 85px 0 35px;
        min-height: auto;
    }
    
    .products-hero-container {
        padding: 0 15px;
    }
    
    .products-hero-layout {
        gap: 30px;
    }
    
    .products-hero-content {
        padding: 25px 15px;
    }
    
    .products-hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .products-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .products-hero-description {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .grid-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .grid-bottom-row {
        gap: 10px;
    }
    
    .products-grid-hero {
        gap: 10px;
    }
    
    .store-info-items {
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
        padding: 20px 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .store-info-item {
        justify-content: center;
        text-align: center;
        padding: 12px 15px;
        font-size: 0.95rem;
        flex: 1;
        min-width: 140px;
        max-width: 200px;
    }
    
    .products-hero-btn {
        padding: 16px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .modern-products-hero {
        padding: 80px 0 30px;
    }
    
    .products-hero-container {
        padding: 0 15px;
    }
    
    .products-hero-layout {
        gap: 25px;
    }
    
    .products-hero-content {
        padding: 20px 10px;
    }
    
    .products-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .products-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .products-hero-description {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .grid-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .grid-bottom-row {
        gap: 8px;
    }
    
    .products-grid-hero {
        gap: 8px;
    }
    
    .product-grid-large {
        aspect-ratio: 1.5 / 1;
    }
    
    .product-grid-small {
        aspect-ratio: 1;
    }
    
    .store-info-items {
        flex-direction: row;
        gap: 10px;
        padding: 15px 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .store-info-item {
        padding: 10px 12px;
        font-size: 0.85rem;
        gap: 8px;
        flex: 1;
        min-width: 120px;
        max-width: 160px;
        justify-content: center;
    }
    
    .store-info-item i {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .store-info-item span {
        font-size: 0.85rem;
    }
    
    .products-hero-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .contact-items-pro {
        grid-template-columns: 1fr;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title-new {
        font-size: 1.75rem;
    }
    
    .section-header-new {
        margin-bottom: 30px;
    }
    
    .location-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* New Why Choose Section */
.why-choose-section-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

@media (max-width: 768px) {
    .why-choose-section-new {
        padding: 50px 0;
    }
    
    .section-header-new {
        margin-bottom: 35px;
    }
    
    .section-title-new {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .features-grid-new {
        gap: 25px;
    }
    
    .feature-card-new {
        padding: 30px 20px;
    }
    
    .feature-icon-new {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .feature-card-new h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-card-new p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .why-choose-section-new {
        padding: 40px 0;
    }
    
    .section-title-new {
        font-size: 1.75rem;
    }
    
    .features-grid-new {
        gap: 20px;
    }
    
    .feature-card-new {
        padding: 25px 18px;
    }
    
    .feature-icon-new {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-card-new h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card-new p {
        font-size: 0.9rem;
    }
}

.section-header-new {
    text-align: center;
    margin-bottom: 40px;
    max-width: 100%;
}

.section-title-new {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
}

.section-subtitle-new {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

.products-description-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif !important;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-new {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #ff0066;
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.feature-card-new p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    font-family: 'Cairo', sans-serif;
}

/* Updated Contact Page Styles - Pro Design */
.contact-info-full {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.contact-intro {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Cairo', sans-serif !important;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-items-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1000px;
}

.contact-item-pro {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #f0f0f0;
}

.contact-item-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #ff0066;
}

.contact-icon-pro {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
}

.contact-details-pro h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.contact-details-pro p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
}

.phone-number {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 20px 0 !important;
    font-family: 'Cairo', sans-serif;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    font-family: 'Cairo', sans-serif;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

.location-name {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ff0066 !important;
    margin: 15px 0 !important;
    font-family: 'Cairo', sans-serif;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.location-info span {
    color: #4a5568;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
}

.contact-closing {
    margin-top: 50px;
    text-align: center;
}

.contact-closing p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-thanks {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
}

@media (max-width: 768px) {
    .contact-info-full {
        padding: 0 20px;
    }
    
    .contact-intro {
        font-size: 1.1rem;
    }
    
    .contact-info-title {
        font-size: 2rem;
    }
    
    .contact-item-pro {
        padding: 35px 25px;
    }
    
    .section-title-new {
        font-size: 2.2rem;
    }
}

/* Modern Collections Section Update */
.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Products Scroller Section */
.products-scroller-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.products-scroller-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 64, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(255, 0, 102, 0.05) 50%, transparent 100%);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.products-scroller-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.products-scroller-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    direction: ltr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

[dir="rtl"] .products-scroller-layout {
    direction: ltr;
}

/* Products Scroller on Left */
.products-scroller-wrapper {
    position: relative;
    overflow: hidden;
}

.products-scroller-container {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(255, 0, 102, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.products-scroller-track {
    display: flex;
    gap: 20px;
    animation: scrollProducts 30s linear infinite;
    will-change: transform;
}

@keyframes scrollProducts {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

[dir="rtl"] .products-scroller-track {
    animation-direction: reverse;
}

.product-scroll-item {
    flex: 0 0 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 102, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-scroll-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 102, 0.5), 0 0 30px rgba(255, 0, 102, 0.3);
    border-color: rgba(255, 0, 102, 0.5);
}

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

.product-scroll-item:hover img {
    transform: scale(1.1);
}

/* Text Content on Right */
.products-scroller-content {
    text-align: right;
    padding: 40px;
    direction: rtl;
    position: relative;
    z-index: 1;
}

.products-scroller-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(255, 0, 102, 0.3);
}

.products-scroller-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0066;
    margin-bottom: 25px;
    font-family: 'Cairo', sans-serif !important;
    text-shadow: 0 2px 10px rgba(255, 0, 102, 0.2);
}

.products-scroller-description {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
}

.products-scroller-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
}

.products-scroller-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.3);
    font-family: 'Cairo', sans-serif;
}

.products-scroller-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 102, 0.4);
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .products-scroller-layout {
        gap: 40px;
    }
    
    .product-scroll-item {
        flex: 0 0 240px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .products-scroller-section {
        padding: 50px 0;
        margin: 30px 0;
    }
    
    .products-scroller-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-scroller-content {
        text-align: center;
        padding: 25px 20px;
        order: -1;
    }
    
    .products-scroller-wrapper {
        order: 1;
    }
    
    .products-scroller-title {
        font-size: 2.5rem;
    }
    
    .products-scroller-subtitle {
        font-size: 1.5rem;
    }
    
    .products-scroller-description {
        font-size: 1.2rem;
    }
    
    .product-scroll-item {
        flex: 0 0 220px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .products-scroller-section {
        margin: 25px 0;
        padding: 50px 0;
    }
    
    .products-scroller-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .products-scroller-content {
        text-align: center;
        padding: 20px 15px;
    }
    
    .products-scroller-container {
        padding: 15px;
        border-radius: 20px;
    }
    
    .products-scroller-track {
        gap: 15px;
    }
    
    .product-scroll-item {
        flex: 0 0 200px;
        height: 250px;
        border-radius: 16px;
    }
    
    .products-scroller-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .products-scroller-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .products-scroller-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .products-scroller-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 35px;
    }
    
    .products-scroller-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-scroller-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .products-scroller-layout {
        gap: 25px;
    }
    
    .products-scroller-container {
        padding: 10px;
        border-radius: 16px;
    }
    
    .products-scroller-track {
        gap: 10px;
    }
    
    .product-scroll-item {
        flex: 0 0 160px;
        height: 200px;
        border-radius: 12px;
    }
    
    .products-scroller-content {
        padding: 0 10px;
    }
    
    .products-scroller-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .products-scroller-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .products-scroller-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .products-scroller-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .products-scroller-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.products-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.products-modern-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 64, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 102, 0.05) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px, 1000px 1000px;
    animation: patternMove 20s ease-in-out infinite;
}

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

.products-showcase-modern .container {
    position: relative;
    z-index: 1;
}

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

.products-modern-title-wrapper {
    display: inline-block;
    text-align: center;
}

.products-modern-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 0, 102, 0.3);
}

.products-modern-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #ff0066 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-icon {
    font-size: 2.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
}

.products-modern-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

.products-modern-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 20px;
    margin-bottom: 60px;
}

.product-modern-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-modern-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 0, 102, 0.4);
    border-color: rgba(255, 0, 102, 0.5);
}

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

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

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

.product-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-modern-card:hover .product-modern-overlay {
    opacity: 1;
}

.product-modern-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.5);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-modern-card:hover .product-modern-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Grid Layout for Modern Cards */
.product-card-large {
    grid-column: span 6;
    grid-row: span 2;
}

.product-card-wide {
    grid-column: span 6;
    grid-row: span 2;
}

.product-modern-card:not(.product-card-large):not(.product-card-wide) {
    grid-column: span 3;
    grid-row: span 2;
}

.products-modern-cta {
    text-align: center;
}

.products-modern-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    font-family: 'Cairo', sans-serif;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.products-modern-btn:hover::before {
    left: 100%;
}

.products-modern-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 102, 0.5);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.products-modern-btn:hover .btn-icon {
    transform: translateX(-5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.products-modern-btn:hover .btn-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-modern-grid {
        grid-template-rows: repeat(4, 180px);
        gap: 15px;
    }
    
    .product-card-large {
        grid-column: span 6;
    }
    
    .product-card-wide {
        grid-column: span 6;
    }
    
    .product-modern-card:not(.product-card-large):not(.product-card-wide) {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .products-showcase-modern {
        padding: 60px 0;
    }
    
    .products-modern-title {
        font-size: 2.5rem;
    }
    
    .products-modern-subtitle {
        font-size: 1.1rem;
    }
    
    .products-modern-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 160px);
        gap: 15px;
    }
    
    .product-card-large {
        grid-column: span 6;
        grid-row: span 2;
    }
    
    .product-card-wide {
        grid-column: span 6;
        grid-row: span 2;
    }
    
    .product-modern-card:not(.product-card-large):not(.product-card-wide) {
        grid-column: span 3;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .products-modern-title {
        font-size: 2rem;
        gap: 10px;
    }
    
    .title-icon {
        font-size: 1.8rem;
    }
    
    .products-modern-subtitle {
        font-size: 1rem;
    }
    
    .products-modern-label {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
    
    .products-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }
    
    .product-card-large,
    .product-card-wide {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 250px;
    }
    
    .product-modern-card:not(.product-card-large):not(.product-card-wide) {
        grid-column: span 1;
        grid-row: span 2;
        min-height: 200px;
    }
    
    .products-modern-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-showcase-modern {
        padding: 50px 0;
    }
    
    .products-modern-header {
        margin-bottom: 40px;
    }
    
    .products-modern-title {
        font-size: 1.75rem;
    }
    
    .products-modern-subtitle {
        font-size: 0.95rem;
    }
    
    .products-modern-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card-large,
    .product-card-wide,
    .product-modern-card:not(.product-card-large):not(.product-card-wide) {
        grid-column: span 1;
        grid-row: span 2;
        min-height: 220px;
    }
    
    .products-modern-btn {
        padding: 14px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Store Location Section */
.store-location-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .store-location-section {
        padding: 50px 0;
    }
    
    .location-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .location-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .location-address {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .location-mall {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }
    
    .location-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .store-location-section {
        padding: 40px 0;
    }
    
    .location-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .location-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .location-address {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .location-mall {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .location-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

.location-content {
    max-width: 700px;
    margin: 0 auto;
}

.location-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 0, 102, 0.3);
}

.location-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif !important;
}

.location-address {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Cairo', sans-serif;
}

.location-mall {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ff0066;
    font-family: 'Cairo', sans-serif;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1a1a1a;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Cairo', sans-serif;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

/* About Preview Section */
.about-preview-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-preview-text {
    text-align: right;
    padding: 20px;
}

.about-preview-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif !important;
}

.about-preview-desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 25px;
    font-family: 'Cairo', sans-serif;
}

.about-preview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-preview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.3);
    font-family: 'Cairo', sans-serif;
}

.about-preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 102, 0.4);
}

/* Vision & Mission New Section */
.vision-mission-new-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.vision-mission-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision-mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #ff0066;
}

.vision-mission-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
    transition: all 0.3s ease;
}

.vision-mission-card:hover .vision-mission-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.4);
}

.vision-mission-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Cairo', sans-serif !important;
}

.vision-mission-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a5568;
    font-family: 'Cairo', sans-serif;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Cairo', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 16px 40px;
        font-size: 1.1rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 35px;
        font-size: 1rem;
        max-width: 280px;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.3);
    font-family: 'Cairo', sans-serif;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 102, 0.4);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Cairo', sans-serif;
}

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

@media (max-width: 992px) {
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-preview-text {
        text-align: center;
    }
    
    .vision-mission-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .vision-mission-card {
        padding: 40px 30px;
    }
}

/* Updated Color Scheme */
.collections-section {
    background: #ffffff;
    padding: 100px 0;
}

.why-choose-section {
    background: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid #e5e7eb;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff0066;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-features .feature {
        font-size: 0.85rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 20px;
    }
    
    .main-shoe {
        width: 200px;
        height: auto;
    }
    
    .floating-shoe {
        width: 40px;
        height: 40px;
    }
    
    .floating-shoe-1 {
        top: 10%;
        right: 5%;
    }
    
    .floating-shoe-2 {
        bottom: 20%;
        left: 2%;
    }
    
    .shape-1 {
        width: 100px;
        height: 100px;
    }
    
    .shape-2 {
        width: 80px;
        height: 80px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    
    .hero-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-features .feature {
        font-size: 0.8rem;
    }
    
    .main-shoe {
        width: 180px;
    }
    
    .floating-shoe {
        width: 35px;
        height: 35px;
    }
}

/* Modern Collections Section */
.collections-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e91e63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Cairo', sans-serif !important;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.collection-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-content {
    transform: translateY(0);
}

.collection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.collection-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif !important;
}

.collection-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.collection-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.collection-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.collection-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Featured Products Carousel */
.featured-products-carousel {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.carousel-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Cairo', sans-serif !important;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

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

.product-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image-modern {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-badge-modern {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 14px;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info-modern {
    padding: 20px;
}

.product-info-modern h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.product-info-modern p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 12px;
}

.rating-count {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Collections Section Mobile Responsive */
@media (max-width: 768px) {
    .collections-section {
        padding: 60px 0;
    }
    
    .collections-section .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .collection-card {
        height: 300px;
        border-radius: 15px;
    }
    
    .collection-content {
        padding: 15px;
    }
    
    .collection-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .collection-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .collection-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .collection-stats {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .collection-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .featured-products-carousel {
        padding: 25px 15px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .carousel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .carousel-header h3 {
        font-size: 1.5rem;
    }
    
    .carousel-controls {
        gap: 8px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .products-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card-modern {
        border-radius: 12px;
    }
    
    .product-image-modern {
        height: 200px;
    }
    
    .product-info-modern {
        padding: 15px;
    }
    
    .product-info-modern h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .product-info-modern p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    
    .product-rating {
        gap: 6px;
    }
    
    .stars i {
        font-size: 11px;
    }
    
    .rating-count {
        font-size: 0.75rem;
    }
    
    .product-actions {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .product-badge-modern {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .collections-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .collection-card {
        height: 250px;
    }
    
    .collection-content {
        padding: 12px;
    }
    
    .collection-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .collection-content h3 {
        font-size: 1.1rem;
    }
    
    .collection-content p {
        font-size: 0.8rem;
    }
    
    .collection-stats {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .collection-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .featured-products-carousel {
        padding: 20px 10px;
        margin: 0 5px;
    }
    
    .carousel-header h3 {
        font-size: 1.3rem;
    }
    
    .product-image-modern {
        height: 180px;
    }
    
    .product-info-modern {
        padding: 12px;
    }
    
    .product-info-modern h4 {
        font-size: 0.95rem;
    }
    
    .product-info-modern p {
        font-size: 0.8rem;
    }
    
}

/* Professional Navbar - Always LTR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    direction: ltr;
}

.navbar[dir="ltr"] {
    direction: ltr;
}

.navbar[dir="ltr"] .nav-container {
    direction: ltr;
}

.navbar[dir="ltr"] .nav-logo {
    order: 1;
}

.navbar[dir="ltr"] .nav-menu {
    order: 2;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow);
}

.logo-text {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-svg {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logo-arabic {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Cairo', sans-serif;
}

.logo-english {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    font-family: 'Cairo', sans-serif;
    letter-spacing: 1px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
    line-height: 1.2;
}

.footer-logo-arabic {
    font-size: 24px;
    font-weight: 800;
    color: white;
    font-family: 'Cairo', sans-serif;
}

.footer-logo-english {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Cairo', sans-serif;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.language-dropdown {
    position: relative;
    margin-left: 24px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #4a5568;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

.language-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

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

.language-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.language-option {
    display: block;
    padding: 12px 16px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.language-option.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Language Selector */
.mobile-language-selector {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8fafc;
}

.mobile-lang-btn {
    flex: 1;
    padding: 10px 16px;
    background: white;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-btn:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--primary-color);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: 24px;
}

.mobile-nav-link {
    display: block;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-language {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 16px;
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #4a5568;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-color);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 50%, #f8bbd9 100%);
    color: white;
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Cairo', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Page Hero Sections */
.about-hero,
.products-hero,
.contact-hero {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 50%, #f8bbd9 100%);
    color: white;
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.about-hero-content,
.products-hero-content,
.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-hero::before,
.products-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.about-hero-title,
.products-hero-title,
.contact-hero-title {
    font-family: 'Cairo', sans-serif !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-hero-subtitle,
.products-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: 'Cairo', sans-serif;
}

@media (max-width: 768px) {
    .about-hero,
    .products-hero,
    .contact-hero {
        padding: 90px 0 30px;
    }
    
    .about-hero-title,
    .products-hero-title,
    .contact-hero-title {
        font-size: 2rem !important;
    }
    
    .about-hero-subtitle,
    .products-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .products-hero,
    .contact-hero {
        padding: 80px 0 25px;
    }
    
    .about-hero-title,
    .products-hero-title,
    .contact-hero-title {
        font-size: 1.75rem !important;
        margin-bottom: 12px;
    }
    
    .about-hero-subtitle,
    .products-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .products-hero-content,
    .contact-hero-content {
        padding: 0 15px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cairo', sans-serif !important;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Cairo', sans-serif !important;
}

.collection-content h3,
.carousel-header h3,
.product-info-modern h4,
.product-info h3,
.feature-card h3,
.about-text h2,
.vision-card h3,
.mission-card h3,
.contact-info h2 {
    font-family: 'Cairo', sans-serif !important;
}

.footer-column h4,
.footer-column h5 {
    font-family: 'Cairo', sans-serif !important;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.feature-card p {
    color: #718096;
    line-height: 1.7;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

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

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.08) 0%, rgba(255, 64, 129, 0.05) 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vision-card,
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.vision-card p,
.mission-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif !important;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Products Filter Section */
.products-filter-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.02) 0%, rgba(255, 64, 129, 0.03) 100%);
    position: relative;
    z-index: 1;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid rgba(233, 30, 99, 0.2);
    background: white;
    color: #4a5568;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

/* Responsive Filter Section */
@media (max-width: 768px) {
    .products-filter-section {
        padding: 25px 0;
    }
    
    .products-filter {
        gap: 12px;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-filter-section {
        padding: 20px 0;
    }
    
    .products-filter {
        gap: 10px;
        padding: 0 10px;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        flex: 0 1 auto;
        min-width: auto;
    }
}

.products-section {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

/* Modern Products Page Grid */
.products-modern-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-modern-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    cursor: default;
}

.product-modern-card-page {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
    border: 2px solid transparent;
}

.product-modern-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 102, 0.3);
    border-color: rgba(255, 0, 102, 0.3);
}

.product-modern-image-page {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f8f8f8;
}

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

.product-modern-card-page:hover .product-modern-image-page img {
    transform: scale(1.15);
}

.product-modern-overlay-page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-modern-card-page:hover .product-modern-overlay-page {
    opacity: 1;
}

.product-badge-page {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.product-modern-card-page:hover .product-badge-page {
    transform: translateY(0);
    opacity: 1;
}

.product-modern-info-page {
    padding: 25px;
    text-align: right;
    direction: rtl;
}

.product-modern-title-page {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.4;
}

.product-modern-category-page {
    font-size: 0.95rem;
    color: #ff0066;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* Product Detail Page */
.product-detail-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.breadcrumb-detail {
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
}

.breadcrumb-detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-detail a:hover {
    color: #ff0066;
}

.breadcrumb-detail span {
    color: #999;
    margin: 0 10px;
}

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

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

.main-image-detail {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.thumbnail-images-detail {
    display: flex;
    gap: 15px;
}

.thumbnail-detail {
    flex: 1;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.thumbnail-detail:hover,
.thumbnail-detail.active {
    border-color: #ff0066;
    transform: scale(1.05);
}

.thumbnail-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
    direction: rtl;
}

.product-badge-detail {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.product-title-detail {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.3;
}

.product-description-detail {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
}

.product-features-detail {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.product-features-detail h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
}

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

.product-features-detail li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1rem;
    color: #4a5568;
    font-family: 'Cairo', sans-serif;
}

.product-features-detail li i {
    color: #ff0066;
    font-size: 1.2rem;
}

.size-selection-detail {
    margin-bottom: 40px;
}

.size-selection-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif !important;
}

.size-options-detail {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn-detail {
    width: 60px;
    height: 60px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.size-btn-detail:hover,
.size-btn-detail.active {
    border-color: #ff0066;
    background: #ff0066;
    color: white;
    transform: scale(1.1);
}

.product-actions-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary-detail,
.btn-outline-detail {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.whatsapp-btn-detail {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.contact-btn-detail {
    border: 2px solid #ff0066;
    color: #ff0066;
    background: white;
}

.contact-btn-detail:hover {
    background: #ff0066;
    color: white;
    transform: translateY(-3px);
}

.product-details-info {
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.product-details-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Cairo', sans-serif !important;
}

.detail-item-detail {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Cairo', sans-serif;
}

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

.detail-item-detail strong {
    color: #1a1a1a;
    font-weight: 700;
    min-width: 150px;
}

.detail-item-detail span {
    color: #4a5568;
    font-weight: 500;
}

/* Related Products Section */
.related-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.related-product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-product-card:hover .related-product-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.3);
}

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

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

.related-product-info {
    text-align: right;
    direction: rtl;
}

.related-product-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif !important;
}

.related-product-info p {
    font-size: 0.9rem;
    color: #ff0066;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* Modern Contact Page */
.contact-content-modern {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-modern-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4a5568;
    font-family: 'Cairo', sans-serif;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-modern-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.contact-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.contact-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 102, 0.2);
}

.contact-modern-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.phone-card .contact-modern-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    color: #25d366;
}

.whatsapp-card .contact-modern-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    color: #25d366;
}

.location-card .contact-modern-icon {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1) 0%, rgba(255, 64, 129, 0.1) 100%);
    color: #ff0066;
}

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

.contact-modern-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif !important;
}

.contact-modern-value,
.contact-modern-address {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.contact-modern-location {
    font-size: 1rem;
    color: #ff0066;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Cairo', sans-serif;
}

.contact-modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.phone-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-modern {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.location-btn-modern {
    background: linear-gradient(135deg, #ff0066 0%, #ff4081 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(255, 0, 102, 0.3);
}

.location-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 0, 102, 0.4);
}

.contact-closing-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-thanks-modern {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4a5568;
    font-family: 'Cairo', sans-serif;
}

.contact-thanks-modern strong {
    color: #ff0066;
    font-weight: 700;
}

/* Responsive Design for Products Page */
@media (max-width: 992px) {
    .products-modern-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images-detail {
        position: static;
    }
    
    .main-image-detail {
        height: 500px;
    }
    
    .product-title-detail {
        font-size: 2rem;
    }
    
    .contact-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-modern-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-modern-image-page {
        height: 260px;
    }
    
    .product-modern-info-page {
        padding: 20px;
    }
    
    .product-modern-title-page {
        font-size: 1.1rem;
    }
    
    .main-image-detail {
        height: 400px;
    }
    
    .product-title-detail {
        font-size: 1.75rem;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .btn-primary-detail,
    .btn-outline-detail {
        width: 100%;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-modern-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .products-modern-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-modern-image-page {
        height: 280px;
    }
    
    .main-image-detail {
        height: 300px;
    }
    
    .thumbnail-detail {
        height: 80px;
    }
    
    .product-title-detail {
        font-size: 1.5rem;
    }
    
    .size-options-detail {
        gap: 10px;
    }
    
    .size-btn-detail {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-modern-card {
        padding: 30px 20px;
    }
    
    .contact-modern-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Contact Content Section */
.contact-content-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
}

.contact-info p {
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.contact-details p {
    color: #4a5568;
    margin-bottom: 4px;
}

.contact-details span {
    color: #718096;
    font-size: 0.9rem;
}

.contact-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 20px;
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.05) 0%, rgba(255, 64, 129, 0.03) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-logo img {
    margin-right: 0;
}

.footer-logo .logo-icon {
    margin-right: 12px;
}

.footer-logo-svg {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.newsletter-signup {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-logo-svg {
        height: 50px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-column h5 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .footer-column p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .footer-column li {
        margin-bottom: 10px;
    }
    
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .footer-column ul {
        padding: 0;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .newsletter-signup {
        text-align: center;
    }
    
    .newsletter-signup h5 {
        margin-bottom: 10px;
    }
    
    .newsletter-signup p {
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        display: flex;
        gap: 8px;
        align-items: stretch;
        max-width: 100%;
    }
    
    .newsletter-input {
        flex: 1;
        padding: 11px 14px;
        font-size: 0.85rem;
        min-width: 0;
        height: 45px;
    }
    
    .newsletter-btn {
        width: auto;
        min-width: 65px;
        height: 45px;
        padding: 0 22px;
        border-radius: 25px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .footer-bottom {
        padding-top: 25px;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-bottom p {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        margin-bottom: 25px;
    }
    
    .footer-logo-svg {
        height: 45px;
    }
    
    .footer-links {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-column h5 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-column p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .footer-column li {
        margin-bottom: 8px;
    }
    
    .footer-column a {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .newsletter-signup {
        text-align: center;
    }
    
    .newsletter-signup h5 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .newsletter-signup p {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .newsletter-form {
        display: flex;
        gap: 6px;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }
    
    .newsletter-input {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.75rem;
        min-width: 0;
        height: 45px;
    }
    
    .newsletter-btn {
        width: auto;
        min-width: 70px;
        height: 45px;
        padding: 0 20px;
        border-radius: 25px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .footer-bottom p {
        padding: 0 10px;
        word-wrap: break-word;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .language-dropdown {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 18px 22px;
    }

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

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }

    .mobile-menu {
        top: 64px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

/* Product Detail Page Styles */
.product-detail-section {
    padding: 120px 0 80px;
    background: white;
}

.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
}

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

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

.main-image {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

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

.product-title {
    font-family: 'Cairo', sans-serif !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

.size-selection {
    margin-bottom: 30px;
}

.size-selection h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.add-to-cart,
.wishlist {
    flex: 1;
    min-width: 150px;
}

.product-details {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.product-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.related-products {
    padding: 80px 0;
    background: var(--light-color);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    animation: slideDown 0.5s ease-out;
}

/* ============================
   New Minimal Blue Design (Override)
   ============================ */
/* Tokens */
:root {
    --brand-600: #2563eb;
    --brand-500: #3b82f6;
    --brand-400: #60a5fa;
    --ink-900: #0b1220;
    --ink-800: #111827;
    --ink-700: #1f2937;
    --ink-600: #334155;
    --ink-400: #94a3b8;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --border: #e5e7eb;
    --g-brand: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
}

body { color: var(--ink-800); background: var(--surface-2); }

.nav-link { color: var(--ink-700); }
.nav-link:hover, .nav-link.active { background: #eef2ff; color: #1e40af; }
.language-btn { border: 1px solid var(--border); background: #fff; color: var(--ink-700); }
.language-menu { border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(2,6,23,.08); }
.lang-option { color: var(--ink-700); }
.lang-option:hover { background: var(--surface-2); }

/* Hero */
.modern-hero { background: var(--g-brand); }
.hero-overlay { background: linear-gradient(135deg, rgba(2,6,23,.25), rgba(2,6,23,.35)); }
.hero-container { gap: 72px; }
.hero-content { color: #fff; }
.hero-badge { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); }
.hero-title { font-weight: 800; letter-spacing: -0.02em; }
.gradient-text { background: linear-gradient(135deg,#fff,#e0f2fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-description { font-size: 18px; opacity: .95; }
.btn { border-radius: 999px; font-weight: 700; }
.btn-primary { background: #111827; color: #fff; }
.btn-primary:hover { background: #0b1220; }
.btn-outline { border: 2px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.main-shoe { box-shadow: 0 30px 60px rgba(2,6,23,.35); }
.floating-shoe { box-shadow: 0 10px 30px rgba(2,6,23,.15); }

/* Text scroller */
.text-scroller { background: linear-gradient(90deg, rgba(14,165,233,0.08), rgba(99,102,241,0.08)); border-top: 1px solid rgba(59,130,246,0.15); border-bottom: 1px solid rgba(59,130,246,0.15); overflow: hidden; }
.text-scroller-track { display: flex; gap: 40px; white-space: nowrap; padding: 14px 0; animation: scroller 25s linear infinite; }
.text-scroller-track span { color: var(--ink-800); font-weight: 700; letter-spacing: .4px; }
@keyframes scroller { 0%{ transform: translateX(0) } 100%{ transform: translateX(-50%) } }
[dir="rtl"] .text-scroller-track { animation-direction: reverse; }

/* Collections */
.collections-section { background: var(--surface); }
.section-badge { background: var(--g-brand); }
.section-title { color: var(--ink-800); }
.section-subtitle { color: var(--ink-600); }
.collection-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; }
.collection-overlay { background: linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,.65) 100%); }
.collection-btn { background: #fff; color: var(--ink-800); font-weight: 800; }

/* Carousel */
.featured-products-carousel { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 2px 10px rgba(2,6,23,.06); }
.carousel-btn { border: 1px solid var(--border); color: var(--ink-800); }
.carousel-btn:hover { background: var(--ink-800); color: #fff; }
.product-card-modern { border: 1px solid var(--border); border-radius: 12px; }
.product-badge-modern { background: var(--g-brand); font-weight: 800; }
.action-btn { border: 1px solid var(--border); color: var(--ink-800); }
.action-btn:hover { background: var(--ink-800); color: #fff; }
.product-info-modern p { color: var(--ink-600); }

/* Why Choose */
.why-choose-section { background: var(--surface-2); border-top: 1px solid var(--border); }
.feature-card { border: 1px solid var(--border); }
.feature-icon { background: var(--g-brand); }

/* Footer */
.footer { background: var(--ink-900); }
.social-links a:hover { background: var(--g-brand); }
.newsletter-btn { background: var(--g-brand); }

/* RTL helpers */
[dir="rtl"] .hero-visual { order: -1; }
[dir="rtl"] .hero-content { order: 1; }
[dir="rtl"] .newsletter-form, [dir="rtl"] .hero-actions, [dir="rtl"] .hero-features, [dir="rtl"] .social-links { flex-direction: row-reverse; }

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 96px; text-align: center; }
}
@media (max-width: 640px) {
    .products-carousel { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}