.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.section-header {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #d63384;
    border-radius: 2px;
}

.hero-gradient-1 {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%);
}

.hero-gradient-2 {
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.btn-hover-scale {
    transition: transform 0.2s;
}

.btn-hover-scale:hover {
    transform: scale(1.05);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #d63384 0%, #a02a66 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
    color: white;
}

.btn-glass-light {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #d63384;
    transition: all 0.3s ease;
}

.btn-glass-light:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
    color: #a02a66;
}

.btn-outline-modern {
    border: 2px solid #343a40;
    color: #343a40;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-modern:hover {
    background: #343a40;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-newsletter {
    background: #212529;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #000;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}