       :root {
            --primary-color: #f8e3e9;
            --secondary-color: #d4a5b5;
            --accent-color: #9e6a7a;
            --text-color: #5a3a42;
            --light-color: #fff9fb;
            --transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --primary: #FFE6EE;
            --secondary: #FF9BB3;
            --dark: #5A2A3A;
            --light: #FFF9FB;
            --accent: #D44D6E;
            --ivory: #FFFFF0;
            --blush: #F8E3E9;
            --dusty-rose: #D4A5B5;
            --mauve: #9E6A7A;
            --taupe: #5A3A42;
            --cream: #FFF9F2;
            --soft-pink: #F8E3E9;
            --rose: #E8B4BC;
            --deep-rose: #D44D6E;
            --dark: #3A2A2A;  
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        /* Language Switch */
        .language-switch {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px;
        }

        .language-btn {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
            color: var(--text-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .language-btn.active {
            background: var(--secondary-color);
            color: white;
        }

        /* Header with Video */
        .video-header {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.7);
        }

        .header-content {
            text-align: center;
            z-index: 1;
            color: white;
            padding: 0 20px;
            max-width: 800px;
        }

        .header-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 300;
        }

        .header-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .search-bar {
            display: flex;
            gap: 10px;
            margin-top: 2rem;
            justify-content: center;
        }

        .search-bar input {
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            width: 300px;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .search-bar button {
            padding: 15px 30px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .search-bar button:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Floating Navigation */
        .floating-nav {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 10px 25px;
            display: flex;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            padding: 10px 15px;
            border-radius: 30px;
        }

        .nav-item:hover {
            background: var(--primary-color);
        }

        .nav-item.active {
            background: var(--secondary-color);
            color: white;
        }

        .nav-icon {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .nav-text {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Hover Effect */
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--secondary-color);
            transition: var(--transition);
        }

        .nav-item:hover::after {
            width: 80%;
        }

        .nav-item.active::after {
            width: 80%;
            background: white;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content h1 {
                font-size: 2.5rem;
            }
            
            .header-content p {
                font-size: 1rem;
            }
            
            .search-bar {
                flex-direction: column;
                align-items: center;
            }
            
            .search-bar input {
                width: 100%;
            }
            
            .floating-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* Arabic Styles */
        html[dir="rtl"] {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html[dir="rtl"] .header-content h1 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Language Content */
        .lang-en {
            display: block;
        }
        
        .lang-ar {
            display: none;
        }
        
        html[dir="rtl"] .lang-en {
            display: none;
        }
        
        html[dir="rtl"] .lang-ar {
            display: block;
        }

        /* Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 4s ease-in-out infinite;
        }

        .photographers-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 300;
        }
        
        .section-subtitle {
            color: var(--accent);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .photographers-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .photographer-profile {
            width: 100%;
            max-width: 400px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(90, 42, 58, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .photographer-profile:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(90, 42, 58, 0.2);
        }
        
        .profile-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }
        
        .profile-gallery {
            height: 300px;
            position: relative;
            overflow: hidden;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .photographer-profile:hover .main-image {
            transform: scale(1.05);
        }
        
        .thumbnail-grid {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 2;
        }
        
        .thumbnail {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .thumbnail:hover {
            transform: scale(1.1);
        }
        
        .profile-content {
            padding: 25px;
        }
        
        .profile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .photographer-name {
            font-size: 1.6rem;
            color: var(--dark);
            font-weight: 500;
        }
        
        .photographer-price {
            font-size: 1.3rem;
            color: var(--accent);
            font-weight: bold;
        }
        
        .price-from {
            font-size: 0.8rem;
            color: var(--dark);
            opacity: 0.7;
            display: block;
        }
        
        .photographer-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--dark);
        }
        
        .meta-item i {
            color: var(--accent);
        }
        
        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .stars {
            color: #FFD700;
        }
        
        .packages-container {
            margin: 25px 0;
        }
        
        .package-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(90, 42, 58, 0.2);
        }
        
        .package-name {
            font-weight: 500;
            color: var(--dark);
        }
        
        .package-price {
            font-weight: bold;
            color: var(--accent);
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: var(--accent);
            color: white;
            border: 2px solid var(--accent);
        }
        
        .btn-primary:hover {
            background: var(--dark);
            border-color: var(--dark);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
        }
        
        /* RTL Styles */
        html[dir="rtl"] .photographer-name,
        html[dir="rtl"] .photographer-price {
            text-align: right;
        }
        
        html[dir="rtl"] .profile-badge {
            right: auto;
            left: 20px;
        }
        
        html[dir="rtl"] .thumbnail-grid {
            left: auto;
            right: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .photographer-profile {
                max-width: 100%;
            }
            
            .action-buttons {
                flex-direction: column;
            }
        }

        /* Decor Section */
        .decor-section {
            padding: 5rem 2rem;
            background: var(--ivory);
        }
        
        .section-intro {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--taupe);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        
        .section-subtitle {
            color: var(--mauve);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Style Navigation */
        .style-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .style-nav::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--dusty-rose) 50%, transparent 100%);
        }
        
        .style-option {
            padding: 0.8rem 1.5rem;
            margin: 0 0.5rem;
            cursor: pointer;
            position: relative;
            color: var(--taupe);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .style-option.active {
            color: var(--mauve);
        }
        
        .style-option.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--mauve);
        }
        
        /* Decor Gallery */
        .decor-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .decor-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(90, 58, 66, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
        }
        
        .decor-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(90, 58, 66, 0.15);
        }
        
        .card-image {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .decor-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--mauve);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .card-title {
            font-size: 1.25rem;
            color: var(--taupe);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .card-price {
            font-size: 1.1rem;
            color: var(--mauve);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .card-actions {
            display: flex;
            gap: 0.8rem;
        }
        
        .card-btn {
            flex: 1;
            padding: 0.6rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn-save {
            background: var(--dusty-rose);
            color: white;
            border: 2px solid var(--dusty-rose);
        }
        
        .btn-save:hover {
            background: var(--mauve);
            border-color: var(--mauve);
        }
        
        .btn-view {
            background: transparent;
            color: var(--dusty-rose);
            border: 2px solid var(--dusty-rose);
        }
        
        .btn-view:hover {
            background: var(--blush);
        }
        
        /* Moodboard Panel */
        .moodboard-panel {
            position: fixed;
            bottom: -350px;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
            border-radius: 20px 20px 0 0;
            padding: 1.5rem;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
        }
        
        .moodboard-panel.active {
            transform: translateY(-350px);
        }
        
        .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--blush);
        }
        
        .panel-title {
            font-size: 1.3rem;
            color: var(--taupe);
            font-weight: 500;
        }
        
        .panel-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--mauve);
            cursor: pointer;
        }
        
        .moodboard-items {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 1rem;
        }
        
        .moodboard-item {
            min-width: 100px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        
        .moodboard-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .remove-item {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 22px;
            height: 22px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--mauve);
            font-size: 0.7rem;
        }
        
        .panel-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .panel-btn {
            flex: 1;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-clear {
            background: transparent;
            color: var(--mauve);
            border: 2px solid var(--mauve);
        }
        
        .btn-clear:hover {
            background: var(--blush);
        }
        
        .btn-save-all {
            background: var(--mauve);
            color: white;
            border: 2px solid var(--mauve);
        }
        
        .btn-save-all:hover {
            background: var(--taupe);
            border-color: var(--taupe);
        }
        
        /* Moodboard Trigger */
        .moodboard-trigger {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--mauve);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(158, 106, 122, 0.3);
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .moodboard-trigger:hover {
            background: var(--taupe);
            transform: scale(1.1);
        }
        
        .moodboard-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--dusty-rose);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .decor-gallery {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .style-option {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }

        .fashion-section {
            padding: 5rem 1.5rem;
            background: var(--cream);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--dark);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        
        .section-subtitle {
            color: var(--deep-rose);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* تصفح حسب النوع */
        .style-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .style-nav::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
        }
        
        .style-option {
            padding: 0.8rem 1.8rem;
            margin: 0 0.8rem;
            cursor: pointer;
            position: relative;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 30px;
        }
        
        .style-option:hover {
            background: rgba(232, 180, 188, 0.1);
        }
        
        .style-option.active {
            background: var(--deep-rose);
            color: white;
        }
        
        /* معرض الأزياء */
        .fashion-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .fashion-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(58, 42, 42, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
        }
        
        .fashion-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(58, 42, 42, 0.15);
        }
        
        .card-media {
            height: 320px;
            overflow: hidden;
            position: relative;
        }
        
        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .fashion-card:hover .card-media img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--deep-rose);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .card-title {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .card-description {
            color: var(--dark);
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .price-options {
            margin: 1.2rem 0;
        }
        
        .price-option {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(58, 42, 42, 0.1);
        }
        
        .option-label {
            color: var(--dark);
            opacity: 0.7;
        }
        
        .option-value {
            font-weight: 600;
            color: var(--deep-rose);
        }
        
        .card-actions {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }
        
        .card-btn {
            flex: 1;
            padding: 0.7rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--deep-rose);
            color: white;
            border: 2px solid var(--deep-rose);
        }
        
        .btn-primary:hover {
            background: var(--dark);
            border-color: var(--dark);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--deep-rose);
            border: 2px solid var(--deep-rose);
        }
        
        .btn-secondary:hover {
            background: var(--soft-pink);
        }
        
        /* كتالوجات */
        .catalogs-section {
            margin-top: 5rem;
        }
        
        .catalogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .catalog-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .catalog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .catalog-cover {
            height: 160px;
            overflow: hidden;
        }
        
        .catalog-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .catalog-info {
            padding: 1.2rem;
            background: white;
        }
        
        .catalog-title {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .catalog-meta {
            color: var(--dark);
            opacity: 0.7;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        
        .view-btn {
            display: inline-block;
            color: var(--deep-rose);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-btn:hover {
            opacity: 0.8;
        }
        
        /* RTL Styles */
        html[dir="rtl"] .card-badge {
            right: auto;
            left: 15px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .style-nav {
                flex-wrap: wrap;
            }
            
            .style-option {
                padding: 0.6rem 1.2rem;
                margin: 0.3rem;
                font-size: 0.9rem;
            }
            
            .fashion-gallery {
                grid-template-columns: 1fr;
            }
            
            .catalogs-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Toast Notification */
        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateY(20px); }
            10% { opacity: 1; transform: translateY(0); }
            90% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(20px); }
        }

        .moodboard-empty {
            text-align: center;
            color: var(--mauve);
            padding: 2rem;
            display: none;
        }

        html[dir="rtl"] .moodboard-empty.lang-ar,
        html[dir="ltr"] .moodboard-empty.lang-en {
            display: block;
        }

.wedding-footer {
    background-color: var(--taupe);
    color: var(--light);
    padding: 60px 30px 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--mauve);
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--mauve);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--mauve);
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-group li {
    margin-bottom: 12px;
}

.footer-links-group a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    position: relative;
    opacity: 0.9;
}

.footer-links-group a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--mauve);
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--mauve);
    opacity: 1;
    transform: translateX(5px);
}

.footer-links-group a:hover::before {
    width: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--mauve);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.contact-item span {
    display: block;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright-text {
    margin: 10px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--mauve);
}

.legal-links span {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .legal-links {
        justify-content: center;
    }
}