.store-section{
    padding: 80px 0;
}

.section-title{
    color: #fff;
    font-weight: 700;
}

.section-subtitle{
    color: #e9d5ff;
}

.store-card{
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.store-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.18);
}

.store-icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

.store-name{
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.store-link{
    color: #e9d5ff;
    font-size: 0.95rem;
    margin-bottom: 0;
}
