.dwc-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--dwc-bg, #25D366);
    color: var(--dwc-text, #fff) !important;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    z-index: 9999;
}

.dwc-button:hover,
.dwc-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.dwc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    font-size: 14px;
    font-weight: 700;
}

.dwc-floating {
    position: fixed;
    bottom: 22px;
}

.dwc-bottom-right {
    right: 22px;
}

.dwc-bottom-left {
    left: 22px;
}

.dwc-product-button-wrap {
    margin: 18px 0;
}

@media (max-width: 767px) {
    .dwc-floating {
        bottom: 16px;
    }

    .dwc-bottom-right {
        right: 16px;
    }

    .dwc-bottom-left {
        left: 16px;
    }

    .dwc-hide-mobile {
        display: none !important;
    }

    .dwc-floating .dwc-text {
        display: none;
    }

    .dwc-floating {
        padding: 14px;
    }
}

@media (min-width: 768px) {
    .dwc-hide-desktop {
        display: none !important;
    }
}
