/* External Links Styles */
.external-links-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.external-links-section h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.external-links-section .site-button {
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.external-links-section .site-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* Shopee Button */
.external-links-section .site-button[style*="ee4d2d"] {
    background: linear-gradient(135deg, #ee4d2d 0%, #ff6b4a 100%);
    border: none;
    color: white;
}

.external-links-section .site-button[style*="ee4d2d"]:hover {
    background: linear-gradient(135deg, #d63d1f 0%, #ee4d2d 100%);
    color: white;
}

/* Lazada Button */
.external-links-section .site-button[style*="f36f21"] {
    background: linear-gradient(135deg, #f36f21 0%, #ff8c42 100%);
    border: none;
    color: white;
}

.external-links-section .site-button[style*="f36f21"]:hover {
    background: linear-gradient(135deg, #d55a1a 0%, #f36f21 100%);
    color: white;
}

/* ปุ่ม Lazada: Gradient ตามแบรนด์ */
.external-links-section .site-button.lazada-btn {
    background: linear-gradient(90deg, #9100ca 0%, #5f24e7 50%, #3212cf 100%);
    border: none;
    color: #fff;
    font-weight: 600;
}
.external-links-section .site-button.lazada-btn:hover {
    background: linear-gradient(90deg, #6a4cff 0%, #e02a6c 50%, #f85700 100%);
    color: #fff;
    filter: brightness(1.1);
}
/* ไอคอนในปุ่ม Lazada เป็นสีขาวล้วน ไม่ gradient */
.external-links-section .site-button.lazada-btn i,
.external-links-section .site-button.lazada-btn svg {
    color: #fff !important;
    fill: #fff !important;
    background: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .external-links-section .d-flex {
        flex-direction: column;
    }

    .external-links-section .site-button {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* Animation for buttons */
.external-links-section .site-button {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
