.product{  
    text-align: center;
    padding:10px;
    text-decoration: none;
    color:#000000;
}
.product h1{
    color: #004080;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 20px;
}
.thing {
    text-align: center;
    border: 1px solid #b8d1ec;
    padding: 14px;
    border-radius: 10px;
    background-color: #ffffff;
    text-decoration: none;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.thing:hover {
    border-color: #004080;
    box-shadow: 0 4px 12px rgba(0, 64, 128, 0.18);
    transform: translateY(-2px);
}
.buy-link {
    display: inline-block;
    margin-top: 6px;
    color: #004080;
    font-weight: bold;
    font-size: 14px;
}
.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.hidden {
    display: none;
}
#loadMore {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #004080;
    color: white;
    border-radius: 5px;
}
#loadMore:hover {
    background-color: #003060;
}