button.hc-preorder-action-btn, 
input[type="submit"].hc-preorder-action-btn,
.hc-preorder-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6600;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 14px;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hc-preorder-action-btn i {
    margin-right: 8px;
}
button.hc-preorder-action-btn:hover, 
input[type="submit"].hc-preorder-action-btn:hover,
.hc-preorder-action-btn:hover {
    background-color: #e65c00;
    opacity: 1;
	color: #FFFFFF;
}

button.hc-preorder-action-btn:active, 
.hc-preorder-action-btn:active {
    transform: scale(0.98);
	color: #FFFFFF;
}

.hc-preorder-action-area{
	    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: -9px;
}

/* Overlay & Backdrop */
.hc-merchant-opt-modal-overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hc-merchant-opt-modal-overlay.hc-active {
    opacity: 1;
}

/* Modal Box */
.hc-merchant-opt-modal-content {
    background: #fff;
    width: 90%;
    max-width: 780px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.41, 1.18);
    overflow: hidden;
}

.hc-merchant-opt-modal-overlay.hc-active .hc-merchant-opt-modal-content {
    transform: scale(1);
}

/* Close Button (Görseldeki Kırmızı X) */
.hc-merchant-opt-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: #ff4b4b;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
}

/* Layout */
.hc-merchant-opt-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.hc-merchant-opt-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.hc-merchant-opt-modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
}

.hc-merchant-opt-product-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hc-merchant-opt-product-col img {
    max-width: 100%;
    height: auto;
}

.hc-merchant-opt-form-col {
    flex: 1;
    min-width: 280px;
    padding-left: 20px;
}

/* Typography & Form */
.hc-merchant-opt-form-col h3 {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: #333;
}

.hc-merchant-opt-form-col p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.hc-merchant-opt-input-group label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.hc-merchant-opt-input-group input {
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.hc-merchant-opt-captcha-box {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hc-merchant-opt-re-placeholder {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 10px;
}

/* Submit Button */
button.hc-merchant-opt-submit-btn {
    width: 100%;
    background: linear-gradient(to bottom, #ff8000, #ff5e00);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 128, 0, 0.3);
    transition: transform 0.2s;
}

button.hc-merchant-opt-submit-btn:hover {
    transform: translateY(-2px);
}