/*--------------------------------------------------------------
# 6.0 - Modals (Callback, Search)
--------------------------------------------------------------*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
	text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
	transition: all .2s ease-in-out;
}

.modal-close-btn:hover {
	color: #333;
}

.btn-header-callback {
    margin-right: 15px;
}

.callback-form h3 {
	font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.callback-form p {
	font-size: 16px;
    margin-bottom: 30px;
    color: #777;
}

.callback-form .form-group {
	margin-bottom: 20px;
	text-align: left;
}

.callback-form label {
	display: block;
    margin-bottom: 8px;
    font-weight: 500;
	font-size: 14px;
    color: #555;
}

.callback-form input[type="text"],
.callback-form input[type="tel"] {
	width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
	transition: all .3s ease-in-out;
    font-size: 15px;
}

.callback-form input[type="text"]:focus,
.callback-form input[type="tel"]:focus {
	outline: none;
    border-color: var(--minimog-color-primary, #333);
    box-shadow: 0 0 0 2px rgba(51,51,51,0.1);
}

.callback-form .privacy-policy-consent {
	display: flex;
    align-items: flex-start;
    text-align: left;
	margin-bottom: 30px;
}

.callback-form .privacy-policy-consent input {
	margin-top: 4px;
	margin-right: 10px;
    flex-shrink: 0;
}

.callback-form .privacy-policy-consent label {
	font-size: 13px;
    line-height: 1.5;
	font-weight: 400;
	color: #888;
}

.callback-form .privacy-policy-consent a {
    color: #333;
    text-decoration: underline;
}

.callback-form .btn-callback-submit {
	width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: var(--minimog-color-primary, #333);
    color: #fff;
    border: none;
    cursor: pointer;
	transition: all .3s ease-in-out;
}

.callback-form .btn-callback-submit:hover {
	background-color: var(--minimog-color-primary-darken-10, #555);
}

.form-status {
	margin-top: 20px;
    text-align: center;
	font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    display: none; /* Hidden by default */
}

.form-status.form-status--success {
	color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.form-status.form-status--error {
	color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.page-header.header-light {
    background-color: #222 !important;
}

.home .page-title-bar-heading {
    display: none;
}

.home .page-breadcrumb {
    display: none;
}

.blog .entry-post-meta,
.single-post .entry-post-meta {
    display: none;
}

.single-post .entry-post-share {
    display: none;
}

.woocommerce-Price-amount.amount {
    white-space: nowrap;
}

/* Fix price wrapping in search results */
.minimog-search-popup-content .product-item .price {
    white-space: nowrap;
}