/*!
Theme Name: ipos
/* iPOS brand gradient for headings */
.ipos-gradient-title, 
.section-title, 
.hs-title-1,
.hs-title-9,
.section-title-small {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%); /* Brand orange */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* Keep gradient from stretching full line width */
}

/* Per-character spans from Splitting.js */
.hs-title-9 .char {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    
    /* Prevent collapsed letter spacing */
    display: inline-block !important;
}

/* Underline decoration wrapper */
.hs-title-9 .mark-decoration-3-wrap {
    background: none !important; /* Clear wrapper background */
    -webkit-text-fill-color: initial !important; /* Reset wrapper transparency */
}

/* Fallback before Splitting runs */
.hs-title-9:not(.splitting) {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #f36e0f;
}

/* 1. Remove global gradient so it does not paint all text */
.hs-title-9:not(.splitting) {
    background: none;
    -webkit-text-fill-color: initial;
    color: #ffffff; /* Body text color for heading block */
}

/* 2. Gradient on target span (before Splitting) */
.color-primary-1 {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

/* 3. Gradient on chars inside span (after Splitting) */
.color-primary-1 .char {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* 1. Base heading styles (no gradient) */
.ipos-gradient-title, .section-title, .hs-title-1, .hs-title-9, .section-title-small {
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
    display: block; /* Use inline-block if headings sit in one row */
    color: #ffffff; /* Default heading color */
}

/* 2. Optional gradient text (apply only to chosen words) */
.ipos-orange-grad {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

/* 3. Splitting.js: keep gradient chars visible inside span */
.ipos-orange-grad .char {
    background: linear-gradient(90deg, #f36e0f 0%, #FF9000 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

.purchase-form-wrap .form-group {
    margin-bottom: 20px;
}

.purchase-form-wrap label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.purchase-form-wrap .form-control,
.purchase-form-wrap input,
.purchase-form-wrap textarea,
.purchase-form-wrap select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    min-height: 54px;
    padding: 14px 18px;
    transition: all 0.25s ease;
    box-shadow: none;
}

.purchase-form-wrap textarea.form-control,
.purchase-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

.purchase-form-wrap .form-control::placeholder,
.purchase-form-wrap input::placeholder,
.purchase-form-wrap textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.purchase-form-wrap .form-control:focus,
.purchase-form-wrap input:focus,
.purchase-form-wrap textarea:focus,
.purchase-form-wrap select:focus {
    border-color: #f36e0f;
    background: rgba(255,255,255,0.06);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243,110,15,0.12);
}

.purchase-form-wrap .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 13px;
    color: #ff8a8a;
}

.purchase-form-wrap .wpcf7-response-output {
    margin: 25px 0 0 0 !important;
    padding: 14px 18px !important;
    border-radius: 12px;
    font-size: 14px;
}

.purchase-form-wrap .btn,
.purchase-form-wrap input[type="submit"],
.purchase-form-wrap button[type="submit"] {
    width: 100%;
    min-height: 56px;
}

.bg-dark-4 {
    background-color: rgba(255,255,255,0.03);
}

.custom-select-wrap {
    position: relative;
}

.custom-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #f36e0f;
    border-bottom: 2px solid #f36e0f;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    z-index: 2;
}

.custom-select-wrap .custom-select-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    min-height: 54px;
    padding: 14px 48px 14px 18px;
    border-radius: 999px;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: none;
    cursor: pointer;
}

.custom-select-wrap .custom-select-field:focus {
    border-color: #f36e0f;
    background: rgba(255,255,255,0.06);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243,110,15,0.12);
}

.custom-select-wrap .custom-select-field option {
    background: #1b1b1b;
    color: #fff;
}

.custom-select-wrap .custom-select-field:invalid {
    color: rgba(255,255,255,0.45);
}

.custom-select-wrap {
    position: relative;
}

.custom-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #f36e0f;
    border-bottom: 2px solid #f36e0f;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
    z-index: 2;
}

.custom-select-wrap .custom-select-field,
.custom-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    min-height: 58px;
    padding: 0 52px 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background-color: rgba(255,255,255,0.04) !important;
    color: #fff !important;
    font-size: 15px;
    line-height: 1;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.custom-select-wrap .custom-select-field:focus,
.custom-select-wrap select:focus {
    border-color: #f36e0f;
    background-color: rgba(255,255,255,0.06) !important;
    box-shadow: 0 0 0 3px rgba(243,110,15,0.12);
}

.custom-select-wrap .custom-select-field option,
.custom-select-wrap select option {
    background: #1b1b1b;
    color: #fff;
}

.wpcf7 form p {
    margin: 0;
}

.wpcf7 form br {
    display: none;
}

.wpcf7 .form-group > p {
    margin-bottom: 0;
}

.wpcf7-form-control-wrap {
    display: block;
}

.mobile-top-controls {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.mobile-language-switcher ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.mobile-language-switcher li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-language-switcher a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-language-switcher .current-lang a,
.mobile-language-switcher a:hover {
    color: #f36e0f;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .main-nav-sub {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-logo-wrap {
        flex: 1 1 auto;
    }

    .mobile-nav {
        order: 1;
        margin-right: 0;
    }

    .mobile-top-controls {
        order: 3;
    }

    .mobile-language-switcher {
        display: flex;
        align-items: center;
    }

    .nav-language-switcher .mn-sub {
    max-width: 100% !important;
}
}

.nav-language-switcher > a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.nav-language-switcher .mn-sub {
    max-width: 50px;
}

.nav-language-switcher .mn-sub li a {
    text-transform: uppercase !important;
}

.nav-language-switcher .current-lang > a {
    color: #f36e0f !important;
    
}

.nav-language-switcher .mn-sub .current-lang {
    display: none;
}

h1 .charsAnimIn >p {
    margin-bottom: 13px !important;
}

h2>p {
    margin: 0 !important;
}

.border-left-primary-2 {
    border-left: 4px solid;
    /* Gradient border-image with slice unit */
    border-image: linear-gradient(180deg, #FF4D00 0%, #FF9000 100%) 1;
}
