@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('../libs/flag-icons.css');
@import url('../libs/choices.css');

:root {
    --color-primary: #f26425;
    --color-glass: rgba(0, 0, 0, 0.5);
    --color-glass-modal: rgba(74, 74, 74, 0.93);

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('../image/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.no-scroll {
    overflow: hidden !important;
}

.site-header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: transparent;
    position: relative;
    z-index: 2000;
}

.header-container {
    background-color: var(--color-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 34px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    position: relative;
    color: #f9f9f9;
    font-weight: 500;
    font-size: clamp(0.7rem, 2vw, 0.875rem);
    line-height: 1.2;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-primary);
}

.catalogo-wrapper {
    position: relative;
    display: inline-block;
}

.catalogo-wrapper .ano {
    position: absolute;
    top: 60%;
    right: 0;
    transform: translateY(2px);
    color: var(--color-primary);
    font-size: 0.7rem;
    padding: 1px 3px;
    border-radius: 4px;
    white-space: nowrap;
}

.cta .button {
    white-space: nowrap;
    min-width: 120px;
    background-color: rgba(242, 100, 37, 0.89);
    color: #000;
    padding: clamp(6px, 2vw, 10px) clamp(10px, 4vw, 45px);
    border-radius: 8px;
    font-weight: 500;
    font-size: clamp(0.7rem, 2vw, 0.875rem);
    line-height: 1.25rem;
    text-decoration: none;
    transition: background 0.2s ease-in-out,
    backdrop-filter 0.2s ease-in-out,
    font-size 0.3s ease-in-out,
    padding 0.3s ease-in-out;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.cta .button:hover {
    background-color: rgba(248, 102, 38, 0.95);
    backdrop-filter: blur(6px);
}

#menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 34px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    margin-right: 10px;
}
#menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 575px) {

    .site-header{
        padding: 0;
    }
    .header-container {
        padding: 16px;
        gap: 16px;
        border-radius: 0;
        justify-content: space-between;
    }

    #menu-toggle {
        display: flex;
        order: 3;
    }

    .logo { order: 1; }
    .cta  { order: 2;
            margin-left: auto;
        padding: 0 12px;
    }
    .button{
        font-size: 0.75rem !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.show {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background: rgba(45, 45, 45, 0.86);
        backdrop-filter: blur(24px);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        z-index: 2002;
    }

    .nav-links.show a {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 1rem;
        text-align: center;
    }
}

