        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .page-title {
            font-size: 2.5rem;
            background: linear-gradient(45deg, #ff8a00, #e52e71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .page-subtitle {
            color: #666;
            font-size: 1.1rem;
            font-weight: 300;
        }

        .category-section {
            margin-bottom: 50px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .category-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ff8a00;
        }

        .category-title {
            font-size: 1.8rem;
            color: #333;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }

        .category-description {
            color: #666;
            font-size: 1rem;
            font-style: italic;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            padding: 15px 0;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            height: fit-content;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: #ff8a00;
        }

        .product-header-section {
            padding: 18px 15px 12px 15px;
            text-align: center;
        }

        .product-name {
            font-size: 1.2rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.3;
            /* height: 52px; */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .product-price-fooldal {
            background: linear-gradient(135deg, #ff8a00, #e52e71) !important;
            color: white !important;
            padding: 9px 16px !important;
            border-radius: 22px !important;
            font-family: 'Bebas Neue', Arial, sans-serif !important;
            font-size: 1.4rem !important;
            font-weight: normal !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
            box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3) !important;
            letter-spacing: 1px !important;
            display: inline-block !important;
            margin-bottom: 25px !important;
            margin-right: 9px !important;
        }

        .product-image-container {
            position: relative;
            height: 200px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image {
            max-width: 95%;
            max-height: 95%;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-description {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 12px 15px;
            text-align: center;
            height: 45px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .product-actions {
            padding: 0 15px 20px 15px;
            text-align: center;
        }

        .view-product-btn {
            background: transparent;
            color: #ff8a00;
            border: 2px solid #ff8a00;
            padding: 8px 20px;
            border-radius: 18px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.8rem;
            display: inline-block;
            width: auto;
            min-width: 120px;
        }

        .view-product-btn:hover {
            background: #ff8a00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
        }

        .no-products {
            text-align: center;
            color: #666;
            font-style: italic;
            padding: 40px;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                padding: 0 15px;
            }

            .page-title {
                font-size: 2rem;
            }

            .category-title {
                font-size: 1.5rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .category-section {
                padding: 20px;
                margin-bottom: 35px;
            }

            .page-header {
                padding: 25px;
            }

            .product-name {
                font-size: 1rem;
                height: 40px;
                margin-bottom: 6px;
            }

            .product-price {
                font-size: 1.3rem;
                padding: 8px 15px;
                margin-bottom: 8px;
            }

            .product-header-section {
                padding: 12px 10px 8px 10px;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 1.7rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .product-card {
                margin: 0 5px;
            }

            .product-name {
                font-size: 1.1rem;
                height: 38px;
                margin-bottom: 4px;
            }

            .product-price {
                font-size: 1.4rem;
                padding: 9px 16px;
                margin-bottom: 6px;
            }

            .product-image-container {
                height: 180px;
            }

            .view-product-btn {
                font-size: 0.75rem;
                padding: 6px 16px;
                min-width: 100px;
            }

            .category-section {
                padding: 15px;
            }

            .page-header {
                padding: 20px;
            }

            .product-header-section {
                padding: 10px 8px 6px 8px;
            }
        }