
        @font-face {
        font-family: 'Tajawal';
        src: url('../fonts/Tajawal/Tajawal-Bold.ttf') format('truetype');
        font-weight: bold; /* Medium */
        font-style: normal;
        }

        @font-face {
        font-family: 'Tajawal';
        src: url('../fonts/Tajawal/Tajawal-Regular.ttf') format('truetype');
        font-weight: 500; /* Medium */
        font-style: normal;
        }

        :root {
            --primary: #52326f;
            --primary-container: #6b4a88;
            --on-primary: #ffffff;
            --on-primary-container: #e4c2ff;
            --secondary: #6e5a57;
            --secondary-container: #f7dcd9;
            --on-secondary-container: #74605d;
            --tertiary: #735c00;
            --tertiary-fixed: #ffe088;
            --on-tertiary-fixed: #241a00;
            --surface: #fff8f3;
            --surface-variant: #ebe1d6;
            --surface-container: #f6ece1;
            --surface-container-low: #fcf2e7;
            --surface-container-high: #f1e7dc;
            --surface-container-highest: #ebe1d6;
            --surface-container-lowest: #ffffff;
            --on-surface: #1f1b14;
            --on-surface-variant: #4b444e;
            --outline-variant: #cdc3d0;
            --primary-fixed: #f1daff;
            --on-primary-fixed: #2a0846;
            --secondary-fixed: #f7dcd9;
            --radius-xl: 0.75rem;
            --radius-lg: 0.5rem;
            --bs-primary: #53347d;
            --bs-primary-rgb: 83, 52, 125;
            --surface-bg: #f7f9ff;
            --surface-container: #ebeef3;
            --surface-container-low: #f1f4f9;
        }

        :root {
            --font-family-display: "Tajawal", Helvetica, arial, sans-serif;
            --font-family-heading: "Tajawal", Helvetica, arial, sans-serif;
            --font-family-body: "Tajawal", helvetica, arial, sans-serif;
            --font-family-lead: "Tajawal", helvetica, arial, sans-serif;
            --font-family-capitilized: "Tajawal", helvetica, arial, sans-serif;
            --font-family-tiny: "Tajawal", helvetica, arial, sans-serif;
            --font-family-numbers: "Tajawal", helvetica, arial, sans-serif;
        }

        body {
            background-color: var(--surface);
            color: var(--on-surface);
            font-family: 'Tajawal', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden !important;
        }

        h1, h2, h3, .font-h1, .font-h2, .font-h3, p,span {
            font-family: 'Tajawal', serif;
        }
        .text-color-primary {
            color: var(--on-primary-fixed)
        }
        .h1-hero { font-size: 3rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
        @media (min-width: 768px) { .h1-hero { font-size: 4.5rem; } }

        .h2-section { font-size: 2rem; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
        @media (min-width: 768px) { .h2-section { font-size: 3.5rem; } }

        @media (max-width: 767.98px) {
            #home,.blog-header {
                margin-top: 90px; /* عدّل الرقم حسب ارتفاع المنيو عندك */
            }
            .h-100vh {
                height: calc(100vh - 90px);
            }
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            vertical-align: middle;
        }

        .editorial-gradient {
            background: linear-gradient(135deg, #52326f 0%, #6b4a88 100%);
        }

        .glass-nav {
            background: rgb(229 229 229 / 46%);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--surface-container-highest);
        }

         /* Buttons */
        .btn-asa-primary {
            background: linear-gradient(135deg, #3c1c65, #53347d);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 0.75rem;
            font-weight: 500;
            border: none;
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .btn-asa-primary:hover {
            color: white;
            transform: scale(0.98);
        }

        .btn-asa-secondary {
            background-color: var(--asa-surface-variant);
            color: var(--asa-text-on-surface);
            padding: 1.25rem 2.5rem;
            border-radius: 0.75rem;
            font-weight: 500;
            border: 1px solid var(--bs-primary);
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .btn-asa-secondary:hover {
            background-color: #d1d4d9;
            color: var(--asa-text-on-surface);
        }

        .nav-link-custom {
            color: var(--on-surface);
            font-weight: 500;
            font-size: 16px;
            text-decoration: none;
            transition: color 0.2s;
        }
        .nav-link-custom:hover { color: var(--primary); }
        .nav-link-custom.active {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 4px;
        }

        .btn-editorial {
            background: linear-gradient(135deg, #52326f 0%, #6b4a88 100%);
            color: var(--on-primary);
            border: none;
            padding: 16px 20px;
            border-radius: var(--radius-xl);
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(82, 50, 111, 0.2);
            transition: transform 0.2s;
        }
        .btn-editorial:hover { transform: scale(1.05); color: var(--on-primary); }

        .btn-outline-glass {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: none;
            padding: 16px 20px;
            border-radius: var(--radius-xl);
            font-weight: 600;
            transition: background 0.2s;
        }
        .btn-outline-glass:hover { background: rgba(255, 255, 255, 0.3); color: white; }

        /* Carousel Styles */
        .h-100vh {
            height: 100vh;
        }
        .hero-carousel .owl-stage-outer,
        .hero-carousel .owl-stage,
        .hero-carousel .owl-item,
        .hero-carousel .item {
            height: 100%;
        }
        .owl-carousel.hero-carousel .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
        }
        .owl-theme .owl-dots {
            position: absolute;
            bottom: 30px;
            width: 100%;
        }
        .owl-theme .owl-dots .owl-dot span {
            background: rgba(255, 255, 255, 0.5);
            width: 12px;
            height: 12px;
            margin: 5px 7px;
        }
        .owl-theme .owl-dots .owl-dot.active span {
            background: #ffffff;
            width: 30px;
        }

        /* Badge Styles */
        .badge-custom {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .badge-secondary { background-color: var(--secondary-container); color: var(--on-secondary-container); }
        .badge-primary { background-color: var(--primary-fixed); color: var(--on-primary-fixed); }
        .badge-tertiary { background-color: var(--tertiary-fixed); color: var(--on-tertiary-fixed); }

        /* Service Cards */
        .service-card {
            background-color: var(--surface-container-lowest);
            padding: 32px;
            border-radius: 1rem;
            transition: all 0.3s;
            height: 100%;
            border: none;
        }
        .service-card:hover {
            background: linear-gradient(135deg, #52326f 0%, #6b4a88 100%);
            transform: translateY(-8px);
        }
        .service-card:hover h3, .service-card:hover p, .service-card:hover{
            color: white !important;
        }
        .service-card .icon-box {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .service-card:hover .icon-box { background: rgba(255,255,255,0.2) !important; }

        /* Stats Card Overlay */
        .stats-card {
            position: absolute;
            bottom: -40px;
            left: 0;
            z-index: 20;
            background: var(--surface-container-lowest);
            padding: 32px;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            max-width: 240px;
        }

        /* Bento Grid */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 400px);
            gap: 24px;
        }
        .grid-span-2-row-2 {
            grid-column: span 2;
            grid-row: span 2;
        }
        @media (max-width: 768px) {
            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                height: auto;
            }
        }
        .bento-item {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
        }
        .bento-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .bento-item:hover img { transform: scale(1.1); }
        .bento-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(82, 50, 111, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
        }
        .bento-item:hover .bento-overlay { opacity: 1; }

        /* Team Section */
        .team-img-wrapper {
            width: 256px;
            height: 256px;
            margin: 0 auto 24px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--surface-container-lowest);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.5s;
        }
        .team-card:hover .team-img-wrapper { transform: scale(1.05); }
        .team-img-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(82, 50, 111, 0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .team-card:hover .team-img-wrapper::after { opacity: 1; }

        /* Contact Form */
        .form-control-custom {
            background-color: var(--surface-container-high);
            border: none;
            border-bottom: 2px solid rgba(82, 50, 111, 0.2);
            border-radius: 8px 8px 0 0;
            padding: 12px 16px;
        }
        .form-control-custom:focus {
            box-shadow: none;
            border-color: var(--primary);
            background-color: var(--surface-container-high);
        }

        .footer-link {
            color: var(--on-surface-variant);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-link:hover { color: var(--primary); }


         /* Floating Buttons */
        .floating-action-btns {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .btn-floating {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
            border: none;
        }
        .btn-whatsapp { background-color: #25D366; color: white; }
        .btn-scroll-top { background-color: var(--primary); color: white; display: none; }
        .btn-floating:hover { transform: scale(1.1); color: white; }




        /* Cards & Grids */
        .offer-card {
            background: #ffffff;
            border-radius: 1.25rem;
            border: 1px solid #f0f0f0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .offer-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(83, 52, 125, 0.08);
            border-color: var(--primary-color);
        }
        .card-badge {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            background: var(--tertiary-fixed);
            color: var(--on-tertiary-fixed);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }


         .offer-img-container {
            position: relative;
            padding: 0.75rem;
            background: #f8f9fa;
        }
        .offer-img-container .img-wrapper {
            border-radius: 1rem;
            overflow: hidden;
            aspect-ratio: 1/1;
        }
        .offer-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .offer-card:hover .offer-img-container img {
            transform: scale(1.05);
        }




         /* about page */ 
         
         .badge-editorial {
            background-color: var(--secondary-container);
            color: var(--on-secondary-container);
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
            border-radius: 50rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            color: var(--primary);
        }

        .text-outline-custom {
            color: transparent;
            -webkit-text-stroke: 1px var(--outline);
        }

        .hero-image-container {
            position: relative;
            border-radius: 1.5rem;
            overflow: visible;
        }

        .hero-img {
            width: 100%;
            /* aspect-ratio: 4/5; */
            object-fit: cover;
            border-radius: 1.5rem;
            filter: grayscale(100%);
            transition: filter 0.7s ease-in-out;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hero-img:hover {
            filter: grayscale(0%);
        }

        .hero-quote-card {
            position: absolute;
            bottom: -2.5rem;
            left: -2.5rem;
            background-color: var(--primary);
            color: var(--on-primary);
            padding: 2rem;
            border-radius: 1.5rem;
            max-width: 320px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        
        /* Values Cards */
        .value-card {
            padding: 2.5rem;
            background-color: var(--surface-container-lowest);
            border-radius: 1.5rem;
            transition: all 0.5s ease;
            height: 100%;
            border: none;
        }

        .value-card:hover {
            background-color: var(--primary);
            transform: translateY(-0.5rem);
        }

        .value-card:hover * {
            color: white !important;
        }

        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        /* Team Section */
        .team-img-wrapper {
            aspect-ratio: 3/4;
            border-radius: 1.5rem;
            overflow: hidden;
            background-color: var(--surface-container);
            margin-bottom: 1.5rem;
        }

        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }

        .team-card:hover .team-img {
            filter: grayscale(0%);
        }

        .team-social-icons {
            display: flex;
            gap: 1rem;
            color: var(--outline);
        }

        .team-card:hover .team-social-icons {
            color: var(--primary);
        }



        /* Services Page */
         .service-row {
            margin-bottom: 8rem;
            align-items: center;
        }

        .service-image-wrapper {
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transition: transform 0.5s ease;
        }

        .service-image-wrapper:hover {
            transform: scale(1.02);
        }

        .service-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            min-height: 450px;
        }

         .cta-section {
            background-color: var(--primary);
            color: white;
            border-radius: 3rem;
            padding: 6rem 2rem;
            margin-bottom: 6rem;
        }

        .floating-actions {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1050;
        }

        .btn-floating {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border: none;
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-floating:hover {
            transform: translateY(-5px);
        }


        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        /* Services Page End */



         .accent-color {
            color: var(--primary-brand);
        }



         .badge-journal {
            background-color: var(--tertiary-fixed);
            color: var(--on-tertiary-fixed);
            font-weight: 800;
            letter-spacing: 0.1em;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        /* Featured Card */
        .featured-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 5rem;
        }
        .featured-img-container {
            height: 500px;
            overflow: hidden;
        }
        .featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.8s ease, transform 0.8s ease;
        }
        .featured-card:hover .featured-img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }


         /* Blog Grid */

         .page-header .custom-container .bg-overlay {
            position: relative;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            }
            .page-header .custom-container .bg-overlay::after {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            bottom: 0px;
            width: 100%;
            height: 100%;
            opacity: 0.6;
            background: #000;
            }
            .page-header .custom-container .bg-overlay .img-banner {
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
                object-fit: cover;
            -o-object-position: center;
                object-position: center;
            }

        .blog-card {
            border: none;
            background: transparent;
            margin-bottom: 3rem;
            transition: transform 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-10px);
        }
        .blog-img-wrapper {
            aspect-ratio: 4/5;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .blog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-img {
            transform: scale(1.1);
        }

        /* Blog list vertical layout */
        .list-posts.row {
            display: block !important;
            margin-left: 0;
            margin-right: 0;
        }

        /* Breadcrumb navigation styling */
        .breadcrumb-nav {
            background-color: var(--surface);
            color: var(--text-on-surface);
            border: 1px solid var(--outline-variant);
            border-radius: 12px;
            padding: 0.5rem 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
            font-size: 0.9rem;
        }
        .breadcrumb-nav a {
            color: var(--primary-brand);
            text-decoration: none;
        }
        .breadcrumb-nav a:hover {
            text-decoration: underline;
            color: var(--primary-brand);
            opacity: 0.9;
        }
        /* Remove bullet points from blog list */
        .list-posts {
            list-style: none;
            padding-left: 0;
            padding-right: 0;
            margin-bottom: 0;
        }


        .category-tag {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 4px 8px;
            border-radius: 4px;
            border: 1px solid var(--outline-variant);
            margin-right: 0.5rem;
            color: var(--text-variant);
        }
        .tag-special {
            background-color: #90efef;
            border-color: #90efef;
            color: #006e6e;
        }
        .tag-new {
            background-color: var(--primary-brand);
            border-color: var(--primary-brand);
            color: white;
        }


        /* Product Page */
        /* Exclusive Offers Cards */
        .offer-card {
            border: none;
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(83, 52, 125, 0.1);
        }
        .offer-img-wrapper {
            position: relative;
            padding-top: 100%;
            background: #f8f9fa;
        }
        .offer-img-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .offer-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: #ffdf9e;
            color: #261a00;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            z-index: 2;
        }
        .btn-primary-custom {
            background-color:var(--on-secondary-container);
            border-color: var(--primary-color);
            color: white;
            border-radius: var(--radius-custom);
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background-color:  var(--on-primary-fixed); 
            color: white;
        }

        /* Product Detail */
        .product-main-img {
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 736px; /* تحديد أقصى عرض */
            height: auto;
            aspect-ratio: 1 / 1; /* فرض نسبة عرض إلى ارتفاع 1:1 */
            object-fit: cover; /* تغطية المساحة بالكامل مع قص الزيادة */
            transition: transform 0.5s ease;
        }

        .product-main-img:hover {
            transform: scale(1.02);
        }

        .breadcrumb {
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .product-title {
            font-size: 3.5rem;
            line-height: 1;
            margin-bottom: 1.5rem;
            color: var(--asa-primary);
        }

        .price-tag {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .finish-opt {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid transparent;
            padding: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .finish-opt.active {
            border-color: var(--asa-primary);
        }

        .finish-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .size-btn {
            border: 1px solid #dee2e6;
            background: white;
            padding: 0.75rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .size-btn.active {
            background: var(--asa-primary);
            color: white;
            border-color: var(--asa-primary);
        }

        .qty-control {
            background: #fff;
            border-radius: 12px;
            border: 1px solid #dee2e6;
            display: inline-flex;
            align-items: center;
            overflow: hidden;
        }

        .qty-btn {
            border: none;
            background: none;
            padding: 0.75rem 1rem;
            color: var(--asa-primary);
            transition: background 0.2s;
        }

        .qty-btn:hover {
            background: #f1f4f9;
        }

        .btn-primary-asa {
            background-color: var(--asa-primary);
            border-color: var(--asa-primary);
            color: var(--on-primary-fixed);
            padding: 1.25rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 15px 30px rgba(83, 52, 125, 0.2);
            transition: all 0.3s;
        }

        .btn-primary-asa:hover {
            background-color: var(--asa-primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(83, 52, 125, 0.3);
        }

        /* Sections */
        .section-padding {
            padding: 100px 0;
        }

        .architectural-details {
            background-color: #fff;
            border-radius: 40px;
            padding: 80px;
            margin-top: 100px;
        }

        .detail-item {
            border-bottom: 1px solid #f1f4f9;
            padding: 1.5rem 0;
        }

        .detail-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            color: var(--asa-text-muted);
            margin-bottom: 0.25rem;
            display: block;
        }

        .detail-value {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Cards */
        .related-card {
            border: none;
            background: none;
            transition: transform 0.3s;
        }

        .related-card:hover {
            transform: translateY(-10px);
        }

        .related-img-wrapper {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 1/1;
            margin-bottom: 1rem;
        }

        .related-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-card {
            background: #fff;
            border: none;
            border-radius: 24px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
        }

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
        }


        /* Shop by Dimension Grid */
        .category-tile {
            position: relative;
            border-radius: 1.25rem;
            overflow: hidden;
            height: 100%;
            cursor: pointer;
        }
        .category-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .category-tile:hover img {
            transform: scale(1.05);
        }
        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
        }
        /* Product Page End */

                
      


        /* *****************************************************************/
    @media (max-width: 768px) {
        .stats-card {
            left: 20px;
            bottom: -20px;
            max-width: 90%;
        }
    }


/* Login & Signup Form */
#authModal .modal-content {
    background-color: var(--surface);
    border-radius: 2rem;
}

#authModal .nav-pills {
    background-color: var(--surface-container-low) !important;
}

#authModal .nav-pills .nav-link {
    color: var(--on-surface-variant);
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

#authModal .nav-pills .nav-link.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(82, 50, 111, 0.2);
}

#authModal .form-label {
    color: var(--primary);
    letter-spacing: 0.05em;
}

#authModal .form-control {
    background-color: var(--surface-container-low);
    border: 1px solid var(--outline-variant);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

#authModal .form-control:focus {
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(82, 50, 111, 0.1);
}

#authModal .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(82, 50, 111, 0.2);
    transition: all 0.3s ease;
}

#authModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(82, 50, 111, 0.3);
}

#authModal .btn-outline-dark {
    border-color: var(--outline-variant);
    color: var(--on-surface);
    transition: all 0.3s ease;
}

