/**
 * Homepage Hero Buttons Layout & Styling (Astra Child Theme)
 */

.hero-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    justify-content: flex-start;
}

.hero-buttons-wrapper .elementor-widget-button {
    margin: 0 !important;
    width: auto !important;
}

.elementor-element-shopee-hero a.elementor-button.shopee-hero-btn {
    background-color: #ee4d2d !important; /* Shopee Orange */
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.elementor-element-shopee-hero a.elementor-button.shopee-hero-btn:hover {
    background-color: #d73d1f !important;
    box-shadow: 0 4px 12px rgba(238, 77, 45, 0.35) !important;
    transform: translateY(-1px);
}

.elementor-element-shopee-hero a.elementor-button.shopee-hero-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(238, 77, 45, 0.2) !important;
}

@media (max-width: 767px) {
    .hero-buttons-wrapper {
        justify-content: center;
    }
}