.carousel-container {
    z-index: 100;
    position: relative;
    overflow: hidden;
    background-color: var(--color-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    width: 95%;
    margin: 10px auto 0 auto;
    margin-bottom: 10px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.carousel-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.carousel-indicators-wrapper {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
}

.carousel-indicators-bg {
    position: absolute;
    width: 90px;
    height: 28px;
    z-index: 0;
}

.carousel-indicators {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    bottom: 20%;
    left: 17%;
    z-index: 3;
    display: none;
}

.carousel-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: none;
}

.banner-button {
    background-color: var(--color-primary);
    color: #000;
    padding: 10px 27px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-button:hover {
    background-color: rgba(255, 100, 0, 1);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 12px;
}

.carousel-image {
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .carousel-container{
        width: 98%;
        border-radius: 15px;
        margin-top: 21px;
    }
    .dot {
        width: 9px;
        height: 9px;
    }
    .dot.active {
        width: 15px;
    }
    .carousel-badge {
        top: 4px;
        left: 4px;
        font-size: 0.6rem;
    }
    .banner-button {
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 0.60rem;
    }
}

.glass-card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 20px;
}
.glass-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: clamp(280px, 50vw, 490px);
    background-color: var(--color-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: white;
    text-decoration: none;
    padding: clamp(12px, 2vw, 24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.gpoints {
    max-width: clamp(280px, 190vw, 1000px);
}


.glass-card:hover {
    transform: translateY(-6px);
    background-color: rgba(31, 31, 31, 0.47);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}

.card-text h3 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin: 0 0 8px;
    color: orange;
}

.card-text p {
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    color: #ccc;
    margin: 0;
}

.card-icon {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.card-icon img {
    width: clamp(64px, 5vw, 140px);
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.card-tag {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(12px, -50%);
    background: rgba(255, 145, 0, 0.95);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
}

.gpoints-bottom{
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    margin-top: 7px;
    flex-wrap: wrap;
    gap: 10px;
}

.gpointsreward{
    padding: 10px 25px;
    background: rgba(32, 32, 32, 0.29);
    border-radius: 9px;
    border: rgba(242, 100, 37, 0.58) solid 1px;
    box-shadow: 5px 5px 10px #2525254a;
    transition: all 0.2s ease;

}
.gpointsreward p{
    font-size: 35px;
    color: #f26425;
    font-weight: 700;
}

.gpointsreward:hover {
    background: rgba(32, 32, 32, 0.37);
    border: rgba(255, 87, 13, 0.82) solid 1px;
}

.gpointsreward:hover p {
    color: #ff4f00;
}

@media (max-width: 700px) {
    .gpoints-bottom {
        display: none;
    }
}

@media (max-width: 575px) {
    .glass-card-container {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        padding: 10px 6px;
    }

    .glass-card {
        max-width: none;
        width: 100%;
        height: 100px;
    }
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    border-radius: 6px;
    color: #dddddd;
    font-weight: 600;
    background: rgba(31, 31, 31, 0.56);
    flex: 1;
    margin: 0 5px;
}

.btn:hover:not(:disabled) {
    background-color: rgba(31, 31, 31, 0.65);
    color: white;
}

.btn:active:not(:disabled) {
    transform: scale(0.95);
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

label {
    text-align: left;
    color: #bcbcbc;
    font-weight: 400;
    margin-left: 5px;
    font-size: 9px;
}

input,
select {
    padding: 10px;
    font-size: 16px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.37);
    color: #dddddd;
}

input:focus,
select:focus {
    border-color: var(--color-primary);
    outline: none;
    transform: scale(1.01);
    color: #e6e6e6;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(74, 74, 74, 0.09);
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content.show {
    transform: translateY(0);
    opacity: 1;
}

.modal-content {
    background: var(--color-glass-modal);
    padding: 40px 30px 60px;
    border-radius: 12px;
    width: 90%;
    height: auto;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.06);
    position: relative;
    animation: fadeInModal 0.25s ease forwards;
}

.modal-content.fade-out {
    animation: fadeOutModal 0.25s ease forwards;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutModal {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 28px;
    background-color: rgba(31, 31, 31, 0.23);
    border: 2px solid transparent;
    border-radius: 9px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #ffffff;
    z-index: 1;
}

.close-btn:hover {
    font-size: 32px;
    background-color: rgba(31, 31, 31, 0.38);
    color: #ff5c5c;
    transform: scale(1.1);
}

.close-btn:active {
    background-color: rgba(31, 31, 31, 0.2);
    color: #ff2e2e;
    transform: scale(0.95);
}

.modal-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.tab {
    flex: 1;
    padding: 20px;
    margin: 3px;
    background: transparent;
    color: #c6c6c6;
    font-weight: bold;
    transition: all 0.3s;
    border: transparent;
    border-bottom: #535353 2px solid;
    border-radius: 3px;
}

.tab:hover {
    color: #dddddd;
    background: linear-gradient(0deg, rgba(130, 130, 130, 0.07) 1%, rgba(0, 0, 0, 0) 46%);
    border-bottom: #656565 2px solid;
}

.tab.active {
    color: white;
    background: linear-gradient(0deg, rgba(255, 123, 0, 0.11) 0%, rgba(0, 0, 0, 0) 70%);
    border-bottom: #f26425 3px solid;
}

.form-section {
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-section.hidden {
    display: none;
}

.form-section:not(.hidden) {
    opacity: 1;
}

#sessionInfo {
    margin-top: 20px;
}

#registerForm .step {
    display: none;
}

#registerForm .step.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.form-row > * {
    flex: 1;
    min-width: 0;
}

.form-row > .phone-flex {
    flex: 3 1 0 !important;
    min-width: 140px;
}

.calendar-input-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.37);
    border: 1px solid #ccc;
    transition: border-color 0.2s;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
}

.calendar-input-wrapper input {
    position: absolute;
    inset: 0;
    opacity: 0;
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.calendar-icon-svg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    color: #dddddd;
    z-index: 1;
    transition: color 0.2s;
}

.air-datepicker {
    z-index: 2000 !important;
    background-color: #1e1e1e;
    color: white;
    border: 1px solid #444;
}

.air-datepicker-cell.-selected- {
    background-color: var(--color-primary);
    color: white;
}

.air-datepicker-cell:focus {
    outline: none;
}

.choices__inner {
    padding: 0;
    border: 1px solid #ccc;
}

.is-focused .choices__inner, .is-open .choices__inner {
}

.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0 !important;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    text-align: left !important;
    padding: 5px;
    background: #f9f9f9;
    border-radius: 4px;
}