#authModal .btn-outline-dark:hover {
    background-color: var(--surface-container-high);
    border-color: var(--primary);
    transform: translateY(-2px);
}

#authModal hr {
    opacity: 0.1;
}




/* profile */


.sidebar-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            border-radius: var(--border-radius-custom);
            color: var(--on-surface-variant);
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 600;
        }

        .sidebar-link:hover {
            background-color: var(--surface-container-low);
            color: var(--primary-color);
        }

        .sidebar-link.active {
            background-color: var(--surface-container);
            color: var(--primary-color);
        }

        .card-editorial {
            background: white;
            border: none;
            border-radius: 4rem; /* Matching the pill-like look from the screenshot */
            padding: 3rem;
            margin-bottom: 2rem;
        }

        .address-card {
            background: white;
            border: 1px solid transparent;
            border-radius: 3rem;
            padding: 2rem;
            transition: border-color 0.3s ease;
        }

        .profile-img-container {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
        }

        .profile-img-btn {
            position: absolute;
            bottom: 0;
            right: 0;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
        }


         /* Order Cards */
        .order-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            border: none;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }

        .toggle-icon {
            transition: transform 0.3s ease;
        }

        .order-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            transform: translateY(-2px);
        }

        .product-img {
            width: 80px;
            height: 80px;
            border-radius: 1rem;
            object-fit: cover;
        }

        .badge-shipped {
            background-color: #90efef;
            color: #006e6e;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
        }

        .badge-delivered {
            background-color: var(--asa-surface-container);
            color: var(--asa-text-variant);
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
        }



         .cart-item {
            padding-bottom: 3rem;
            margin-bottom: 3rem;
            border-bottom: 1px solid var(--asa-border);
        }

        .item-image-wrapper {
            width: 100%;
            height: 171px;
            background-color: var(--asa-container-low);
            border-radius: 12px;
            overflow: hidden;
        }

        .item-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .collection-label {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--asa-primary-light);
            margin-bottom: 0.5rem;
        }

        .item-title {
            font-size: 1.75rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .item-meta {
            color: var(--on-surface-variant);
            font-size: 0.9rem;
            margin-top: 4px;
            font-weight: 500;
        }

        .item-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--asa-primary);
        }

        .quantity-selector {
            background: #ebeef3;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.25rem;
        }

        .quantity-btn {
            background: none;
            border: none;
            padding: 0;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: color 0.2s;
        }

        .quantity-btn:hover {
            color: var(--asa-primary);
        }

        .quantity-value {
            margin: 0 1.5rem;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .item-actions .btn-link {
            color: var(--asa-text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0;
            margin-left: 1.5rem;
        }

        .item-actions .btn-link:hover {
            color: var(--asa-primary);
        }

        .item-actions .btn-remove:hover {
            color: #ba1a1a;
        }

         /* Suggestion Box */
        .suggestion-box {
            background-color: var(--asa-container-low);
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid #ffffff;
        }

        .suggestion-box h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: var(--asa-primary);
        }

        .btn-suggestion {
            background: #ffffff;
            color: var(--asa-primary);
            font-weight: 700;
            border-radius: 50px;
            padding: 0.8rem 2rem;
            border: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        .btn-suggestion:hover {
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            transform: translateY(-2px);
        }

        /* Summary Sticky */
        .summary-card {
            background: var(--asa-surface);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(24,28,32,0.06);
            position: sticky;
            top: 120px;
        }

        .summary-card h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--asa-text-muted);
            font-weight: 500;
        }

        .summary-row .val {
            color: var(--asa-text);
            font-weight: 700;
        }

        .total-row {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--asa-border);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .total-label {
            color: var(--asa-text-muted);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .total-price {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--asa-primary);
            letter-spacing: -1px;
        }

        .btn-checkout {
            background: linear-gradient(135deg, var(--asa-primary), var(--asa-primary-light));
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 1.25rem;
            width: 100%;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: 0 15px 30px rgba(83, 52, 125, 0.2);
            transition: all 0.3s ease;
        }

        .btn-checkout:hover {
            transform: scale(1.02);
            color: #fff;
            box-shadow: 0 20px 40px rgba(83, 52, 125, 0.3);
        }

        .btn-checkout:active {
            transform: scale(0.98);
        }

        .trust-badges {
            margin-top: 2rem;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.75rem;
            color: var(--asa-text-muted);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .trust-badge span {
            color: var(--asa-primary);
            font-size: 1.25rem;
        }

        /* Promo Code */
        .promo-card {
            background: var(--asa-container-low);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .promo-label {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--asa-primary-light);
            margin-bottom: 0.75rem;
            display: block;
        }

        .promo-input-group {
            display: flex;
            gap: 0.5rem;
        }

        .promo-input {
            background: rgba(224, 227, 232, 0.5);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            flex-grow: 1;
        }

        .btn-apply {
            background: var(--asa-primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 0 1.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        /* Checkout */
         /* Progress Stepper */
        .stepper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 600px;
            margin-bottom: 4rem;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .step-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #e0e3e8;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .step-item.active .step-dot {
            background-color: var(--bs-primary);
            box-shadow: 0 0 0 4px rgba(83, 52, 125, 0.2);
        }

        .step-label {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #94a3b8;
        }

        .step-item.active .step-label {
            color: var(--bs-primary);
        }

        .step-connector {
            flex: 1;
            height: 2px;
            background-color: #e0e3e8;
            margin: 0 1rem;
            margin-bottom: 24px;
        }

        .step-connector.active {
            background-color: rgba(83, 52, 125, 0.3);
        }

        /* Forms */
        .form-label {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #64748b;
            margin-bottom: 0.5rem;
        }

        .form-control-custom {
            background-color: #e5e8ee;
            border: none;
            border-bottom: 2px solid transparent;
            border-radius: 0;
            padding: 0.75rem 0;
            font-weight: 500;
            font-size: 1.125rem;
            transition: all 0.2s ease;
        }

        .form-control-custom:focus {
            background-color: #e5e8ee;
            outline: none;
            box-shadow: none;
            border-bottom-color: var(--bs-primary);
        }

        /* Payment Card UI */
        .payment-box {
            background-color: var(--surface-container-low);
            border-radius: 1rem;
            padding: 2.5rem;
        }

        .payment-method-card {
            background: #fff;
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
        }

        .payment-method-card.selected {
            border-color: var(--bs-primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .radio-circle {
            width: 20px;
            height: 20px;
            border: 2px solid #cbd5e1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .selected .radio-circle {
            border-color: var(--bs-primary);
        }

        .selected .radio-circle::after {
            content: "";
            width: 10px;
            height: 10px;
            background-color: var(--bs-primary);
            border-radius: 50%;
        }

        /* Sidebar Summary */
        .order-summary-card {
            background-color: var(--surface-container-low);
            border-radius: 1rem;
            padding: 2rem;
            position: sticky;
            top: 100px;
        }

        .product-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 0.5rem;
            background-color: #e0e3e8;
        }

        .checkout-btn {
            background: linear-gradient(90deg, var(--bs-primary), #6e4f9a);
            border: none;
            color: white;
            padding: 1.25rem;
            font-weight: 900;
            border-radius: 0.75rem;
            box-shadow: 0 10px 20px rgba(83, 52, 125, 0.2);
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(83, 52, 125, 0.3);
        }
        /* Checkout End */


        /* Details Grid */
        .details-container {
            background-color: #f1f4f9;
            border: 1px solid var(--asa-border);
            border-radius: 1rem;
            overflow: hidden;
        }

        .detail-box {
            padding: 2rem;
            border-bottom: 1px solid var(--asa-border);
        }

        @media (min-width: 768px) {
            .detail-box {
                border-bottom: none;
                border-right: 1px solid var(--asa-border);
            }
            .detail-box:last-child {
                border-right: none;
            }
        }

        .detail-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--asa-primary);
            margin-bottom: 0.75rem;
        }


        .hero-icon-container {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            z-index: 1;
        }

        .hero-icon-blur {
            position: absolute;
            top: 8px;
            left: 4px;
            width: 100%;
            height: 100%;
            background-color: var(--bs-primary);
            opacity: 0.3;
            filter: blur(30px);
            border-radius: 50%;
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }

        .hero-icon-circle {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--bs-primary), #9a68d7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(83, 52, 125, 0.4);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .hero-icon-circle .material-symbols-outlined {
            font-variation-settings: 'wght' 200;
        }


        /* Order Tracking Styles */
        .order-wrapper {
            background: var(--surface-container-low);
            border-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid var(--outline-variant);
            transition: all 0.3s ease;
        }

        .order-card {
            background: white;
            padding: 1.5rem;
            border-radius: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .order-card:hover {
            background: var(--surface-container-lowest);
        }

        .order-card-active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .product-img-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--surface-container-high);
            flex-shrink: 0;
        }

        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tracking-container {
            padding: 2rem;
            background: white;
            border-top: 1px solid var(--outline-variant);
        }

        .tracking-timeline {
            position: relative;
            padding: 1rem 0 3rem;
            margin-bottom: 2rem;
        }

        .tracking-line-bg {
            position: absolute;
            top: 2rem;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--surface-container-high);
            border-radius: 2px;
        }

        .tracking-line-fill {
            position: absolute;
            top: 2rem;
            
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 1s ease-in-out;
        }

        html[dir="ltr"].tracking-line-fill {
            left: 0;
        }

        html[dir="rtl"].tracking-line-fill {
            right: 0;
        }


        .tracking-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .node-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border: 4px solid white;
            box-shadow: 0 0 0 1px var(--outline-variant);
            margin-bottom: 0.75rem;
        }

        .node-circle.inactive {
            background: var(--surface-container-highest);
            color: transparent;
            box-shadow: none;
        }

        .node-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary);
        }

        .node-label.inactive {
            color: var(--on-surface-variant);
            opacity: 0.5;
        }

        .tracking-history-item {
            display: flex;
            gap: 1.5rem;
            padding-bottom: 1.5rem;
            position: relative;
        }

        .tracking-history-item:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 5px;
            top: 20px;
            bottom: 0;
            width: 2px;
            background: var(--outline-variant);
        }

        .history-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            margin-top: 6px;
            flex-shrink: 0;
            border: 2px solid white;
            box-shadow: 0 0 0 1px var(--primary);
            z-index: 1;
        }

        .history-time {
            min-width: 80px;
            color: var(--on-surface-variant);
            font-weight: 600;
            font-size: 0.85rem;
        }

        .history-details .status {
            display: block;
            font-weight: 700;
            color: var(--on-surface);
            font-size: 0.95rem;
        }

        .history-details .date {
            font-size: 0.8rem;
            color: var(--on-surface-variant);
        }