.hero-purchase {
    min-height: 40vh;
    position: relative;
    background-color: #000;
}

.hero-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}

/* Animacje dla elementów procesu zakupu */
.flex-shrink-0 {
    transition: transform 0.3s ease;
}

.flex:hover .flex-shrink-0 {
    transform: scale(1.1);
}

/* Style dla linków social media */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Responsywność */
@media (max-width: 768px) {
    .hero-purchase {
        min-height: 30vh;
    }
}

/* Efekty hover dla przycisków */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} 