
        .title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
        }
a{
    text-decoration: none;
}
        .corgi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            padding: 0 20px;
        }

        .corgi-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            background-color: #fafafa;
            transition: transform 0.2s;
        }

        .corgi-card:hover {
            transform: scale(1.03);
        }

        .corgi-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .info {
            padding: 10px;
            text-align: center;
        }

        .warranty {
            color: #007bff;
            font-weight: bold;
            margin: 5px 0;
        }
a{
    text-decoration: none;
}
        .name {
            font-weight: 600;
            margin: 5px 0;
        }

        .return {
            color: red;
            font-weight: bold;
            margin: 5px 0;
        }
