﻿:root {
    --primary-color: #FFFFFF;
    --secondary-color: #F8F6F0;
    --accent-color: #E8E2D4;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-color);
}

.header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
    min-height: 60px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 22px;
    width: auto;
    max-width: 180px;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    font-weight: 400;
    color: var(--text-dark) !important;
    padding: 0.4rem 0 !important;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        opacity: 0.7;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: var(--text-dark);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 100%;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Search Bar */
.search-container {
    display: none;
    margin-right: 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

    .search-container.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

.search-input {
    width: 250px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

    .search-input:focus {
        border-color: var(--text-dark);
        box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
    }

.search-submit {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

    .search-submit:hover {
        color: var(--text-light);
    }

/* Action Buttons */
.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

    .action-btn:hover {
        background: var(--accent-color);
    }

    .action-btn.active {
        background: var(--accent-color);
    }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--text-dark);
    color: var(--primary-color);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 2000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

    .dropdown-panel.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.dropdown-content {
    padding: 0;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
}

    .empty-state i {
        font-size: 2rem;
        color: var(--border-color);
        margin-bottom: 0.5rem;
        display: block;
    }

.item-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

    .item-card:hover {
        background: var(--accent-color);
    }

    .item-card:last-child {
        border-bottom: none;
    }

.item-image {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 6px;
    margin-right: 0.75rem;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.item-price {
    color: var(--text-light);
    font-size: 0.85rem;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

    .remove-btn:hover {
        color: #dc3545;
    }

.dropdown-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--secondary-color);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.checkout-btn,
.view-all-btn {
    width: 100%;
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.checkout-btn {
    background: var(--text-dark);
    color: var(--primary-color);
}

    .checkout-btn:hover {
        background: var(--text-light);
    }

.view-all-btn {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

    .view-all-btn:hover {
        background: var(--accent-color);
    }

.navbar-expand-lg .navbar-nav {
    /*flex-direction: row;*/
    white-space: nowrap !important;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {

    /* Mobile search container positioning */
    #searchBarMobile {
        width: calc(100% - 2rem);
        margin: 0;
    }

        #searchBarMobile .search-input {
            width: 100%;
        }



    .navbar-collapse {
        background: var(--primary-color);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border-color);
    }

    /* Keep action icons outside of collapsible menu */
    .header-actions {
        flex-shrink: 0;
        margin-left: 0.5rem;
    }

    /* Position hamburger menu after action icons */
    .navbar-toggler {
        margin-left: 0.5rem;
    }

    /* Adjust dropdown positioning on mobile */
    .dropdown-panel {
        right: -1rem;
        width: 300px;
    }

    /* Ensure mobile search appears above collapsed navbar */
    #searchBarMobile.show {
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .logo-image {
        /* height: 32px;*/
        max-width: 100%;
    }

    .navbar > .container {
        flex-direction: row-reverse;
    }

    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .header-actions {
        gap: 0.25rem;
        width: 100%;
        margin: 0;
        border-top: 2px solid #f6f6f6;
        padding-top: .5rem;
        justify-content: center;
    }

    .dropdown-panel {
        width: 280px;
        right: -0.5rem;
    }

    .arabian-footer-section-title::after {
        left: 33%!important;
    }

    #searchBarMobile {
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
    }

        #searchBarMobile .search-input {
            width: 100%;
        }
    .principles-elegance-grid {
        grid-template-columns: repeat(2, 1fr)!important;
    }
    .image-box {
        width: 80px !important;
        height: 80px !important;
    }
        .image-box img {
            border-radius: 50%;
            padding:5px;
        }
    .image-box {
        margin-bottom: 50px!important;
        overflow:visible!important;
    }
    .overlay {
        position: relative!important;
        height: auto!important;
    }
    .cls-content {
        bottom: 18px !important;
        background:transparent!important;
    }
}




/* Hero Section */
.hero-section {
    position: relative;
    height: 65vh;
    min-height: 480px;
    max-height: 650px;
    overflow: hidden;
    background: var(--secondary-color);
}

/* Slider Container */
.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   /* background-repeat:no-repeat;*/
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    will-change: transform;
}

    .hero-slide.active {
        transform: translateX(0);
    }

    .hero-slide.prev {
        transform: translateX(-100%);
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(44, 44, 44, 0.75) 0%, rgba(44, 44, 44, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    max-width: 480px;
}

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 0.75rem;
        color: var(--primary-color);
    }

    .hero-content p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        opacity: 0.95;
    }

.hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-outline {
    padding: 0.65rem 1.4rem;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--primary-color);
    border-color: var(--text-dark);
}

    .btn-primary:hover {
        background: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.6);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

/* Navigation Controls */
.hero-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    pointer-events: auto;
}

    .hero-nav:hover {
        background: rgba(255, 255, 255, 0.15);
        color: var(--primary-color);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.05);
    }

    .hero-nav.prev {
        left: 1.25rem;
    }

    .hero-nav.next {
        right: 1.25rem;
    }

/* Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    pointer-events: auto;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

    .dot.active {
        background: var(--primary-color);
        transform: scale(1.25);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .dot:hover:not(.active) {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-slide {
        background-size:cover;
        background-repeat:no-repeat;
    }
    .hero-section {
        height: auto;
        min-height: 300px;
        max-height: 300px;
    }
    .hero-slider {
        height: 300px
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 300px;
        max-height: 300px;
    }
    .hero-slider {
        height: 300px
    }
    .hero-content {
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 1.9rem;
            margin-bottom: 0.6rem;
        }

        .hero-content p {
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
        }

    .hero-actions {
        gap: 0.6rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-nav {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

        .hero-nav.prev {
            left: 1rem;
        }

        .hero-nav.next {
            right: 1rem;
        }

    .hero-dots {
        bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        background-size: contain;
        background-repeat: no-repeat;
    }
    .hero-section {
        height: 50vh;
        min-height: 380px;
        max-height: 450px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.55rem 1.1rem;
        font-size: 0.75rem;
        min-width: 140px;
    }

    .hero-nav {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

        .hero-nav.prev {
            left: 0.75rem;
        }

        .hero-nav.next {
            right: 0.75rem;
        }

    .dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        background-size: contain;
        background-repeat: no-repeat;
    }
    .hero-section {
        height: auto;
        min-height: 150px;
        max-height:150px;
    }
    .hero-slider {
        height: 150px
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }
}

/* Featured Sections Styles */
.featured-sections {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.feature-card {
    position: relative;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
    border: 1px solid rgba(232, 226, 212, 0.3);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(44, 44, 44, 0.12);
    }

/* Background images without filters - crisp and clear */
.made-to-order {
    background: url('https://images.unsplash.com/photo-1594736797933-d0ac6683d1d8?w=600&q=80') center/cover;
    color: var(--primary-color);
}

.fabric {
    background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=600&q=80') center/cover;
    color: var(--primary-color);
}

.customization {
    background: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=600&q=80') center/cover;
    color: var(--primary-color);
}

.feature-overlay {
    display: none;
}

.feature-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.feature-card:hover .feature-content {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.feature-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.feature-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.feature-card:hover .feature-badge {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem 0;
    line-height: 1.2;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.feature-description {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.feature-card:hover .feature-title {
    transform: translateY(-2px);
}

.feature-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-cta {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.cta-text {
    font-weight: 500;
    font-size: 0.85rem;
}

.cta-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .cta-icon {
    transform: translateX(3px);
}

/* Mobile Responsive - Keep cards in single row */
@media (max-width: 767.98px) {
    .featured-sections {
        padding: 2.5rem 0;
    }

    .feature-card {
        height: 200px;
    }

    .feature-content {
        padding: 1rem;
        justify-content: flex-start;
    }

    .feature-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.55rem;
        margin-bottom: 0.5rem;
    }

    .feature-title {
        font-size: 1rem;
        margin: 0 0 0.3rem 0;
    }

    .feature-description {
        display: none; /* Hide description on mobile */
    }

    .feature-cta {
        padding: 0.6rem 0.8rem;
        margin-top: auto;
    }

    .cta-text {
        font-size: 0.75rem;
    }

    .cta-icon {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .feature-card {
        height: 160px;
    }

    .feature-content {
        padding: 0.8rem;
    }

    .feature-badge {
        padding: 0.15rem 0.4rem;
        font-size: 0.5rem;
        margin-bottom: 0.4rem;
    }

    .feature-title {
        font-size: 0.85rem;
        margin: 0 0 0.2rem 0;
        line-height: 1.1;
    }

    .feature-cta {
        padding: 0.5rem 0.6rem;
    }

    .cta-text {
        font-size: 0.65rem;
    }

    .cta-icon {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .feature-card {
        height: 140px;
    }

    .feature-content {
        padding: 0.6rem;
    }

    .feature-badge {
        padding: 0.1rem 0.3rem;
        font-size: 0.45rem;
        margin-bottom: 0.3rem;
    }

    .feature-title {
        font-size: 0.75rem;
        margin: 0 0 0.1rem 0;
        line-height: 1;
    }

    .feature-cta {
        padding: 0.4rem 0.5rem;
    }

    .cta-text {
        font-size: 0.6rem;
    }

    .cta-icon {
        font-size: 0.65rem;
    }
}

/* Performance optimizations */
.feature-card * {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-card * {
        transition: none !important;
    }

        .feature-card:hover {
            transform: none;
        }
}


/* Heritage Distinction Manifesto */
.heritage-distinction-manifesto {
    padding: 0 0 40px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

    .heritage-distinction-manifesto::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(circle at 30% 30%, rgba(232, 226, 212, 0.08) 0%, transparent 40%), radial-gradient(circle at 70% 70%, rgba(232, 226, 212, 0.05) 0%, transparent 50%), conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(232, 226, 212, 0.03) 90deg, transparent 180deg);
        animation: heritage-cosmic-drift 40s linear infinite;
        pointer-events: none;
    }

/* Manifesto Core Layout */
.manifesto-core-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 3rem; */
}

/* Manifesto Statement Hub */
.manifesto-statement-hub {
    position: relative;
    z-index: 3;
}

.statement-architectural-frame {
    position: relative;
    padding: 3rem;
    max-width: 700px;
}

.frame-luxury-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    opacity: 0.6;
}

    .frame-luxury-corner.top-left {
        top: 0;
        left: 0;
        border-right: none;
        border-bottom: none;
        animation: heritage-corner-glow 4s ease-in-out infinite;
    }

    .frame-luxury-corner.top-right {
        top: 0;
        right: 0;
        border-left: none;
        border-bottom: none;
        animation: heritage-corner-glow 4s ease-in-out infinite 1s;
    }

    .frame-luxury-corner.bottom-left {
        bottom: 0;
        left: 0;
        border-right: none;
        border-top: none;
        animation: heritage-corner-glow 4s ease-in-out infinite 2s;
    }

    .frame-luxury-corner.bottom-right {
        bottom: 0;
        right: 0;
        border-left: none;
        border-top: none;
        animation: heritage-corner-glow 4s ease-in-out infinite 3s;
    }

.statement-content-core {
    text-align: center;
}

.heritage-philosophy-mark {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.7;
    animation: heritage-mark-pulse 3s ease-in-out infinite;
}

.manifesto-proclamation {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.proclamation-essence {
    display: block;
    background: linear-gradient(135deg, var(--text-dark) 0%, #8B7355 50%, var(--text-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
}

.philosophy-signature-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--text-dark) 50%, transparent 100%);
    margin: 0 auto;
    animation: heritage-line-breathe 3s ease-in-out infinite;
}

/* Principles Elegance Grid */
.principles-elegance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.principle-essence-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(232, 226, 212, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

    .principle-essence-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
        transition: left 0.8s ease;
    }

    .principle-essence-card:hover::before {
        left: 100%;
    }

    .principle-essence-card:hover {
        transform: translateY(-8px) scale(1.02);
        background: rgba(255, 255, 255, 0.9);
        border-color: var(--accent-color);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .principle-essence-card[data-principle="mastery"]:hover {
        transform: translateY(-8px) scale(1.02) rotate(1deg);
    }

    .principle-essence-card[data-principle="heritage"]:hover {
        transform: translateY(-8px) scale(1.02) rotate(-1deg);
    }

    .principle-essence-card[data-principle="luxury"]:hover {
        transform: translateY(-8px) scale(1.02) rotate(0.5deg);
    }

    .principle-essence-card[data-principle="bespoke"]:hover {
        transform: translateY(-8px) scale(1.02) rotate(-0.5deg);
    }

/* Card Mystique Indicator */
.card-mystique-indicator {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 16px;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.principle-essence-card:hover .card-mystique-indicator {
    background: var(--text-dark);
    transform: scale(1.1) rotate(180deg);
}

.indicator-geometric-craft,
.indicator-geometric-heritage,
.indicator-geometric-luxury,
.indicator-geometric-bespoke {
    width: 20px;
    height: 20px;
    background: var(--text-dark);
    transition: all 0.4s ease;
}

.principle-essence-card:hover .indicator-geometric-craft,
.principle-essence-card:hover .indicator-geometric-heritage,
.principle-essence-card:hover .indicator-geometric-luxury,
.principle-essence-card:hover .indicator-geometric-bespoke {
    background: var(--primary-color);
}

.indicator-geometric-craft {
    border-radius: 3px;
    transform: rotate(45deg);
}

.indicator-geometric-heritage {
    border-radius: 50% 0;
    transform: rotate(45deg);
}

.indicator-geometric-luxury {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.indicator-geometric-bespoke {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Card Essence Content */
.card-essence-content {
    flex: 1;
}

.essence-refined-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.essence-whispered-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.principle-essence-card:hover .essence-whispered-detail {
    color: var(--text-dark);
}

/* Heritage Essence Revelation */
.heritage-essence-revelation {
    position: relative;
    z-index: 4;
}

.revelation-trigger-zone {
    position: relative;
    display: inline-block;
}

.trigger-mystique-button {
    background: var(--text-dark);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
}

    .trigger-mystique-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
        color: var(--primary-color);
        text-decoration: none;
    }

.mystique-text {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.mystique-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: heritage-mystique-ripple 3s ease-out infinite;
}

    .mystique-ripple:nth-child(2) {
        animation-delay: 1s;
    }

    .mystique-ripple:nth-child(3) {
        animation-delay: 2s;
    }

/* Heritage Animations */
@keyframes heritage-cosmic-drift {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes heritage-corner-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes heritage-mark-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes heritage-line-breathe {
    0%, 100% {
        transform: scaleX(1);
        opacity: 0.6;
    }

    50% {
        transform: scaleX(1.3);
        opacity: 1;
    }
}

@keyframes heritage-mystique-ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Heritage Responsive Design */
@media (max-width: 991.98px) {
    .heritage-distinction-manifesto {
        padding: 50px 0;
    }

    .manifesto-proclamation {
        font-size: 2.2rem;
    }

    .statement-architectural-frame {
        padding: 2rem;
    }

    .manifesto-core-layout {
        gap: 2.5rem;
    }

    .principles-elegance-grid {
        gap: 1.5rem;
        max-width: 900px;
    }

    .principle-essence-card {
        padding: 1.25rem;
    }

    .essence-refined-title {
        font-size: 1rem;
    }

    .essence-whispered-detail {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .heritage-distinction-manifesto {
        padding: 40px 0;
    }

    .manifesto-proclamation {
        font-size: 1.8rem;
    }

    .statement-architectural-frame {
        padding: 1.5rem;
    }

    .manifesto-core-layout {
        gap: 2rem;
    }

    .principles-elegance-grid {
        gap: 1rem;
        max-width: 100%;
    }

    .principle-essence-card {
        padding: 1rem;
    }

    .card-mystique-indicator {
        width: 35px;
        height: 35px;
        margin-bottom: 0.25rem;
    }

    .indicator-geometric-craft,
    .indicator-geometric-heritage,
    .indicator-geometric-luxury,
    .indicator-geometric-bespoke {
        width: 14px;
        height: 14px;
    }

    .essence-refined-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .essence-whispered-detail {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .trigger-mystique-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .manifesto-proclamation {
        font-size: 1.5rem;
    }

    .heritage-philosophy-mark {
        font-size: 1.5rem;
    }

    .frame-luxury-corner {
        width: 20px;
        height: 20px;
    }

    .principles-elegance-grid {
        gap: 0.75rem;
    }

    .principle-essence-card {
        padding: 0.75rem;
        border-radius: 16px;
    }

    .card-mystique-indicator {
        width: 30px;
        height: 30px;
        border-radius: 12px;
    }

    .indicator-geometric-craft,
    .indicator-geometric-heritage,
    .indicator-geometric-luxury,
    .indicator-geometric-bespoke {
        width: 12px;
        height: 12px;
    }

    .essence-refined-title {
        font-size: 0.8rem;
    }

    .essence-whispered-detail {
        font-size: 0.7rem;
    }

    .trigger-mystique-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Heritage Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .heritage-distinction-manifesto::before,
    .frame-luxury-corner,
    .heritage-philosophy-mark,
    .philosophy-signature-line,
    .mystique-ripple {
        animation: none;
    }

    .principle-essence-card:hover,
    .trigger-mystique-button:hover {
        transform: none;
    }
}


/* Video Collection Section */
.video-collection-section {
    padding: 1%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    height: 60vh;
}

    .video-collection-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23E8E2D4" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
        pointer-events: none;
    }

/* Video Slider Container */
.video-slider-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.video-slider {
    display: flex;
    height: 100%;
    animation: infiniteScroll 40s linear infinite;
    will-change: transform;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5));
    }
}

.video-card {
    min-width: 280px;
    width: 280px;
    height: 100%;
    margin-right: 20px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
}

.portrait-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 44, 44, 0) 0%, rgba(44, 44, 44, 0.1) 60%, rgba(44, 44, 44, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-info {
    color: white;
    text-align: left;
    width: 100%;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.video-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 300;
}

/* Pause animation on hover for better UX */
.video-slider-container:hover .video-slider {
    animation-play-state: paused;
}

.video-slider {
    animation-name: infiniteScroll;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-collection-section {
        height: 50vh;
    }

    .video-card {
        min-width: 240px;
        width: 240px;
        margin-right: 15px;
    }

    @keyframes infiniteScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-255px * 5));
        }
    }

    .video-overlay {
        padding: 1.5rem 1rem;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .video-collection-section {
        height: 45vh;
    }

    .video-card {
        min-width: 200px;
        width: 200px;
        margin-right: 12px;
    }

    @keyframes infiniteScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-212px * 5));
        }
    }

    .video-overlay {
        padding: 1rem 0.75rem;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-description {
        font-size: 0.8rem;
    }
}

