  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600&display=swap');

        /* CSS Variables */
        .aizaz-categories-wrapper {
            --cat-royal-gold: #C9A961;
            --cat-deep-navy: #0F172A;
            --cat-charcoal: #1E293B;
            --cat-cream: #FEFDF8;
            --cat-warm-white: #FFFFFF;
            --cat-accent-brown: #92400E;
            --cat-text-light: #64748B;
            --cat-text-dark: #1E293B;
            --cat-dark-gold: #D97706;
            --cat-soft-gray: #F8FAFC;
            --cat-border-light: #E2E8F0;
            --cat-shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --cat-shadow-medium: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
            --cat-shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Reset */
        .aizaz-categories-wrapper * {
            box-sizing: border-box;
        }

        .aizaz-categories-wrapper {
            font-family: 'Inter', sans-serif;
            color: var(--cat-text-dark);
            line-height: 1.7;
            font-weight: 400;
        }

        /* Back Button */
        .aizaz-categories-wrapper .back-navigation {
            margin-bottom: 3rem;
            padding-top: 2rem;
        }

        .aizaz-categories-wrapper .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1.75rem;
            background: linear-gradient(135deg, var(--cat-royal-gold), var(--cat-dark-gold));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.3px;
        }

        .aizaz-categories-wrapper .back-btn i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .aizaz-categories-wrapper .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
        }

        .aizaz-categories-wrapper .back-btn:hover i {
            transform: translateX(-3px);
        }

        .aizaz-categories-wrapper .back-btn:active {
            transform: translateY(0);
        }

        /* Section Styles */
        .aizaz-categories-wrapper .categories-section {
            padding: 6rem 0 8rem 0;
            position: relative;
        }

        .aizaz-categories-wrapper .categories-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cat-border-light), transparent);
        }

        .aizaz-categories-wrapper .categories-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .aizaz-categories-wrapper .categories-section-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .aizaz-categories-wrapper .categories-section-subtitle {
            color: var(--cat-royal-gold);
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-family: 'Inter', sans-serif;
            position: relative;
            display: inline-block;
        }

        .aizaz-categories-wrapper .categories-section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--cat-royal-gold), var(--cat-dark-gold));
            border-radius: 2px;
        }

        .aizaz-categories-wrapper .categories-section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.75rem;
            font-weight: 600;
            color: var(--cat-deep-navy);
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .aizaz-categories-wrapper .categories-section-description {
            font-size: 1.125rem;
            color: var(--cat-text-light);
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 400;
        }

        /* Categories Background */
        .aizaz-categories-wrapper .categories-main {
            background: linear-gradient(135deg, var(--cat-cream) 0%, var(--cat-soft-gray) 100%);
            position: relative;
        }

        .aizaz-categories-wrapper .categories-main::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="luxury-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="%23C9A961" opacity="0.03"/><circle cx="75" cy="45" r="0.5" fill="%23C9A961" opacity="0.02"/><circle cx="45" cy="75" r="0.6" fill="%23C9A961" opacity="0.025"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-grain)"/></svg>');
            opacity: 0.7;
            pointer-events: none;
        }

        .aizaz-categories-wrapper .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .aizaz-categories-wrapper .category-card {
            background: var(--cat-warm-white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--cat-shadow-medium);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .aizaz-categories-wrapper .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--cat-royal-gold), var(--cat-dark-gold));
            border-radius: 24px 24px 0 0;
        }

        .aizaz-categories-wrapper .category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--cat-shadow-heavy);
            border-color: rgba(201, 169, 97, 0.3);
        }

        .aizaz-categories-wrapper .category-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .aizaz-categories-wrapper .category-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }

        .aizaz-categories-wrapper .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(201, 169, 97, 0.95) 0%, 
                rgba(146, 64, 14, 0.95) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .aizaz-categories-wrapper .category-card:hover .category-overlay {
            opacity: 1;
        }

        .aizaz-categories-wrapper .category-overlay-icon {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        .aizaz-categories-wrapper .category-card:hover .category-overlay-icon {
            transform: scale(1.1);
        }

        .aizaz-categories-wrapper .category-overlay-text {
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .aizaz-categories-wrapper .category-content {
            padding: 2.5rem;
        }

        .aizaz-categories-wrapper .category-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.875rem;
            color: var(--cat-deep-navy);
            margin-bottom: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .aizaz-categories-wrapper .category-description {
            color: var(--cat-text-light);
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .aizaz-categories-wrapper .category-features {
            list-style: none;
            margin-bottom: 2.5rem;
            padding: 0;
        }

        .aizaz-categories-wrapper .category-features li {
            padding: 0.5rem 0;
            color: var(--cat-text-light);
            font-size: 0.9375rem;
            position: relative;
            padding-left: 1.5rem;
            font-family: 'Source Sans Pro', sans-serif;
            transition: all 0.3s ease;
        }

        .aizaz-categories-wrapper .category-features li::before {
            content: '●';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--cat-royal-gold);
            font-size: 14px;
            line-height: 1;
        }

        .aizaz-categories-wrapper .category-features li:hover {
            color: var(--cat-text-dark);
            padding-left: 1.75rem;
        }

        .aizaz-categories-wrapper .category-actions {
            display: flex;
            gap: 1rem;
        }

        .aizaz-categories-wrapper .category-btn {
            background: linear-gradient(135deg, var(--cat-royal-gold), var(--cat-dark-gold));
            color: white;
            padding: 0.875rem 1.75rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-size: 0.75rem;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            flex: 1;
        }

        .aizaz-categories-wrapper .category-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(201, 169, 97, 0.3);
        }

        .aizaz-categories-wrapper .category-btn i {
            margin-left: 0.5rem;
            font-size: 0.875rem;
            transition: transform 0.3s ease;
        }

        .aizaz-categories-wrapper .category-btn:hover i {
            transform: translateX(3px);
        }

        /* Premium Badge */
        .aizaz-categories-wrapper .premium-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--cat-royal-gold), var(--cat-dark-gold));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
        }

        /* Specialty indicators */
        .aizaz-categories-wrapper .specialty-indicator {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--cat-deep-navy);
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            z-index: 3;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 1200px) {
            .aizaz-categories-wrapper .category-grid {
                grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .aizaz-categories-wrapper .back-navigation {
                margin-bottom: 1.5rem;
                padding-top: 1rem;
            }

            .aizaz-categories-wrapper .back-btn {
                padding: 0.625rem 1.25rem;
                font-size: 0.8125rem;
            }

            .aizaz-categories-wrapper .categories-section {
                padding: 2.5rem 0 3rem 0;
            }

            .aizaz-categories-wrapper .categories-container {
                padding: 0 1rem;
            }

            .aizaz-categories-wrapper .categories-section-header {
                margin-bottom: 2rem;
            }

            .aizaz-categories-wrapper .categories-section-subtitle {
                font-size: 0.75rem;
                margin-bottom: 1rem;
            }

            .aizaz-categories-wrapper .categories-section-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .aizaz-categories-wrapper .categories-section-description {
                font-size: 0.9375rem;
                line-height: 1.6;
            }

            .aizaz-categories-wrapper .category-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .aizaz-categories-wrapper .category-card {
                border-radius: 16px;
            }

            .aizaz-categories-wrapper .category-image {
                height: 200px;
            }

            .aizaz-categories-wrapper .category-content {
                padding: 1.25rem;
            }

            .aizaz-categories-wrapper .category-title {
                font-size: 1.375rem;
                margin-bottom: 0.75rem;
            }

            .aizaz-categories-wrapper .category-description {
                font-size: 0.875rem;
                line-height: 1.5;
                margin-bottom: 1rem;
            }

            .aizaz-categories-wrapper .category-features {
                margin-bottom: 1.25rem;
            }

            .aizaz-categories-wrapper .category-features li {
                padding: 0.375rem 0;
                font-size: 0.8125rem;
                padding-left: 1.25rem;
            }

            .aizaz-categories-wrapper .category-features li::before {
                font-size: 10px;
            }

            .aizaz-categories-wrapper .category-btn {
                padding: 0.65rem 1.25rem;
                font-size: 0.6875rem;
            }

            .aizaz-categories-wrapper .category-actions {
                flex-direction: column;
            }

            .aizaz-categories-wrapper .premium-badge {
                top: 12px;
                right: 12px;
                padding: 0.375rem 0.75rem;
                font-size: 0.625rem;
            }

            .aizaz-categories-wrapper .specialty-indicator {
                bottom: 12px;
                left: 12px;
                padding: 0.375rem 0.75rem;
                font-size: 0.625rem;
            }

            .aizaz-categories-wrapper .category-overlay-icon {
                font-size: 2.5rem;
                margin-bottom: 0.75rem;
            }

            .aizaz-categories-wrapper .category-overlay-text {
                font-size: 1.375rem;
            }
        }

        @media (max-width: 576px) {
            .aizaz-categories-wrapper .categories-section {
                padding: 1.5rem 0 2rem 0;
            }

            .aizaz-categories-wrapper .categories-container {
                padding: 0 0.75rem;
            }

            .aizaz-categories-wrapper .categories-section-header {
                margin-bottom: 1.5rem;
            }

            .aizaz-categories-wrapper .categories-section-subtitle {
                font-size: 0.6875rem;
                letter-spacing: 1.5px;
            }

            .aizaz-categories-wrapper .categories-section-title {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            .aizaz-categories-wrapper .categories-section-description {
                font-size: 0.8125rem;
                line-height: 1.5;
            }

            .aizaz-categories-wrapper .category-grid {
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .aizaz-categories-wrapper .category-card {
                border-radius: 12px;
            }

            .aizaz-categories-wrapper .category-image {
                height: 160px;
            }

            .aizaz-categories-wrapper .category-content {
                padding: 1rem;
            }

            .aizaz-categories-wrapper .category-title {
                font-size: 1.25rem;
                margin-bottom: 0.625rem;
            }

            .aizaz-categories-wrapper .category-description {
                font-size: 0.8125rem;
                margin-bottom: 0.875rem;
                line-height: 1.4;
            }

            .aizaz-categories-wrapper .category-features {
                margin-bottom: 1rem;
            }

            .aizaz-categories-wrapper .category-features li {
                padding: 0.3rem 0;
                font-size: 0.75rem;
                padding-left: 1.1rem;
            }

            .aizaz-categories-wrapper .category-features li::before {
                font-size: 8px;
            }

            .aizaz-categories-wrapper .category-btn {
                padding: 0.6rem 1.1rem;
                font-size: 0.65rem;
            }

            .aizaz-categories-wrapper .premium-badge {
                top: 10px;
                right: 10px;
                padding: 0.3rem 0.625rem;
                font-size: 0.5625rem;
            }

            .aizaz-categories-wrapper .specialty-indicator {
                bottom: 10px;
                left: 10px;
                padding: 0.3rem 0.625rem;
                font-size: 0.5625rem;
            }

            .aizaz-categories-wrapper .category-overlay-icon {
                font-size: 2rem;
            }

            .aizaz-categories-wrapper .category-overlay-text {
                font-size: 1.125rem;
            }

            .aizaz-categories-wrapper .back-btn {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
                gap: 0.5rem;
            }
        }
