/* Shop Page Styles */
.shop-page {
    width: 100%;
}

.shop-page h1 {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    text-shadow: 0 1px 0 #fff;
    text-align: center;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.kords-card {
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kords-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.kords-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.5rem;
    text-shadow: 0 1px 0 #fff;
}

.kords-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4477A1;
    margin-bottom: 20px;
    text-shadow: none;
}