/* Performance optimizations */
.video-slider * {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .video-slider {
        animation-duration: 60s;
    }
}


/* Arabian Heritage - Made to Order Section Styles */
.ah-made-to-order-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

    .ah-made-to-order-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(232, 226, 212, 0.3) 0%, transparent 50%);
        pointer-events: none;
    }

.ah-content-wrapper {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.ah-section-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: ah-fadeInUp 0.8s ease forwards;
}

.ah-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fadeInUp 0.8s ease 0.2s forwards;
}

.ah-section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fadeInUp 0.8s ease 0.4s forwards;
}

.ah-highlight-text {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--text-dark);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fadeInUp 0.8s ease 0.6s forwards;
}

    .ah-highlight-text strong {
        color: var(--text-dark);
        font-size: 1.05rem;
        font-style: italic;
    }

.ah-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fadeInUp 0.8s ease 0.8s forwards;
}

.ah-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .ah-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;
    }

    .ah-btn:hover::before {
        left: 100%;
    }

.ah-btn-primary {
    background: var(--text-dark);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.2);
}

    .ah-btn-primary:hover {
        background: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    }

.ah-btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

    .ah-btn-outline:hover {
        background: var(--text-dark);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(44, 44, 44, 0.2);
    }

.ah-image-wrapper {
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(50px);
    animation: ah-fadeInRight 1s ease 0.5s forwards;
}