.choices__list--dropdown [data-choice]:hover {
    background-color: rgba(159, 159, 159, 0.8);
    border-radius: 4px;
    margin: 2px;
}

.choices__list--dropdown .choices__item--selectable,
.choices__list[aria-expanded] .choices__item--selectable {
    display: flex !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.form-row > select#countryCode {
    flex: 0 0 50px;
    width: 50px;
    height: 40px;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.choices[data-type*="select-one"] .choices__inner {
    min-height: 40px !important;
    border-radius: 6px;
    background: rgba(31, 31, 31, 0.5);
}

.choices__list--single {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    padding: 4px;
    margin-left: 9px;
    font-size: 19px;
}

.choices__list--single .choices__item--selectable {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-size: 0; /* oculta texto */
}

.choices__inner .choices__button {
    display: none;
}

.choices__list--dropdown .choices__item--selectable {
    text-align: left !important;
    display: flex !important;
    align-items: center;
    font-size: 14px !important;
    padding: 8px 12px !important;
}

.choices__list--dropdown .choices__item--selectable .flag-icon {
    margin-right: 8px;
}

.choices {
    margin-bottom: 0;
}

.flag-icon {
    border-radius: 4px;
}

.choices[data-type*=select-one]::after {
    border-color: #cacaca transparent transparent transparent;
}

.choices[data-type*=select-one].is-open::after {
    border-color: transparent transparent #aaaaaa;
    margin-top: -7.5px;
}

.input-valid {
    border: 1px solid #2ecc71 !important;
    background: url("data:image/svg+xml;utf8,\
<svg fill='%232ecc71' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'>\
<path d='M9 16.17l-3.59-3.58L4 14l5 5 12-12-1.41-1.42z'/>\
</svg>") no-repeat right 10px center;
    background-size: 20px;
    padding-right: 6px;
}

.input-error {
    border: 1px solid #e74c3c !important;
    background: url("data:image/svg+xml;utf8,\
<svg fill='%23e74c3c' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'>\
<path d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 14h-2v-2h2v2zm0-4h-2V6h2v6z'/>\
</svg>") no-repeat right 10px center;
    background-size: 20px;
    padding-right: 36px;
}


.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-input-wrapper:has(input.input-valid) {
    border-color: #2ecc71;
}

.calendar-input-wrapper:has(input.input-valid) .calendar-icon-svg {
    color: #2ecc71;
}

.calendar-input-wrapper:has(input.input-error) {
    border-color: #e74c3c;
}

.calendar-input-wrapper:has(input.input-error) .calendar-icon-svg {
    color: #e74c3c;
}

.form-row:has(#regPhone.input-valid) .choices__inner {
    border-color: #2ecc71 !important;
}

.form-row:has(#regPhone.input-error) .choices__inner {
    border-color: #e74c3c !important;
}

.form-row:has(#regPhone.input-valid) .choices__inner.is-focused,
.form-row:has(#regPhone.input-valid) .choices__inner.is-open {
    border-color: #2ecc71 !important;
}

.form-row:has(#regPhone.input-error) .choices__inner.is-focused,
.form-row:has(#regPhone.input-error) .choices__inner.is-open {
    border-color: #e74c3c !important;
}

#regDobDay,
#regDobMonth,
#regDobYear {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #a7a7a7;
    padding: 10px 36px 10px 12px;
    font-size: 14px;
    line-height: 1;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#regDobDay,
#regDobMonth,
#regDobYear {
    color: #a7a7a7;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'>\
<path d='M1.5 5.5l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

#regDobDay:focus,
#regDobMonth:focus,
#regDobYear:focus {
    border-color: var(--color-primary);
    outline: none;
}

#regDobDay option[value=""],
#regDobMonth option[value=""],
#regDobYear option[value=""] {
    color: rgba(255, 255, 255, 0.5);
}

.form-row:has(.calendar-input-wrapper input.input-valid)
#regDobDay,
.form-row:has(.calendar-input-wrapper input.input-valid)
#regDobMonth,
.form-row:has(.calendar-input-wrapper input.input-valid)
#regDobYear {
    border-color: #2ecc71 !important;
}

