/**
 * ============================================================================
 * STICKY DOMAIN SEARCH BAR - FULL WIDTH
 * ============================================================================
 */

/* Main Full-Width Wrapper */
.sticky-domain-search-wrapper {
    position: -webkit-sticky !important;
    /* Safari */
    position: sticky !important;
    top: 70px !important;
    /* Adjust based on your header height */
    z-index: 1020 !important;
    /* Higher than other content */
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Inner Content Layout */
.online-business-box-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2e3442;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .online-business-box-content h3 {
        margin-bottom: 15px;
        text-align: center;
    }
}

/* Domain Search Form Styling */
.domain-box {
    position: relative;
    width: 100%;
}

.domain-box form {
    display: flex;
    background: #f4f6f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.domain-box form:focus-within {
    background: #fff;
    border-color: #ff6311;
    box-shadow: 0 0 0 3px rgba(255, 99, 17, 0.1);
}

.domain-box input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    height: 50px;
    outline: none !important;
    box-shadow: none !important;
}

.btn-domainb {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* TLD Select */
.domain-box select.form-control {
    width: auto;
    min-width: 100px;
    border: none;
    background: transparent;
    height: 50px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    box-shadow: none !important;
    padding-right: 30px;
    /* Adjust if needed */
}

/* Search Button */
.domain-box button {
    background: #ff6311;
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 44px;
    /* Slightly smaller than container to fit nicely */
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 3px;
}

.domain-box button:hover {
    background: #e55a0f;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 99, 17, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sticky-domain-search-wrapper {
        padding: 15px 0;
        top: 60px !important;
        /* Adjust for mobile header */
    }

    .online-business-box-content h3 {
        font-size: 18px;
    }

    .domain-box form {
        flex-direction: column;
        padding: 10px;
        background: #fff;
    }

    .domain-box input[type="text"] {
        width: 100%;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
        height: 45px;
        text-align: center;
    }

    .btn-domainb {
        width: 100%;
        gap: 10px;
    }

    .domain-box select.form-control {
        width: 40% !important;
        border: 1px solid #eee;
        border-radius: 4px;
        height: 45px;
    }

    .domain-box button {
        width: 60%;
        height: 45px;
    }
}