.store-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 28px 20px;
    border-radius: 16px;
    width: 320px;
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(6,180,100,0.13);
    box-shadow: 0 8px 24px rgba(15,23,42,0.07);
    cursor: pointer;
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: transform .22s cubic-bezier(.2,.9,.2,1),
                box-shadow .22s cubic-bezier(.2,.9,.2,1),
                border-color .22s;
}

.store-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,180,100,0.07), rgba(5,150,80,0.04));
    opacity: 0;
    transition: opacity .22s;
    border-radius: 16px;
}

.store-card:hover {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 24px 48px rgba(6,180,100,0.18);
    border-color: rgba(6,180,100,0.38);
}

.store-card:hover::before {
    opacity: 1;
}

.store-card:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 24px rgba(6,180,100,0.14);
}

.store-card .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform .22s cubic-bezier(.2,.9,.2,1);
}

.store-card:hover .icon {
    transform: scale(1.1) rotate(-3deg);
}

.bg-teal { background: linear-gradient(135deg, #06b6d4, #0ea5a4); }
.bg-green { background: linear-gradient(135deg, #22c55e, #059669); }
.bg-violet { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

.card-title {
    font-weight: 800;
    margin-top: 6px;
    color: #064d31;
    font-size: 18px;
    text-align: center;
    transition: color .18s;
}

.store-card:hover .card-title {
    color: #047857;
}

.card-desc {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(13,18,26,0.7);
    text-align: center;
    max-width: 280px;
    line-height: 1.4;
}

.store-card .icon i {
    animation: floatIcon 3s ease-in-out infinite;
    color: white;
    font-size: 28px;
}

.store-card:nth-child(2) .icon i {
    animation-delay: .6s;
}

@keyframes floatIcon {
    0%   { transform: translateY(0) rotate(0deg); }
    40%  { transform: translateY(-6px) rotate(-4deg); }
    60%  { transform: translateY(-4px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 991px) {
    .store-cards { justify-content: center; }
    .store-card { width: 92%; }
}
