 /* Reset and Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --pink: #ffb3d9;
            --pink-light: #ffe6f3;
            --pink-dark: #ff80bf;
            --text: #2d2d2d;
            --text-light: #666;
            --border: #f0f0f0;
            --bg: #fafafa;
            --white: #ffffff;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 15px;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        /* Header */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .header-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--pink);
            font-size: 28px;
        }
        
        .search-form {
            flex: 1;
            max-width: 500px;
        }
        
        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.2s;
        }
        
        .search-wrapper:focus-within {
            border-color: var(--pink);
            background: var(--white);
        }
        
        .search-icon {
            padding: 0 16px;
            color: var(--text-light);
        }
        
        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 16px 12px 0;
            font-size: 15px;
            outline: none;
        }
        
        .search-input::placeholder {
            color: var(--text-light);
        }
        
        .search-btn {
            background: var(--pink);
            border: none;
            padding: 12px 28px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .search-btn:hover {
            background: var(--pink-dark);
        }
        
        .header-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-link {
            color: var(--text);
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-link:hover {
            color: var(--pink);
        }
        
        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--pink-light);
            color: var(--pink-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            cursor: pointer;
        }
        
        .icon-btn:hover {
            background: var(--pink);
            color: var(--white);
        }

        /* Page Header */
        .page-header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .page-header-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 24px;
            text-align: center;
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .page-title i {
            color: var(--pink);
        }

        .page-subtitle {
            font-size: 16px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Filters */
        .filters {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }
        
        .filters-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: thin;
        }

        .filters-content::-webkit-scrollbar {
            height: 6px;
        }

        .filters-content::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            border-radius: 50px;
            border: 2px solid var(--border);
            background: var(--white);
            color: var(--text);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .filter-btn:hover {
            border-color: var(--pink-light);
            background: var(--pink-light);
        }
        
        .filter-btn.active {
            background: var(--pink);
            border-color: var(--pink);
            color: var(--white);
        }
        
        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 32px 24px;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
        }
        
        .result-count {
            color: var(--text-light);
            font-size: 14px;
        }
        
        /* Categories Grid */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .category-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s;
            cursor: pointer;
            padding: 24px;
            text-align: center;
            position: relative;
        }
        
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.08);
            border-color: var(--pink-light);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--pink-light);
            color: var(--pink-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
        }

        .category-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            text-transform: capitalize;
        }

        .category-tag {
            font-size: 13px;
            color: var(--text-light);
            background: var(--bg);
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-block;
        }
        
        /* Loading */
        .loading {
            text-align: center;
            padding: 60px 20px;
        }
        
        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--border);
            border-top-color: var(--pink);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 16px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .loading-text {
            color: var(--text-light);
        }
        
        /* Empty State */
        .empty {
            text-align: center;
            padding: 60px 20px;
        }
        
        .empty-icon {
            font-size: 64px;
            color: var(--border);
            margin-bottom: 16px;
        }
        
        .empty-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .empty-text {
            color: var(--text-light);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 48px;
        }
        
        .page-btn {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .page-btn:hover:not(.disabled):not(.active) {
            border-color: var(--pink);
            color: var(--pink);
        }
        
        .page-btn.active {
            background: var(--pink);
            border-color: var(--pink);
            color: var(--white);
        }
        
        .page-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        /* Footer */
        .footer {
            background: var(--white);
            border-top: 1px solid var(--border);
            margin-top: 48px;
            padding: 32px 24px;
        }
        
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            transition: color 0.2s;
        }
        
        .footer-link:hover {
            color: var(--pink);
        }
        
        /* Cookie Notice */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 2px solid var(--pink-light);
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
        }
        
        .cookie-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        
        .cookie-text {
            flex: 1;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .cookie-actions {
            display: flex;
            gap: 12px;
        }
        
        .btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-size: 14px;
        }
        
        .btn-outline {
            background: var(--white);
            border: 2px solid var(--border);
            color: var(--text);
        }
        
        .btn-outline:hover {
            border-color: var(--pink);
            color: var(--pink);
        }
        
        .btn-primary {
            background: var(--pink);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--pink-dark);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                padding: 16px;
            }
            
            .logo {
                font-size: 22px;
            }
            
            .logo i {
                font-size: 24px;
            }
            
            .search-form {
                order: 3;
                width: 100%;
                max-width: none;
            }
            
            .header-nav {
                gap: 12px;
            }
            
            .nav-link {
                display: none;
            }

            .page-header-content {
                padding: 32px 16px;
            }

            .page-title {
                font-size: 28px;
            }

            .page-subtitle {
                font-size: 14px;
            }
            
            .filters-content {
                padding: 12px 16px;
            }
            
            .container {
                padding: 24px 16px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 16px;
            }

            .category-card {
                padding: 20px 16px;
            }

            .category-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .category-name {
                font-size: 16px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-actions {
                width: 100%;
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }