.shop-header {
    text-align: center;
    margin-bottom: 30px;
}

.shop-header h2 {
    color: #0060c9;
    display: inline-block;
    padding: 10px 35px;
    margin: 0 0 15px -8px;
    border-radius: 60px;
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.shop-header .status-note {
    color: #701e1e;
    font-style: italic;
    background: #ffe6e6;
    padding: 8px 25px;
    border-radius: 50px;
    border: 3px solid #701e1e;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: 10px auto 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px 0;
}

.shop-card {
    background: #fafafa;
    border-radius: 30px;
    border: 3px solid #701e1e;
    padding: 20px;
    text-align: center;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02), 0 5px 0 #0060c9;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02), 0 8px 0 #0060c9;
}

.shop-card img {
    width: 180px;
    height: 180px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 0 #b38f00;
}

.shop-card h3 {
    color: #003366;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0 5px;
    line-height: 1.4;
    flex: 1;
    width: 100%;
}

.shop-card .price-tag {
    color: white;
    background: #0060c9;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 50px;
    margin: 10px 0;
    border: 3px solid #fff;
    box-shadow: 0 5px 0 #003d7a;
}

.shop-card .btn-small {
    background: #ffcc00;
    color: #333;
    border: 3px solid #fff;
    box-shadow: 0 3px 0 #b38f00;
    padding: 6px 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 60px;
    transition: 0.1s;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0;
}

.shop-card .btn-small:hover {
    background: #ffdb4d;
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #b38f00;
}

.shop-card .btn-small:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #b38f00;
}