.form-row:has(.calendar-input-wrapper input.input-error)
#regDobDay,
.form-row:has(.calendar-input-wrapper input.input-error)
#regDobMonth,
.form-row:has(.calendar-input-wrapper input.input-error)
#regDobYear {
    border-color: #e74c3c !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #d1d1d1 !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.68) inset !important;
}

input:-webkit-autofill {
    background-color: rgba(0, 0, 0, 0.24) !important;
}

.input-flag-wrapper .choices[data-type*="select-one"]::after {
    display: none !important;
}

.input-flag-wrapper .choices__inner .choices__button {
    display: none !important;
}

.input-flag-wrapper:not(.has-flag) .choices {
    display: none !important;
}

.input-flag-wrapper.has-flag .choices {
    display: block !important;
}

.input-flag-wrapper {
    position: relative;
}

.input-flag-wrapper > select.flag-select {
    display: none !important;
    appearance: none;
    border: none;
    background: transparent;
}

.input-flag-wrapper.has-flag #phoneCountry {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 36px;
    height: 36px;
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 2;
}

.input-flag-wrapper:not(.has-flag) #phoneCountry {
    display: none !important;
}

#phoneFlag {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 20px;
    cursor: pointer;
    z-index: 3;
    display: none;
    border-radius: 12px;
}

.input-flag-wrapper.has-flag #phoneFlag {
    display: block;
}

.input-flag-wrapper.has-flag input {
    padding-left: 56px;
}

.input-flag-wrapper .choices {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    z-index: 4;
}

.input-flag-wrapper .choices .choices__inner {
    background: transparent;
    border: none;
    padding: 0;
}

.input-flag-wrapper .choices__list--single {
    justify-content: center;
    font-size: 0;
}

.input-flag-wrapper .choices__list--dropdown {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    padding: 6px 0;
    min-width: 80px !important;
    width: auto !important;
    background: var(--color-glass-modal);
    color: #cccccc;
    text-decoration: none;
    border: transparent 1px solid;
}

.input-flag-wrapper .choices__list--dropdown .choices__item--selectable {
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start !important;
    transition: transform 0.1s ease-in-out;
}

.input-flag-wrapper .choices__list--dropdown .choices__item--selectable:hover {
    transform: scale(2.05);
    border: #888888 1px solid;
}

.input-flag-wrapper .choices__list--dropdown.is-open {
    min-width: 150px !important;
}

#step2 .form-row:first-child > #regCity {
    flex: 3;
}
#step2 .form-row:first-child > #regState {
    flex: 1;
}

#step2 .form-row:nth-child(3) > #regNeighborhood {
    flex: 3;
}
#step2 .form-row:nth-child(3) > #regNumber {
    flex: 1;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

#step3 .checkbox-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    width: auto;
}

#step3 .checkbox-group input[type="checkbox"] {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
}

#step3 .checkbox-group label {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    font-size: 0.9rem;
    color: #e0e0e0;
}

#step3 .checkbox-group label .bonus {
    margin-left: auto;
}

#step3 .checkbox-group a {
    color: var(--color-primary);
    text-decoration: none;
    margin-left: 4px;
}

#step3 .promotions-group {
    display: block !important;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
}

#step3 .promotions-group legend {
    padding: 0 8px;
    font-size: 0.95rem;
    color: #ccc;
}

