/* Button Base Styles */
.jdm-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #F37022;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.3);
    line-height: normal;
    width: auto;
    height: auto;
    text-align: center;
}

.jdm-button:hover {
    background-color: #d65d15;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 34, 0.4);
}

/* Button Variants */
.jdm-button--primary {
    background-color: #F37022;
}

.jdm-button--secondary {
    background-color: transparent;
    border: 2px solid #F37022;
    color: #F37022;
}

.jdm-button--secondary:hover {
    background-color: #F37022;
    color: #ffffff;
}

.jdm-button--full-width {
    width: 100%;
    display: block;
}

/* Button Sizes */
.jdm-button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.jdm-button--large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Disabled State */
.jdm-button:disabled,
.jdm-button--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