.ah-main-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ah-main-dress-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.ah-main-image:hover .ah-main-dress-image {
    transform: scale(1.05);
}

.ah-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    gap: 10px;
}

    .ah-image-placeholder i {
        font-size: 3rem;
        opacity: 0.5;
    }

.ah-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ah-main-image:hover .ah-image-overlay {
    opacity: 1;
}

.ah-floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    animation: ah-floatUp 2s ease infinite alternate;
}

.ah-card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.ah-card-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.ah-card-subtitle {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Decorative Elements */
.ah-section-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

    .ah-section-decoration.ah-top-left {
        top: 50px;
        left: 50px;
        animation: ah-rotate 20s linear infinite;
    }

    .ah-section-decoration.ah-bottom-right {
        bottom: 50px;
        right: 50px;
        animation: ah-rotate 25s linear infinite reverse;
    }

/* Animations */
@keyframes ah-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ah-fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ah-floatUp {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes ah-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ah-made-to-order-section {
        padding: 80px 0;
    }

    .ah-section-title {
        font-size: 2.5rem;
    }

    .ah-image-wrapper {
        height: 400px;
        margin-bottom: 40px;
    }

    .ah-floating-card {
        bottom: 20px;
        left: 20px;
        min-width: 180px;
    }

    .ah-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .ah-made-to-order-section {
        padding: 20px 0;
    }

    .ah-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .ah-section-description {
        text-align: center;
        font-size: 1rem;
    }

    .ah-section-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto 20px;
    }

    .ah-image-wrapper {
        height: 300px;
    }

    .ah-floating-card {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .ah-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ah-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ah-section-decoration {
        display: none;
    }

    .phnk {
        margin-bottom: 5rem;
    }
}

@media (max-width: 575.98px) {
    .ah-section-title {
        font-size: 1.75rem;
    }

    .ah-highlight-text {
        padding: 15px;
    }

    .ah-floating-card {
        padding: 15px;
        min-width: auto;
        width: 100%;
    }
}


:root {
    --primary-color: #FFFFFF;
    /* 60% - White */
    --secondary-color: #F8F6F0;
    /* 30% - Light cream */
    --accent-color: #E8E2D4;
    /* 10% - Warm beige */
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --border-color: #E0E0E0;
}

.category-section {
    background: var(--primary-color);
    position: relative;
}



/* Category Cards */
.category-card {
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: var(--primary-color);
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

.card-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.card-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(0.9);
        object-position: top;
    }

.category-card:hover .card-image img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(44, 44, 44, 0.3) 40%, rgba(44, 44, 44, 0.8) 100%);
    color: var(--primary-color);
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content {
    text-align: left;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.explore-btn {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .explore-btn:hover {
        background: var(--secondary-color);
        transform: translateX(4px);
    }

    .explore-btn i {
        transition: transform 0.3s ease;
    }

    .explore-btn:hover i {
        transform: translateX(4px);
    }



/* Responsive Design */
@media (max-width: 991.98px) {
    .category-card {
        height: 280px;
    }

    .card-overlay {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .explore-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .category-card {
        height: 240px;
    }

    .card-overlay {
        padding: 0.8rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 575.98px) {
    .category-card {
        height: 200px;
    }

    .card-overlay {
        padding: 0.7rem;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .card-description {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .explore-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

        .explore-btn span {
            display: none;
        }

        .explore-btn::after {
            content: 'Explore';
        }
}

/* Loading optimization */
.category-card img {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {

    .category-card,
    .card-image img,
    .card-overlay,
    .explore-btn,
    .view-latest-btn {
        transition: none;
    }
}



/* Arabian Heritage - Fabric Section Styles */
.ah-fabric-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

    .ah-fabric-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 80%, rgba(232, 226, 212, 0.4) 0%, transparent 50%);
        pointer-events: none;
    }

.ah-fabric-content-wrapper {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.ah-fabric-section-badge {
    display: inline-block;
    background: var(--text-dark);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: ah-fabric-fadeInUp 0.8s ease forwards;
}

.ah-fabric-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fabric-fadeInUp 0.8s ease 0.2s forwards;
}

.ah-fabric-section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fabric-fadeInUp 0.8s ease 0.4s forwards;
}

.ah-fabric-highlight-text {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--text-dark);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fabric-fadeInUp 0.8s ease 0.6s forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

    .ah-fabric-highlight-text strong {
        color: var(--text-dark);
        font-size: 1.05rem;
        font-style: italic;
    }

.ah-fabric-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: ah-fabric-fadeInUp 0.8s ease 0.8s forwards;
}

.ah-fabric-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .ah-fabric-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;
    }

    .ah-fabric-btn:hover::before {
        left: 100%;
    }

.ah-fabric-btn-primary {
    background: var(--text-dark);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.2);
}

    .ah-fabric-btn-primary:hover {
        background: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    }

.ah-fabric-btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

    .ah-fabric-btn-outline:hover {
        background: var(--text-dark);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(44, 44, 44, 0.2);
    }

.ah-fabric-image-wrapper {
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(-50px);
    animation: ah-fabric-fadeInLeft 1s ease 0.5s forwards;
}

.ah-fabric-main-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ah-fabric-dress-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.ah-fabric-main-image:hover .ah-fabric-dress-image {
    transform: scale(1.05);
}

.ah-fabric-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ah-fabric-main-image:hover .ah-fabric-image-overlay {
    opacity: 1;
}

.ah-fabric-floating-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    animation: ah-fabric-floatUp 2s ease infinite alternate;
}

