﻿        body {
            padding: 2rem;
            font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
        }

        h1 {
            font-size: 16px;
            margin-top: 0;
        }

        p {
            color: rgb(107, 114, 128);
            font-size: 15px;
            margin-bottom: 10px;
            margin-top: 5px;
        }

        .card {
            max-width: 620px;
            margin: 0 auto;
            padding: 16px;
            border: 1px solid lightgray;
            border-radius: 16px;
        }

        .card p:last-child {
            margin-bottom: 0;
        }

        /* Custom CSS for elements that need more styling than Tailwind provides */
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }

        .nav-link.active::after {
            width: 100%;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .filter-btn.active {
            background-color: #3b82f6;
            color: white;
        }
