.store-main-title { font-size: 4rem; font-weight: 800; margin-bottom: 60px; letter-spacing: 4px; color: var(--brand-red); }

.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.product-img-wrapper {
    width: 210px; height: 210px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 6px solid var(--brand-red);
    overflow: hidden;
    transition: 0.5s;
}
.product-img-wrapper:hover { transform: scale(1.05); }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.store-action { margin-top: 40px; }
.btn-shop {
    text-decoration: none;
    background-color: var(--brand-red);
    color: var(--white);
    padding: 18px 60px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 65px; 
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
}
.btn-shop:hover {
    background-color: #b30000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(230, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .store-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-img-wrapper {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .store-main-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
}