#step3 .promotions-group .checkbox-group {
    width: 100%;
}

#step3 .btn.primary {
    background-color: var(--color-primary);
    color: #000;
}

#step3 .btn.outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #ccc;
}

#step3 .btn.primary:disabled,
#step3 .btn.outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#step3 > .checkbox-group:first-of-type {
    justify-content: center;
    margin-left: 10px;
}

#step3 > .checkbox-group:last-of-type {
    justify-content: center;
    margin-left: 10px;
}

#step3 > .checkbox-group:first-of-type input[type="checkbox"],
#step3 > .checkbox-group:first-of-type label {
    margin: 0 4px;
}

#step3 .checkbox-group input[type="checkbox"] {
    accent-color: var(--color-primary);
    transition: accent-color 0.2s, border-color 0.2s;
}

#step3 .checkbox-group input[type="checkbox"]:hover {
    border-color: var(--color-primary);
}

#step3 .promotions-group .bonus {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-left: 4px;
}

#step3 .promotions-group legend .bonus {
    font-size: 0.9rem;
    vertical-align: middle;
}

#step3 .promotions-group {
    padding-top: 8px;
    padding-bottom: 12px;
}

#step3 > .checkbox-group:nth-of-type(3) {
    justify-content: center;
}

.otp-fields {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 35px 0;
    box-shadow: none;
}

.otp-input {
    width: 44px; height: 52px;
    font-size: 2rem;
    text-align: center;
    border: 2px solid #a1a1a1;
    outline: none;
    transition: border 0.2s;
    background: var(--color-glass);
    box-sizing: border-box;
}
.otp-input:focus {
    border: 2px solid #ff9100;
    outline: none;
    box-shadow: none;
}

.otp-input-error {
    border: 2px solid #ff595e !important;
}

.error-message {
    color: #ff5155;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 8px;
    min-height: 24px;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(.65, .05, .36, 1);
}
.error-message.hide {
    opacity: 0;
}

.otp-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0;
}
.modal-main-btn {
    background: var(--color-primary);
    color: #f6f6f6;
    font-size: 1.15rem;
    padding: 10px 32px;
    border-radius: 7px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 0 auto;
    transition: background 0.15s, color 0.12s;
    cursor: pointer;
}
.modal-main-btn:hover, .modal-main-btn:focus {
    background: #f87032;
}

.otp-input::selection {
    background: transparent;
    color: inherit;
}

#otpModal h2 {
    color: #dddddd;
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
}

.otp-desc {
    text-align: center;
    margin-top: 8px;
    color: #afafaf;
    font-size: 12px;
    min-height: 18px;
    font-weight: 600;
}

#resendOtpBtn:disabled,
.modal-main-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--color-glass);
    color: #aaa;
    border: none;
    box-shadow: none;
}

.otp-success-check {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(.65, .05, .36, 1);
}

.otp-success-check.visible {
    display: flex !important;
    opacity: 1;
}

.otp-fade-out {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(.65, .05, .36, 1);
}

.check-anim {
    width: 82px;
    height: 82px;
    display: block;
    margin-bottom: 12px;
}
.check-text {
    font-size: 1.3rem;
    color: #48bb78;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.check-anim-line {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset 0.5s cubic-bezier(.65, .05, .36, 1) 0.1s;
}
.check-anim.success .check-anim-line {
    stroke-dashoffset: 0;
}

.check-anim polyline {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset 0.5s cubic-bezier(.65, .05, .36, 1) 0.1s;
}
.check-anim.success polyline {
    stroke-dashoffset: 0;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 0;
}
.input-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(12px);
    background: #fffbe7;
    color: #e0a100;
    border: 1.5px solid #fbbf24;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    font-size: 0.92rem;
    padding: 6px 14px;
    border-radius: 10px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 100;
}
.input-tooltip.active {
    opacity: 1;
}

.input-used {
    border: 1px solid #fbbf24 !important;
}
.input-info {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 6px;
    min-height: 18px;
    transition: opacity 0.2s;
    opacity: 1;
}

#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ffa500 rgba(0, 0, 0, 0.69);
}
html::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(0, 0, 0, 0.69);
}

html::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.69);
}

html::-webkit-scrollbar-thumb {
    background-color: #ffa500;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.contact-box {
    background: var(--color-glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    margin: 30px auto;
    backdrop-filter: blur(12px);
    color: #fff;
    text-align: center;
}
.contact-box h2 {
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--color-primary);
}
.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 1rem;
    resize: vertical;
}
.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: #ddd;
}
.contact-box button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--color-primary);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-box button:hover {
    background: rgba(242,100,37,0.8);
}

input::selection,
textarea::selection {
    background: var(--color-primary);
    color: #000;
}
input::-moz-selection,
textarea::-moz-selection {
    background: var(--color-primary);
    color: #000;
}

.contact-box textarea {
    resize: none;
    overflow: auto;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(242, 100, 37, 0.4);
}

@media (max-width: 575px) {
    .contact-box {
        margin: 10px 5px;
    }
    .contact-box h2 {
        font-size: 1rem;
    }
}

.container-404{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.site-footer {
    background-color: var(--color-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 20px;
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.footer-logo img{
    height: 60px;
}
.footer-column{
    width: 100%;
}


.footer-column h4 {
    margin-bottom: 8px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--color-primary);
}

.footer-column a,.footer-bottom a {
    color: #f9f9f9;
    text-decoration: none;
    transition: color .3s;
}
.footer-column a:hover {
    color: var(--color-primary);
}



.footer-column p,
.footer-column a,
.footer-column li {
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #f9f9f9;
    text-decoration: none;
    transition: color .3s;
}
.footer-links a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons img {
    width: clamp(24px, 4vw, 32px);
    height: auto;
}

.footer-bottom {
    text-align: center;
    margin-top: 24px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
    }
    .footer-column{
        width: 25%;
    }
}

:root {
    --color-text: #f26425;
    --color-bg-accent: rgba(0, 0, 0, 0.5);
    --size: clamp(10rem, 1rem + 40vmin, 15rem);
    --gap: calc(var(--size) / 14);
    --duration: 120s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}


.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(
            var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
    );
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }
    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }
    to {
        transform: translateY(var(--scroll-end));
    }
}

.marquee img {
    height: 80px;
    display: grid;
    place-items: center;
    width: var(--size);
    background: var(--color-bg-accent);
    aspect-ratio: 16 / 9;
    padding: calc(var(--size) / 10);
    border-radius: 0.5rem;
    object-fit: contain;
}

.marquee svg {
    display: grid;
    place-items: center;
    width: var(--size);
    fill: var(--color-text);
    background: var(--color-bg-accent);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 10);
    border-radius: 0.5rem;
}

.marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: 20px;
    max-width: 100vw;
}

@media (max-width: 575px) {
    :root {
        --size: clamp(2rem, 0.25rem + 30vmin, 8rem);
        --gap: calc(var(--size) / 24);
        --duration: 90s;
    }
    .wrapper{
        margin: 0;
    }
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}

.toggle {
    --size: 3rem;
    position: relative;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: var(--size);
    height: var(--size);
    font: inherit;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    background-color: var(--color-bg-accent);
    z-index: 1;
}

.toggle:focus-visible {
    box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: calc(100% + 0.4em);
    width: fit-content;
    white-space: nowrap;
    transform: translateY(-50%);
    animation: fade 400ms 4s ease-out forwards;
    user-select: none;
}

.toggle svg {
    --size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.select-hidden {
    display: none;
}


.btn-ctg {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    border-radius: 6px;
    color: #dddddd;
    font-weight: 600;
    background: rgba(31, 31, 31, 0.61);
    flex: 1;
}

.p-ctg{
    margin-bottom: 15px;
}

.toggle-link {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
}

.container-link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.glass-card-container-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 10px 20px;
}

.card-icon-links img {
    width: clamp(54px, 1vw, 140px);
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.catalog-status-msg {
    display: flex;
    justify-content: center;
    color: #e83b3b;
    font-size: 0.9em;
    margin-top: 8px;
    transition: opacity 0.3s ease;
}

.catalog-status-msg.hidden {
    display: none;
    opacity: 0;
}