/* ============================================
   Modern WhatsApp & Shopier Button Styles
   ============================================ */

/* WhatsApp Butonları */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover:before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* WhatsApp Fiyat Sor Butonu (Özel) */
.btn-whatsapp-price {
    background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
    font-size: 18px;
    padding: 18px 35px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
}

/* Shopier Butonu */
.btn-shopier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-shopier:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-shopier:hover:before {
    left: 100%;
}

.btn-shopier:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white !important;
}

.btn-shopier:active {
    transform: translateY(0);
}

.btn-shopier i {
    font-size: 20px;
}

/* Sipariş Butonu (Mevcut) */
.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* Buton Container */
.product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-whatsapp,
    .btn-shopier,
    .btn-order {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .product-buttons {
        flex-direction: column;
    }
}

/* Fiyat Bilgi Alert (Modern) */
.price-info-alert {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    border: none;
}

.price-info-alert i {
    font-size: 24px;
    margin-right: 10px;
}

.price-info-alert strong {
    font-size: 18px;
}

/* Icon Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-whatsapp:hover i,
.btn-shopier:hover i {
    animation: bounce 0.5s ease;
}