.ah-fabric-card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.ah-fabric-card-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.ah-fabric-card-subtitle {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Decorative Elements */
.ah-fabric-section-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    opacity: 0.2;
}

    .ah-fabric-section-decoration.ah-fabric-top-right {
        top: 50px;
        right: 50px;
        animation: ah-fabric-rotate 20s linear infinite;
    }

    .ah-fabric-section-decoration.ah-fabric-bottom-left {
        bottom: 50px;
        left: 50px;
        animation: ah-fabric-rotate 25s linear infinite reverse;
    }

/* Animations */
@keyframes ah-fabric-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ah-fabric-fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ah-fabric-floatUp {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes ah-fabric-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ah-fabric-section {
        padding: 80px 0;
    }

    .ah-fabric-section-title {
        font-size: 2.5rem;
    }

    .ah-fabric-image-wrapper {
        height: 400px;
        margin-bottom: 40px;
    }

    .ah-fabric-floating-card {
        bottom: 20px;
        right: 20px;
        min-width: 180px;
    }

    .ah-fabric-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .ah-fabric-section {
        padding: 60px 0;
    }

    .ah-fabric-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .ah-fabric-section-description {
        text-align: center;
        font-size: 1rem;
    }

    .ah-fabric-section-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto 20px;
    }

    .ah-fabric-image-wrapper {
        height: 300px;
    }

    .ah-fabric-floating-card {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .ah-fabric-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ah-fabric-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ah-fabric-section-decoration {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .ah-fabric-section-title {
        font-size: 1.75rem;
    }

    .ah-fabric-highlight-text {
        padding: 15px;
    }

    .ah-fabric-floating-card {
        padding: 15px;
        min-width: auto;
        width: 100%;
    }
}

/* Compact Premium New Arrivals */
.new-arrivals-section {
    padding: 4rem 0;
    background: var(--primary-color);
    border-top: 1px solid var(--border-color);
}

/* Compact Header */
.section-header {
    margin-bottom: 3rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.view-all-link {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

    .view-all-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--text-dark);
        transition: width 0.3s ease;
    }

    .view-all-link:hover::after {
        width: 100%;
    }

    .view-all-link:hover i {
        transform: translateX(4px);
    }

    .view-all-link i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

.section-line {
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

/* Compact Products Row */
.products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Compact Product Item */
.product-item {
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .product-item:hover {
        transform: translateY(-4px);
    }

/* Compact Product Image */
.product-image {
    position: relative;
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 3/4;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.product-item:hover .product-image img {
    transform: scale(1.05);
}

/* Compact Product Overlay */
.product-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.quick-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

    .quick-action:hover {
        background: var(--text-dark);
        color: var(--primary-color);
        transform: scale(1.1);
    }

    .quick-action.wishlist:hover {
        background: #dc3545;
        color: white;
    }

/* Compact Product Badge */
.product-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: var(--text-dark);
    color: var(--primary-color);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .product-badge.exclusive {
        background: #8B4513;
    }

/* Compact Product Info */
.product-info {
    text-align: left;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .new-arrivals-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .products-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .quick-action {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .product-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

        .product-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .product-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .product-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .product-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .product-item:nth-child(5) {
            animation-delay: 0.5s;
        }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


.customization-section {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}

.content-wrapper {
    padding-right: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--primary-color);
    border-left: 3px solid var(--text-dark);
    border-radius: 4px;
}

.custom-btn {
    display: inline-block;
    background: var(--text-dark);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .custom-btn:hover {
        background: var(--text-light);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

.customization-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.custom-dress-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .custom-dress-img:hover {
        transform: scale(1.02);
    }

@media (max-width: 991.98px) {
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .customization-image {
        margin-top: 2rem;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .customization-section {
        padding: 60px 0;
    }

    .customization-image {
        min-height: 250px;
    }
}

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #F8F6F0;
    --accent-color: #E8E2D4;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --border-color: #E0E0E0;
}

.testimonials-section {
    background: var(--secondary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-card {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: transform 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-2px);
    }

.stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    font-size: 0.875rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    flex-shrink: 0;
}

.customer-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.customer-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .trust-indicators {
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .trust-indicators {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .trust-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 0.875rem;
    }

    .customer-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-number {
        font-size: 1.25rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }
}


/* Arabian Heritage Footer Styles */
.arabian-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

    .arabian-footer::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" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="0.5" fill="white" opacity="0.03"/><circle cx="75" cy="25" r="0.5" fill="white" opacity="0.02"/><circle cx="25" cy="75" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

.arabian-footer-main {
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.arabian-footer-brand {
    margin-bottom: 1.5rem;
}

.arabian-brand-logo {
    height: 32px;
    width: auto;
    max-width: 180px;
    margin-bottom: 1rem;
    /* filter: brightness(0) invert(1); */
}

.arabian-footer-tagline {
    font-size: 0.85rem;
    color: #B0B0B0;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.arabian-contact-details {
    margin-top: 1rem;
}

.arabian-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #B0B0B0;
}

    .arabian-contact-item i {
        margin-right: 0.5rem;
        margin-top: 0.1rem;
        color: var(--accent-color);
        font-size: 0.75rem;
        width: 12px;
        flex-shrink: 0;
    }

.arabian-footer-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    position: relative;
}

    .arabian-footer-section-title::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 25px;
        height: 2px;
        background: #dc3545;
        border-radius: 2px;
    }

.arabian-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .arabian-footer-links li {
        margin-bottom: 0.5rem;
    }

    .arabian-footer-links a {
        color: #B0B0B0;
        text-decoration: none;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

        .arabian-footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(3px);
        }

/* App & Social Section */
.arabian-app-social-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.arabian-app-description {
    font-size: 0.8rem;
    color: #B0B0B0;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.arabian-app-stores {
    display: flex;
    gap: 0.75rem;
}

.arabian-app-store-btn {
    display: block;
    transition: transform 0.3s ease;
}

    .arabian-app-store-btn:hover {
        transform: translateY(-2px);
    }

.arabian-app-icon {
    height: 36px;
    width: auto;
}

.arabian-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.arabian-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .arabian-social-link:hover {
        background: #dc3545;
        color: var(--primary-color);
        border-color: #dc3545;
        transform: translateY(-2px);
    }

/* Footer Bottom */
.arabian-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    position: relative;
    z-index: 2;
    /* background: rgba(0, 0, 0, 0.2); */
}

.arabian-copyright {
    color: #B0B0B0;
    font-size: 0.8rem;
    margin: 0;
}

.arabian-brand-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
}

    .arabian-brand-link:hover {
        color: var(--primary-color);
    }

.arabian-powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #B0B0B0;
    margin: 0;
}

.arabian-infatix-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .arabian-infatix-link:hover {
        color: var(--primary-color);
    }

.arabian-payment-methods {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.arabian-payment-icon {
    height: 20px;
    width: auto;
   /* max-width: 57px;*/
    transition: transform 0.3s ease;
    opacity: 0.8;
    filter: brightness(1.2);
}

    .arabian-payment-icon:hover {
        transform: translateY(-1px);
        opacity: 1;
    }

/* Mobile Responsive */
@media (max-width: 1199px) {
    .arabian-footer-links a {
        font-size: 0.75rem;
    }

    .arabian-footer-section-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .arabian-footer-main {
        padding: 2.5rem 0 1rem;
    }

    .arabian-app-stores {
        flex-direction: column;
        max-width: 150px;
    }

    .arabian-footer-brand {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .arabian-footer-main {
        padding: 2rem 0 1rem;
    }

    .arabian-footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .arabian-contact-details {
        text-align: left;
        max-width: 300px;
        margin: 1rem auto;
    }

    .text-left {
        text-align: left!important;
    }

    .arabian-social-links {
        justify-content: center;
    }

    .w-b-100 {
        max-width:100%;
    }
    .arabian-footer-section-title.text-left::after {
        left:0!important;
    }
    .arabian-app-stores {
        flex-direction: row;
        max-width: initial;
        justify-content: start !important;
        margin: 0 auto;
        align-items: start !important;
    }

    .arabian-footer-section-title {
        text-align: center;
    }


    .arabian-footer-links {
        text-align: center;
    }

    .arabian-app-social-section {
        text-align: center;
    }

    .arabian-app-stores {
        justify-content: center;
        margin: 0 auto;
    }

    /* Footer Bottom Mobile */
    .arabian-copyright {
        text-align: center;
        font-size: 0.75rem;
    }

    .arabian-powered-by {
        text-align: center;
        font-size: 0.75rem;
    }

    .arabian-payment-methods {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .arabian-footer-main {
        padding: 1.5rem 0 0.75rem;
    }

    .arabian-footer-tagline {
        font-size: 0.8rem;
    }

    .arabian-contact-item {
        font-size: 0.75rem;
    }

    .arabian-footer-section-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .arabian-footer-links a {
        font-size: 0.75rem;
    }

    .arabian-footer-links li {
        margin-bottom: 0.4rem;
    }

    .arabian-app-social-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .arabian-payment-methods {
        flex-wrap: wrap;
        gap: 0.3rem;
        justify-content: center;
    }

    .arabian-payment-icon {
        height: 16px;
        max-width: 28px;
    }

    .arabian-social-links {
        gap: 0.5rem;
        justify-content: start;
    }

    .arabian-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .arabian-app-stores {
        align-items: center;
        gap: 0.5rem;
    }

    .arabian-app-icon {
        height: 32px;
    }

    .arabian-copyright,
    .arabian-powered-by {
        font-size: 0.7rem;
    }

    .arabian-footer-bottom {
        padding: 1rem 0;
    }
}

@media (max-width: 375px) {
    .arabian-footer-main {
        padding: 1.25rem 0 0.5rem;
    }

    .arabian-brand-logo {
        height: 28px;
        max-width: 140px;
    }

    .arabian-footer-tagline {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .arabian-contact-item {
        font-size: 0.7rem;
    }

    .arabian-footer-section-title {
        font-size: 0.8rem;
    }

    .arabian-footer-links a {
        font-size: 0.7rem;
    }

    .arabian-payment-icon {
        height: 14px;
        max-width: 24px;
    }

    .arabian-social-link {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .arabian-app-icon {
        height: 28px;
    }
}
.right {
    right: 0;
}

.text-truncate {
    width: -webkit-fill-available;
}