
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .section1-top-blank {
            width: 100%;
            height: 160px;
        }

        .container {
            width: 85%;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .header h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, #4741e1 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 30px;
        }

        .category-filters {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #1a1625 0%, #2a2240 100%);
            border: 1px solid #333;
            border-radius: 25px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: #4741e1;
            box-shadow: 0 5px 20px rgba(71, 65, 225, 0.3);
            transform: translateY(-2px);
        }

        .subcategory-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0 30px 0;
            flex-wrap: wrap;
        }

        .subfilter-btn {
            padding: 8px 20px;
            background: linear-gradient(135deg, #2a2240 0%, #3a3055 100%);
            border: 1px solid #444;
            border-radius: 20px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .subfilter-btn:hover,
        .subfilter-btn.active {
            border-color: #7c3aed;
            box-shadow: 0 3px 15px rgba(124, 58, 237, 0.3);
            transform: translateY(-1px);
        }

        .category-section {
            margin-bottom: 60px;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            gap: 15px;
        }

        .category-icon {
            font-size: 2rem;
        }

        .category-title {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #4741e1 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .product-card {
            background: linear-gradient(135deg, #1a1625 0%, #2a2240 100%);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #333;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(71, 65, 225, 0.3);
            border-color: #4741e1;
        }

        .product-card-top {
            width: 100%;
            background-color: #1a1625;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            border-bottom: 1px solid #333;
            min-height: 150px;
        }

        .product-card img {
            width: 70%;
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
            opacity: 0.8;
        }

        .product-card-content {
            padding: 20px;
        }

        .product-card h1 {
            text-align: center;
            font-size: 19px;
            color: #fff;
            margin-top: 1%;
            margin-bottom: 10px;
        }

        .product-description {
            text-align: center;
            opacity: 0.7;
            margin: 10px 0;
            font-size: 14px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-button {
            display: block;
            width: 100%;
            padding: 12px;
            margin-top: 15px;
            background: linear-gradient(135deg, #4741e1 0%, #7c3aed 100%);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .product-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(71, 65, 225, 0.4);
        }

        .placeholder-icon {
            font-size: 4rem;
            opacity: 1;
            color: #4741e1;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            background: linear-gradient(135deg, #1a1625 0%, #2a2240 100%);
            margin: 3% auto;
            padding: 0;
            border: 1px solid #333;
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow: hidden;
            animation: slideIn 0.3s ease;
        }

        .modal-header {
            padding: 20px 30px;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 1.5rem;
            background: linear-gradient(135deg, #4741e1 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .close {
            font-size: 28px;
            font-weight: bold;
            color: #999;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .modal-body {
            display: flex;
            padding: 30px;
            gap: 40px;
            min-height: 400px;
            max-height: calc(90vh - 100px);
            overflow-y: auto;
        }

        /* Custom scrollbar for modal */
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #4741e1 0%, #7c3aed 100%);
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #5851f1 0%, #8c4afd 100%);
        }

        .modal-image {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0e0a1b 0%, #1a1625 100%);
            border-radius: 10px;
            padding: 30px;
            overflow: hidden;
        }

        .modal-image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .modal-image .placeholder-icon {
            font-size: 8rem;
            opacity: 0.3;
            color: #4741e1;
        }

        .modal-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .modal-category {
            font-size: 14px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .modal-product-name {
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .modal-description {
            font-size: 16px;
            line-height: 1.6;
            color: #ccc;
            opacity: 0.9;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
        }

        .pagination button {
            padding: 10px 15px;
            background: linear-gradient(135deg, #1a1625 0%, #2a2240 100%);
            border: 1px solid #333;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            min-width: 45px;
        }

        .pagination button:hover,
        .pagination button.active {
            border-color: #4741e1;
            box-shadow: 0 5px 20px rgba(71, 65, 225, 0.3);
            transform: translateY(-2px);
        }

        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .pagination-info {
            color: #999;
            font-size: 14px;
            margin: 0 20px;
        }

        .hidden {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: scale(0.8) translateY(-50px);
            }
            to { 
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .category-title {
                font-size: 2rem;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .category-filters {
                flex-direction: column;
                align-items: center;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card-top {
                padding: 20px 15px;
                min-height: 120px;
            }

            .product-card img {
                width: 60%;
                max-width: 200px;
            }

            .pagination {
                flex-wrap: wrap;
                gap: 10px;
            }

            .pagination-info {
                order: -1;
                width: 100%;
                text-align: center;
                margin: 0 0 20px 0;
            }

            .modal-content {
                width: 95%;
                margin: 5% auto;
            }

            .modal-body {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .modal-image {
                min-height: 200px;
                max-height: 300px;
                padding: 20px;
                overflow: hidden;
            }

            .modal-image img {
                max-width: 100%;
                max-height: 250px;
                width: auto;
                height: auto;
                object-fit: contain;
            }

            .modal-product-name {
                font-size: 1.5rem;
            }

            .modal-description {
                font-size: 14px;
            }
        }