:root {
    --p: #d21f26;
    --p2: #b81b21;
    --p3: #9e171c;
    --ink: #0f172a;
    --muted: rgba(15, 23, 42, .72);
    --line: rgba(210, 31, 38, .14);
    --soft: rgba(210, 31, 38, .08);
}

.row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

.bg-beige {
    padding: 5rem 0;
}

.hero-split {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.hero-split__viewport {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-split__viewport::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.hero-split__slide {
    height: 100vh;
    width: 100%;
    display: flex;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero-split__slide.is-right {
    flex-direction: row-reverse;
}

.hero-split__media {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-split__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 600px at 30% 30%, rgba(210, 31, 38, .14), transparent 60%),
        linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .04));
    pointer-events: none;
}

.hero-split__content {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 64px;
    background: #fff;
    position: relative;
}

.hero-split__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 700px at 80% 15%, rgba(210, 31, 38, .08), transparent 60%),
        radial-gradient(700px 600px at 10% 85%, rgba(210, 31, 38, .06), transparent 55%);
    pointer-events: none;
}

.hero-split__inner {
    width: min(560px, 100%);
}

.hero-split__pill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 11px;
    color: var(--p);
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 13px;
}

.hero-split__title {
    margin: 18px 0 14px;
    color: var(--ink);
    font-weight: 850;
    letter-spacing: -0.9px;
    line-height: 1.05;
    font-size: clamp(40px, 4.2vw, 64px);
}

.hero-split__desc {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.7;
    max-width: 48ch;
}

.shipping-shell {
    background: #f7f8fb;
    padding: 44px 0 80px;
}

.shipping-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 28px;
}

.shipping-layout {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    align-items: flex-start;
    justify-items: stretch;
}

.shipping-layout>[class*="col-"] {
    padding: 0;
}

.shipping-stack {
    display: grid;
    gap: 22px;
}

.shipping-hidden {
    display: none;
}

.shipping-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 18px;
    padding: 26px 24px 22px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    height: 100%;
}

.shipping-card::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 6px;
    background: var(--p);
    opacity: 0.18;
}

.shipping-card .shipping-card {
    box-shadow: none;
    border: 1px solid #eef0f5;
}

.shipping-card .shipping-card::before {
    display: none;
}

.shipping-card .section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 18px 12px;
    letter-spacing: -0.2px;
}

.shipping-card .option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-card .address-item,
.shipping-card .payment-item,
.shipping-card .cargo-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e6e9f3;
    border-radius: 14px;
    padding: 16px 16px;
    background: #fff;
    transition: all .18s ease;
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
    cursor: pointer;
}

.shipping-card .address-item:hover,
.shipping-card .payment-item:hover,
.shipping-card .cargo-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.shipping-card .address-item.selected,
.shipping-card .payment-item.selected,
.shipping-card .cargo-item.selected {
    border-color: var(--p);
    box-shadow: 0 18px 44px rgba(210, 31, 38, 0.14);
    background: #fffdfd;
}

.shipping-card .address-item input,
.shipping-card .payment-item input,
.shipping-card .cargo-item input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.shipping-card .radiostatus {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #d7d9e1;
    position: relative;
    margin-top: 2px;
    transition: all .16s ease;
}

.shipping-card .address-item input:checked+.radiostatus,
.shipping-card .payment-item input:checked+.radiostatus,
.shipping-card .cargo-item input:checked+.radiostatus {
    border-color: var(--p);
    box-shadow: 0 6px 16px rgba(210, 31, 38, 0.2);
}

.shipping-card .address-item input:checked+.radiostatus:after,
.shipping-card .payment-item input:checked+.radiostatus:after,
.shipping-card .cargo-item input:checked+.radiostatus:after {
    content: "";
    position: absolute;
    inset: 5px;
    background: var(--p);
    border-radius: 50%;
}

.shipping-card .brand-description {
    flex: 1;
    min-width: 0;
}

.shipping-card .brand-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 4px;
}

.shipping-card .brand-promotion,
.shipping-card .invoice-preview {
    font-size: 14px;
    line-height: 1.5;
    color: #50566a;
}

.shipping-card .amount {
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
}

.cargo-brand {
    width: 120px;
    height: 52px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 12px;
    border: 1px solid #eef0f5;
    background-color: #f8f9fb;
}

.shipping-info-box {
    border: 1px solid #e6e9f3;
    border-radius: 12px;
    padding: 18px;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2f3640;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.shipping-info-note {
    background: #fff9f1;
    border-color: #f7c08a;
}

.shipping-emphasis {
    color: var(--p);
}

.shipping-favorite {
    margin: 20px 0;
}

.shipping-text-input {
    width: 100%;
    border: 0.1rem solid #ccc !important;
    border-radius: 16px;
    padding: 10px 14px;
}

.shipping-action {
    margin-top: 20px;
}

.shipping-full-btn {
    width: 100% !important;
    display: inline-block;
    margin: 12px 0 0;
}

.cargo-container {
    display: none;
    transition: .2s all;
    border: none !important;
}

.fileuploadnow,
.commandUpload {
    display: none;
    width: 90% !important;
    margin: 0 auto !important;
    float: none !important;
}

.FileArea {
    display: none;
    margin: 160px 0;
    min-height: 200px;
    padding-bottom: 80px;
}

.OptionsEdit {
    float: none !important;
}

.loading-status {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

.total-loaded {
    background: var(--p);
    height: 26px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all;
}

.preloader-container {
    background: #e5e7ef;
    font-size: 15px;
    font-weight: 600;
    border-radius: 24px;
    display: inline-block;
    cursor: pointer;
    padding: 6px 16px;
}

.file-title-area {
    padding: 10px;
    margin: 40px 0;
}

.file-upload-icon {
    width: 70px;
}

.loadingbar,
.processing-file {
    display: none;
}

.button-grey,
.button-white {
    font-size: 16px;
    font-weight: 600;
    border-radius: 28px;
    display: inline-block;
    cursor: pointer;
    padding: 10px 12px;
    text-decoration: none;
}

.button-grey {
    color: #000;
    background: #d9d9d9;
}

.button-white {
    background: #fff;
}

.shipping-alert {
    margin-bottom: 20px;
    font-size: 15px;
    min-height: 10px;
}

.process-type {
    border: 1px solid #e6e9f3;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    background: #fff;
    gap: 18px;
    display: none;
}

.process-type h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.process-type .order-note {
    min-height: 170px;
    border-radius: 12px;
    border: 1px solid #e5e7ef;
    padding: 14px 16px;
    font-size: 15px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.summary-container {
    border: 1px solid #e5e7ef;
    border-radius: 12px;
    padding: 12px 16px;
    background: #fafbff;
    display: grid;
    gap: 8px;
}

.summary-container .col-xs-12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 14px;
    color: #3a3f52;
}

.summary-container .col-xs-6 {
    width: auto;
    padding: 0;
}

.summary-container .summary-payment-last {
    font-weight: 800;
    color: var(--ink);
    font-size: 16px;
}

#hb-toast {
    position: fixed;
    top: 88px;
    right: 24px;
    z-index: 1060;
    pointer-events: none;
}

#hb-toast .hb-toast-notifier-container {
    position: relative;
    top: 0;
    right: 0;
}

#hb-toast .hb-toast-notifier-box {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
    padding: 12px 14px;
    min-width: 280px;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

#hb-toast .hb-toast-content-holder {
    display: flex;
    align-items: center;
    gap: 10px;
}

#hb-toast .hb-toast-text-holder {
    flex: 1;
}

#hb-toast .hb-toast-notifier-box svg {
    display: block;
}

#hb-toast .hb-toast-text {
    font-size: 15px;
    color: #1f2937;
    line-height: 1.5;
}

#hb-toast .hb-toast-close-icon-holder {
    cursor: pointer;
    opacity: .7;
    transition: opacity .15s ease;
}

#hb-toast .hb-toast-close-icon-holder:hover {
    opacity: 1;
}

.toast-modern .close {
    color: #444;
}

.modal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef0f5;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.55);
}

.modal-dialog {
    max-width: 960px;
    width: calc(100% - 32px);
    margin: 1.75rem auto;
}

.modal.fade .modal-dialog {
    transform: translateY(-20px);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}

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

.hero-split__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin: 10px 0 26px;
}

.hero-split__metaItem {
    flex: 1 1 160px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 11px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .92);
}

.hero-split__metaValue {
    font-weight: 850;
    color: var(--ink);
    font-size: 18px;
    letter-spacing: -0.2px;
}

.hero-split__metaLabel {
    margin-top: 6px;
    color: rgba(15, 23, 42, .62);
    font-size: 13px;
    font-weight: 650;
}

.hero-split__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.hero-split__metaItem.hero-split__feature {
    position: relative;
    z-index: 1;
    transition: transform .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
    transform-origin: center;
}

.hero-split__metaItem.hero-split__feature.is-active {
    background: #d21f26;
    border-color: #d21f26;
    transform: scale(1.2);
    z-index: 3;
    transform: scale(1.12);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
}

.hero-split__metaItem.hero-split__feature.is-active .hero-split__metaValue,
.hero-split__metaItem.hero-split__feature.is-active .hero-split__metaLabel {
    color: #ffffff;
}

.hero-split__metaItem.hero-split__feature.is-active .hero-split__metaLabel {
    opacity: .92;
}


.hero-split__btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-split__btn.is-primary {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
}

.hero-split__btn.is-primary:hover {
    background: var(--p2);
    border-color: var(--p2);
    transform: translateY(-1px);
}

.hero-split__btn.is-primary:active {
    background: var(--p3);
    border-color: var(--p3);
    transform: translateY(0);
}

.hero-split__btn.is-ghost {
    background: rgba(210, 31, 38, .08);
    color: var(--p);
    border-color: rgba(210, 31, 38, .22);
}

.hero-split__btn.is-ghost:hover {
    background: rgba(210, 31, 38, .12);
    border-color: rgba(210, 31, 38, .30);
    transform: translateY(-1px);
}


.hero-split__nav {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.hero-split__navDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .22);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-split__navDot.is-active {
    background: var(--p);
    box-shadow: 0 0 0 6px rgba(210, 31, 38, .14);
    transform: scale(1.05);
}

.hero-split__slide .hero-split__inner {
    opacity: 1;
    transform: translateY(10px);
    transition: transform .55s ease;
}

.hero-split__slide.is-active .hero-split__inner {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-split__slide {
        flex-direction: column;
    }

    .hero-split__slide.is-right {
        flex-direction: column;
    }

    .hero-split__media {
        width: 100%;
        height: 46%;
    }

    .hero-split__content {
        width: 100%;
        height: 54%;
        padding: 28px 22px;
    }

    .hero-split__nav {
        right: 14px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    @media (max-width: 992px) {

        .hero-split,
        .hero-split__viewport,
        .hero-split__slide {
            height: auto !important;
            scroll-snap-type: none !important;
            overflow: visible !important;
        }

        .hero-split__slide {
            display: flex;
            flex-direction: column;
        }

        .hero-split__media {
            width: 100%;
            height: 50vh;
            min-height: 300px;
            flex: 0 0 auto;
        }

        .hero-split__content {
            width: 100%;
            height: auto;
            min-height: auto;
            padding: 30px 20px;
            overflow: visible;
        }

        .hero-split__inner {
            width: 100%;
        }

        .hero-split__title {
            font-size: 28px;
            margin: 10px 0;
            text-align: center;
        }

        .hero-split__desc {
            font-size: 14px;
            text-align: center;
            margin: 0 auto 20px;
        }

        .hero-split__meta {
            justify-content: center;
            gap: 10px;
        }

        .hero-split__metaItem {
            flex: 0 0 auto;
            width: 30%;
            padding: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-split__metaValue {
            font-size: 14px;
        }

        .hero-split__metaLabel {
            font-size: 10px;
        }

        .hero-split__actions {
            justify-content: center;
            gap: 10px;
        }

        .hero-split__btn {
            width: 100%;
            max-width: 300px;
        }

        .hero-split__nav {
            position: relative;
            margin-top: 20px;
            bottom: auto;
            padding-bottom: 20px;
        }
    }
}

.animastic-section {
    padding: 80px 0;
    background: var(--p);
    color: #fff;
    overflow: hidden;
}

.animastic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 200px;
}

.animastic-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    text-align: right;
}

.animastic-section.white {
    background: #fff;
}

.animastic-section.white .animastic-title {
    color: var(--p);
}

.animastic-section.white .animastic-link {
    color: var(--p);
}

.animastic-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
}

.animastic-link:hover {
    gap: 12px;
}

.animastic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.animastic-card {
    position: relative;
    height: 450px;
    border-radius: 11px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    background: #222;
}

.animastic-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
    filter: grayscale(100%) brightness(0.7);
    transform: scale(1);
}

.animastic-card:hover .animastic-card__bg {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.animastic-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.animastic-card:hover .animastic-card__content {
    transform: translateY(0);
}

.animastic-card__title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    transform: translateY(20px);
    opacity: 0.8;
    transition: transform 0.5s 0.1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s 0.1s ease;
}

.animastic-card:hover .animastic-card__title {
    transform: translateY(0);
    opacity: 1;
}

.animastic-card__subtitle {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.animastic-card:hover .animastic-card__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.animastic-card__arrow {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.animastic-card:hover .animastic-card__arrow {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    background: #d21f26;
}

@media (max-width: 768px) {
    .animastic-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 15px;
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .animastic-title {
        text-align: left;
        font-size: 2rem;
    }

    .animastic-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 20px 40px 20px;
        margin: 0;
        grid-template-columns: none;
        -webkit-overflow-scrolling: touch;
    }

    .animastic-grid::-webkit-scrollbar {
        display: none;
    }

    .animastic-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 450px;
    }

    .animastic-card__bg {
        filter: grayscale(0%) brightness(0.8);
    }

    .animastic-card__content {
        transform: translateY(0);
        align-items: flex-start;
        text-align: left;
    }

    .animastic-card__title,
    .animastic-card__subtitle {
        opacity: 1;
        transform: translateY(0);
    }

    .animastic-card__arrow {
        top: 20px;
        left: 20px;
        opacity: 1;
        transform: scale(1);
        background: rgba(0, 0, 0, 0.5);
    }
}

.modern-footer {
    background: var(--p);
    color: #fff;
    padding: 80px 0 0;
    font-family: inherit;
    position: relative;
    margin-top: 0;
}

.modern-footer-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 30px;
    justify-content: flex-end;
}

.modern-footer-col {
    flex: 0 0 auto;
    width: 200px;
}

.modern-footer-col.logo-col {
    flex: 1;
    margin-right: auto;
    max-width: 400px;
}

.modern-footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 0.5px;
    position: relative;
}

.modern-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-footer-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    opacity: 0.8;
    transition: all 0.2s ease;
    display: inline-block;
}

.modern-footer-list li a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.modern-footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0.8;
    font-size: 1.3rem;
    line-height: 1.6;
}

.modern-footer-info i {
    margin-right: 8px;
    opacity: 0.7;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin: 24px 0;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #fff;
    color: var(--p);
    transform: translateY(-3px);
}

.footer-tags {
    font-size: 0.9rem;
    opacity: 1;
    line-height: 1.6;
    margin-top: 16px;
}

.modern-footer-bottom {
    margin: 60px auto 0;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
    background: var(--p2);
}

.modern-footer-slogan {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
}

.modern-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.modern-header i {
    font-size: 5rem;
    color: var(--p);
    margin-bottom: 1rem;
    display: block;
}

.modern-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.modern-header p {
    font-size: 1.2rem;
    color: var(--muted);
}

.modern-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.modern-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.modern-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.item-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.item-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--ink);
}

.item-meta {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: block;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--p);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-label {
    font-size: 0.85rem;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--muted);
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
}

.summary-row.total .price {
    color: var(--p);
}

.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    background: var(--p);
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    gap: 4px;
}

.btn-modern:hover {
    background: var(--p2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(210, 31, 38, 0.2);
}

.btn-modern-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    gap: 4px;
}

.btn-modern-outline:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--ink);
}

@media (max-width: 992px) {
    .modern-grid {
        grid-template-columns: 1fr;
    }

    .modern-container {
        padding: 20px;
    }
}

.modern-footer-col.active .modern-footer-list,
.modern-footer-col.active .modern-footer-info {
    display: flex;
}

.logo-col .footer-socials,
.logo-col .footer-tags {
    display: flex;
}

.modern-footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 0;
    padding-top: 30px;
}



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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-collection-page {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
}

.modern-collection-hero {
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.modern-collection-title {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.modern-collection-content {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    text-align: left;
    min-height: 400px;
}

.modern-collection-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    border-radius: 11px;
    padding: 20px;
}

.modern-collection-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 11px;
    box-shadow: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.modern-collection-image:hover img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.modern-collection-text {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.modern-collection-text-inner,
.modern-collection-text-inner * {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.5rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    font-weight: 400 !important;
    background: none !important;
    height: auto !important;
    max-width: 100% !important;
}

.modern-collection-text-inner>div {
    font-size: 1.5rem !important;
    margin-bottom: 0 !important;
}

.modern-collection-text-inner strong,
.modern-collection-text-inner b {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.modern-collection-btn-container {
    position: absolute;
    bottom: 0;
    right: 20px;
    margin-top: 30px;
}

.modern-collection-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 45px;
    background: var(--p);
    color: #fff;
    text-decoration: none;
    border-radius: 11px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
    letter-spacing: 0.5px;
}

.modern-collection-btn:hover {
    background: #b0181e;
    transform: translateY(-2px);
    color: #fff;
}

.modern-models-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.modern-models-title {
    padding-bottom: 10px;
    text-align: start;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.modern-model-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.modern-model-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modern-model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.modern-model-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f4f4f4;
    position: relative;
}

.modern-model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.modern-model-card:hover .modern-model-image img {
    transform: scale(1.05);
}

.modern-model-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-model-card:hover .modern-model-overlay {
    opacity: 1;
}

.modern-model-overlay i {
    color: #fff;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.modern-model-info {
    padding: 20px;
    text-align: center;
}

.modern-model-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (max-width: 992px) {
    .modern-collection-content {
        flex-direction: column;
        gap: 40px;
    }

    .modern-collection-text {
        text-align: center;
    }

    .modern-model-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .modern-collection-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .modern-collection-hero {
        padding: 40px 20px;
    }

    .modern-model-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .modern-collection-title {
        font-size: 2rem;
    }

    .modern-collection-image img {
        box-shadow: none;
    }
}

.fancybox-bg {
    background: rgba(0, 0, 0, 0.9) !important;
}

.fancybox-button {
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

.fancybox-button:hover {
    background: var(--p) !important;
    color: #fff !important;
}

.fancybox-button svg path {
    fill: #fff !important;
}

.fancybox-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 30px 44px !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    border-top: none !important;
}

.fancybox-caption__body {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-height: none !important;
}

.fancybox-thumbs {
    background: #111 !important;
    border-right: 1px solid #333;
}

.fancybox-thumbs__list a:before {
    border-color: var(--p) !important;
}

.button-orange,
.btn-orange {
    background-color: var(--p) !important;
}

.fancybox-caption__body {
    background: var(--p) !important;
    padding: 10px !important;
    border-radius: 4px !important;
    width: max-content !important;
    margin: 0 auto !important;
}

.modern-models-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5px 40px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--p) #f1f1f1;
    -webkit-overflow-scrolling: touch;
}

.modern-models-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.modern-models-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modern-models-scroll-container::-webkit-scrollbar-thumb {
    background: var(--p);
    border-radius: 3px;
}

.modern-models-scroll-container .modern-model-card-animastic {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.modern-model-card-animastic {
    position: relative;
    background: #fff;
    border-radius: 11px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.modern-model-grid .modern-model-card-animastic {
    flex: 0 0 calc(33.333% - 20px);
    width: auto;
}

@media (max-width: 992px) {
    .modern-model-grid .modern-model-card-animastic {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .modern-model-grid .modern-model-card-animastic {
        flex: 0 0 100%;
    }
}

.modern-model-card-animastic:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modern-animastic-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.modern-animastic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-model-card-animastic:hover .modern-animastic-image img {
    transform: scale(1.1);
}

.modern-animastic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

.modern-model-card-animastic:hover .modern-animastic-overlay {
    opacity: 1;
}

.modern-animastic-content {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modern-model-card-animastic:hover .modern-animastic-content {
    transform: translateY(0);
}

.modern-animastic-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-animastic-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    transform: scale(0) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modern-model-card-animastic:hover .modern-animastic-arrow {
    transform: scale(1) rotate(0deg);
}

@media (max-width: 768px) {
    .modern-models-scroll-container .modern-model-card-animastic {
        flex: 0 0 260px;
    }

    .modern-animastic-overlay {
        opacity: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        padding: 20px;
    }

    .modern-model-card-animastic:active .modern-animastic-overlay {
        opacity: 1;
    }
}

.modern-option-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.modern-option-grid::-webkit-scrollbar {
    height: 8px;
}

.modern-option-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modern-option-grid::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 6px;
}

.modern-option-grid::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.modern-option-card {
    border: 1px solid #eee;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    min-width: 140px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    text-align: center;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.modern-option-card:hover {
    border-color: #ddd;
    background: #f9f9f9;
}

.product-item-option.active,
.modern-option-card.active {
    border-color: var(--p) !important;
    background: var(--p) !important;
    color: #fff !important;
}

.modern-input,
.modern-select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #eee !important;
    border-radius: 11px !important;
    background: #fff;
    font-size: 1rem !important;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    height: auto !important;
}

.modern-input:focus,
.modern-select:focus {
    border-color: var(--p) !important;
}

input#KapakYazi {
    box-shadow: none !important;
    font-family: 'Montserrat', sans-serif;
}

.modern-product-section {
    padding: 60px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.modern-product-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.modern-product-left {
    flex: 0.85;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.kargo-indirim {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    max-width: 120px;
    height: auto;
    pointer-events: none;
}

.modern-product-right {
    flex: 1.15;
    min-width: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 5px;
}

.modern-product-right::-webkit-scrollbar {
    width: 6px;
}

.modern-product-right::-webkit-scrollbar-track {
    background: transparent;
}

.modern-product-right::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 20px;
}

.modern-breadcrumb {
    padding: 0;
    margin: 30px 40px 10px;
    list-style: none;
    background-color: transparent !important;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.modern-breadcrumb li {
    display: flex;
    align-items: center;
    color: #888;
}

.modern-breadcrumb li::after {
    content: none !important;
    display: none !important;
}

.modern-breadcrumb li+li::before {
    content: "\f105";
    font-family: "FontAwesome";
    padding: 0 12px;
    color: #ccc;
    font-size: 1.5rem;
}

.modern-breadcrumb li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.modern-breadcrumb li a:hover {
    color: #d21f26;
}

.modern-breadcrumb li.active {
    color: #d21f26;
    font-weight: 600;
}

.modern-price-box {
    background: #fcfcfc;
    border: 2px solid #e1e1e1;
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-price-box:hover {
    transform: translateY(-2px);
    border-color: #d2d2d2;
}

.price-area .total-amount {
    color: #d21f26 !important;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1;
    display: block;
}

.pric.terms-text {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 15px;
    margin-bottom: 0;
}

.wizard-container {
    padding: 20px 0 60px;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
    padding: 30px 40px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 60px;
    right: 60px;
    height: 4px;
    background: #f1f3f5;
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 4px;
}

.wizard-step-item {
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: #adb5bd;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
}

.wizard-step-item.active .step-circle {
    border-color: #d21f26;
    background: #d21f26;
    color: #fff;
    transform: scale(1.2);
}

.wizard-step-item.completed .step-circle {
    border-color: #d21f26;
    background: #fff;
    color: #d21f26;
}

.step-title {
    font-size: 0.85rem;
    color: #adb5bd;
    font-weight: 600;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -15px;
    opacity: 1;
}

.wizard-step-item.active .step-title,
.wizard-step-item:hover .step-title {
    color: #333;
    opacity: 1;
}

.modern-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    height: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modern-product-card:hover::after {
    opacity: 0.7;
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.modern-product-card:hover .card-image-wrapper {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    text-align: left;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.modern-product-card:hover .card-title,
.modern-product-card:hover .card-desc {
    transform: translateY(0);
    opacity: 1;
}

.card-action-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: #d21f26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.modern-product-card:hover .card-action-icon {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.step-card {
    padding: 30px;
    border-radius: 12px;
}

.step2-collection-title {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.9rem;
    margin-top: 20px;
    font-weight: 600;
    color: #333;
    border-left: 5px solid #d21f26 !important;
    padding-left: 15px;
    margin-bottom: 25px;
}

#cover-template-link {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
    color: #d21f26;
    gap: 5px;
    transition: .2s ease all;
}

#cover-template-link:hover {
    border-color: #d21f26;
    background-color: #fafafa;
}

.dimension-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.dimension-col {
    width: 33%;
    padding: 0 10px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .dimension-col {
        width: 100%;
    }
}

.modern-radio-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.modern-radio-option:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.modern-radio-option.selected {
    border-color: #d21f26;
    background: #fff5f5;
}

.radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.modern-radio-option.selected .radio-circle {
    border-color: #d21f26;
}

.modern-radio-option.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #d21f26;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radio-label {
    font-weight: 600;
    font-size: 1rem;
    color: #495057;
}

.modern-radio-option-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    min-height: 80px;
}

.modern-radio-option-card:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.modern-radio-option-card.selected {
    border-color: #d21f26;
    background: #fff5f5;
}

.modern-radio-option-card.selected .radio-circle {
    border-color: #d21f26;
}

.modern-radio-option-card.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #d21f26;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

label.checkbox-container input {
    all: unset;
}

.package-thumb-wrapper {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #eee;
}

.package-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-info {
    display: flex;
    flex-direction: column;
}

.package-name {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 4px;
}

.package-price {
    font-weight: 600;
    color: #d21f26;
    font-size: 0.95rem;
}

.step2-image-container img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    transition: src 0.3s ease;
}

.modern-grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 30px;
}

.modern-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.modern-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.modern-col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .modern-col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {

    .modern-col-3,
    .modern-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.modern-selection-box {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.modern-selection-box:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.modern-selection-box.selected {
    border-color: #d21f26;
    background: #fff5f5;
}

.selection-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.modern-selection-box.selected .selection-radio {
    border-color: #d21f26;
}

.modern-selection-box.selected .selection-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #d21f26;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.selection-content {
    flex-grow: 1;
}

.selection-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.selection-desc {
    font-size: 0.85rem;
    color: #6c757d;
}

.model-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #adb5bd;
}

.model-card.selected {
    border-color: #d21f26;
    box-shadow: 0 0 0 4px rgba(210, 31, 38, 0.1);
}

.model-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.model-card-info {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

.model-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.model-card.selected .model-name {
    color: #d21f26;
}

.color-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.color-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.color-card:hover {
    border-color: #adb5bd;
    transform: scale(1.05);
}

.color-card.selected {
    border-color: #d21f26;
    box-shadow: 0 0 0 3px rgba(210, 31, 38, 0.1);
}

.color-swatch {
    height: 80px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.color-name {
    padding: 8px 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    border-top: 1px solid #eee;
}

.color-card.selected .color-name {
    color: #d21f26;
    font-weight: 700;
}

.selected-check {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d21f26;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.model-card.selected .selected-check,
.color-card.selected .selected-check {
    opacity: 1;
    transform: scale(1);
}

.wizard-actions {
    margin-top: 60px;
    margin-bottom: 10px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 10;
}

.wizard-content-step {
    padding: 10px 30px;
    background: white;
    border-radius: 11px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 20px;
}

.modern-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.modern-btn:focus {
    outline: none;
}

.modern-btn-primary {
    background: #d21f26;
    color: #fff;
}

.modern-btn-primary:hover {
    background: #b91b22;
    transform: translateY(-2px);
}

.modern-btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.modern-btn-secondary:hover {
    background: #dee2e6;
    color: #212529;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.modern-store-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px 20px 5px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--p) #f1f1f1;
    justify-content: center;
}

.modern-store-filter::-webkit-scrollbar {
    height: 6px;
}

.modern-store-filter::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-store-filter::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.modern-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    color: #555;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.modern-filter-btn:hover {
    border-color: var(--p);
    color: var(--p);
    transform: translateY(-2px);
}

.modern-filter-btn.active {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
}

.modern-filter-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.modern-filter-btn img.filter-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.modern-filter-btn:hover img.filter-icon,
.modern-filter-btn.active img.filter-icon {
    filter: grayscale(0%) brightness(200%);
}

.modern-filter-btn.active img.filter-icon {
    filter: brightness(0) invert(1);
}

.modern-collection-hero {
    position: relative;
    padding: 100px 20px;
    margin: 0;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}

.modern-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.modern-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modern-hero-desc {
    color: #f1f1f1;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modern-collection-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #d21f26;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.modern-collection-btn:hover {
    background: #b0181e;
    transform: translateY(-2px);
    color: #fff !important;
}

.modern-model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.modern-model-card-animastic {
    flex: unset;
    max-width: 100%;
}

.modern-animastic-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 11px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-animastic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-animastic-title {
    font-size: 1.3rem;
}

@media (max-width: 1400px) {
    .modern-model-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .modern-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .modern-model-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .modern-store-filter {
        justify-content: flex-start;
    }

    .modern-animastic-image {
        height: 350px;
    }
}

.paginationjs {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.paginationjs .paginationjs-pages ul {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.paginationjs .paginationjs-pages li {
    border: none !important;
    margin: 0 !important;
}

.paginationjs .paginationjs-pages li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    line-height: 1;
    padding: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none !important;
}

.paginationjs .paginationjs-pages li:not(.active):hover>a {
    background: #fff;
    color: var(--p);
    border-color: var(--p);
    transform: translateY(-2px);
}

.paginationjs .paginationjs-pages li.active>a {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
    transform: scale(1.1);
}

.paginationjs .paginationjs-pages li.disabled>a {
    opacity: 0.5;
    pointer-events: none;
    background: #f9f9f9;
    box-shadow: none;
}

.paginationjs .paginationjs-nav {
    font-family: 'Montserrat', sans-serif;
    color: #999;
}

.modern-card-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 18rem;
    background: white;
    margin-bottom: 30px;
}

.modern-product-title-wrapper {
    width: fit-content;
}

.modern-product-title {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    font-size: 1.8rem;
    line-height: 1;
    color: #222;
    font-weight: 600;
}

.modern-product-title-count {
    font-size: 1.5rem;
    color: #888;
    font-weight: 400;
}

.modern-product-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .modern-product-content {
        flex-direction: column;
    }

    .modern-option-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .modern-option-card {
        flex: 1 1 100%;
    }
}

.modern-cart-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.modern-cart-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modern-cart-summary {
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 35px;
    position: sticky;
    top: 30px;
}

.modern-cart-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 15px;
    gap: 25px;
    transition: all 0.2s ease;
}

.modern-cart-item:hover {
    border-color: var(--p);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 11px;
    object-fit: cover;
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    padding-top: 5px;
}

.cart-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cart-item-variant {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    min-width: 140px;
    padding-top: 5px;
}

.cart-item-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--p);
    letter-spacing: -0.5px;
}

.cart-qty-wrapper {
    width: 100px;
}

.cart-remove-btn {
    color: var(--muted);
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
}

.cart-remove-btn:hover {
    color: var(--p2);
    background: var(--soft);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: 1.25rem;
}

.summary-row span:last-child {
    font-weight: 600;
}

.summary-row.total {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--p);
    border-top: 2px solid var(--soft);
    padding-top: 25px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.summary-btn-outline {
    width: 100%;
    padding: 14px;
    border-radius: 11px;
    background: transparent;
    border: 2px solid var(--p);
    color: var(--p) !important;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
}

.summary-btn-outline:hover {
    background: var(--soft);
    transform: translateY(-2px);
}

.summary-btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 11px;
    background: var(--p);
    border: 2px solid var(--p);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: block;
    text-decoration: none;
}

.summary-btn-primary:hover {
    background: var(--p2);
    border-color: var(--p2);
    transform: translateY(-2px);
}

.modern-cart-ads-area {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, var(--soft) 100%);
    border-radius: 11px;
    border: 1px solid var(--line);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ads-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}

.ads-text {
    color: var(--muted);
    font-size: 1rem;
    max-width: 400px;
}

.ads-placeholder {
    width: 100%;
    max-width: 728px;
    height: 90px;
    background: #eef1f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    border: 2px dashed #cbd5e1;
    margin-top: 15px;
}


@media (max-width: 992px) {
    .modern-cart-container {
        flex-direction: column;
        gap: 30px;
    }

    .modern-cart-list,
    .modern-cart-summary {
        width: 100%;
        flex: auto;
    }

    .modern-cart-summary {
        position: static;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .modern-cart-item {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .cart-item-image {
        width: 100%;
        height: 350px;
    }

    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--line);
        padding-top: 20px;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-item-title {
        font-size: 1.8rem;
    }

    .cart-qty-wrapper {
        order: 1;
    }

    .cart-item-price {
        order: 2;
    }

    .cart-remove-btn {
        order: 3;
    }
}

.cart-page-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .cart-page-wrapper {
        padding: 0 20px;
    }
}

.cart-item-title-link {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}

.cart-item-title-link:hover {
    color: var(--p);
}

.select2-container .select2-selection--single {
    height: 39px !important;
    border: 1px solid var(--line) !important;
    border-radius: 11px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 39px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ink) !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
}

.select2-dropdown {
    border: 1px solid var(--line) !important;
    border-radius: 11px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    padding: 10px !important;
}

.select2-results__option {
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 1.25rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--p) !important;
    color: white !important;
}

.swal2-popup {
    border-radius: 20px !important;
    padding: 30px !important;
}

.swal2-title {
    font-size: 1.5rem !important;
    color: var(--ink) !important;
    font-family: inherit !important;
}

.swal2-html-container {
    color: var(--muted) !important;
    font-size: 1.25rem !important;
    font-family: inherit !important;
}

.swal2-styled.swal2-confirm {
    border-radius: 11px !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
}

.swal2-styled.swal2-cancel {
    border-radius: 11px !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
}

.swal2-icon {
    border: 3px solid transparent !important;
}

div:where(.swal2-icon).swal2-warning {
    color: #d21f26 !important;
    ;
}

div:where(.swal2-icon) {
    width: 8em;
    height: 8em;
    margin: 1.5em auto .6em;
}

.modern-empty-cart {
    background: #fff;
    border-radius: 11px;
    padding: 80px 30px;
    text-align: center;
    border: 1px solid var(--line);
    margin: 40px auto 80px;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.empty-icon-wrapper {
    width: 140px;
    height: 140px;
    background: var(--soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: transform 0.3s ease;
}

.modern-empty-cart:hover .empty-icon-wrapper {
    transform: scale(1.05);
}

.empty-icon-wrapper i {
    font-size: 60px;
    color: var(--p);
}

.empty-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 15px;
    font-family: inherit;
}

.empty-text {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.empty-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.empty-btn {
    flex: 1;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    padding: 18px 20px !important;
}

@media (max-width: 768px) {
    .modern-empty-cart {
        padding: 50px 20px;
        margin: 20px auto 50px;
    }

    .empty-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .empty-icon-wrapper i {
        font-size: 40px;
    }

    .empty-title {
        font-size: 1.5rem;
    }

    .empty-actions {
        flex-direction: column;
        gap: 15px;
    }

    .empty-btn {
        width: 100% !important;
        min-width: auto;
    }
}

.auth-wrapper {
    display: flex;
    height: 700px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
    border: 1px solid var(--line);
}

.auth-visual {
    width: 40%;
    background: #d21f26;
    background: linear-gradient(135deg, #d21f26 0%, #a61218 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    z-index: 1;
    overflow: hidden;
}

.auth-visual::before {
    display: none;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.particle:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.particle:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.particle:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.particle:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.particle:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.particle:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.particle:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}


.auth-visual-content {
    color: #fff;
}

.auth-visual-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.auth-visual-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 90%;
}

.auth-forms {
    width: 60%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
}

.auth-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--soft);
}

.auth-tab {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--muted);
    background: none;
    border: none;
    padding-bottom: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: var(--p);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--p);
    border-radius: 3px;
}

.auth-form-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

.auth-form-container.active {
    display: block;
}

.modern-form-group {
    margin-bottom: 25px;
}

.modern-welcome-text {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 1.3rem;
    line-height: 1.5;
}

.modern-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0;
    margin-left: 5px;
}

.modern-input {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 1.25rem !important;
    border: 2px solid var(--soft);
    border-radius: 12px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    color: var(--ink);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.modern-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 1.25rem;
    padding-right: 50px;
}

.modern-input:focus {
    background: #fff;
    border-color: var(--p);
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
    outline: none;
}

.modern-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modern-checkbox {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--muted);
}

.modern-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--p);
    margin-right: 10px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 1 !important;
    position: static !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    pointer-events: auto !important;
}

.forgot-password-link {
    color: var(--p);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.25rem;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.modern-btn-full {
    width: 100%;
    padding: 18px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.terms-text {
    margin-top: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        margin: 20px;
        width: auto;
    }

    .auth-visual {
        width: 100%;
        height: 200px;
        padding: 30px;
    }

    .auth-visual-title {
        font-size: 1.8rem;
    }

    .auth-forms {
        width: 100%;
        padding: 40px 30px;
    }
}

.modern-step4-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .modern-step4-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.modern-option-group {
    margin-bottom: 40px;
}

.modern-option-group-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    border-left: 4px solid var(--p);
    padding-left: 15px;
    line-height: 1.2;
}

.summary-lines {
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 15px;
}

.summary-lines .summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.summary-row.total {
    border-top: 1px solid #f3f3f3;
    padding-top: 12px;
    margin-top: 18px;
}

.summary-row.total span {
    font-size: 2.2rem;
}

.summary-row.total .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: var(--p);
    border: 1px solid var(--p) !important;
}

.modern-card .btn-modern {
    box-shadow: none;
}

.modern-card .btn-modern:hover {
    box-shadow: none;
}

.modern-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.modern-options-grid.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.modern-options-grid.grid-dense {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.modern-total-price-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.modern-total-price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #3a4a5b;
    border-radius: 10px;
}

.modern-total-price-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-total-price-value {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    line-height: 1;
}

.modern-total-price-summary {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

.modern-total-price-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-addon-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    position: relative;
    overflow: hidden;
    min-width: 0;
    width: 100%;
}

.modern-addon-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.modern-addon-card.checked {
    border-color: var(--p);
    background-color: #fff5f5;
    box-shadow: 0 4px 15px rgba(210, 31, 38, 0.1);
}

.modern-addon-image {
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #f8fafc;
    flex-shrink: 0;
}

.modern-addon-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    min-width: 0;
}

.modern-addon-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.3;
}

.modern-addon-price {
    font-weight: 600;
    color: var(--p);
    font-size: 0.9rem;
}

.modern-addon-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    margin-left: auto;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 2px;
    border: 1px solid #e2e8f0;
}

.qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #fff;
    border-radius: 6px;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #f1f5f9;
    color: var(--p);
}

.addon-qty-input {
    width: 25px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--ink);
    padding: 0;
    font-size: 0.9rem;
}

.step4-options-section,
.step4-summary-section {
    min-width: 0;
}

.modern-addon-card {
    min-width: 0;
    width: 100%;
}

.box-option .radio-circle {
    display: none !important;
}

.box-option {
    border: 2px solid #e2e8f0;
    transition: all 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-option.selected {
    border-color: var(--p) !important;
    background-color: #fff5f5;
    box-shadow: 0 0 0 2px rgba(210, 31, 38, 0.1);
}

.modern-total-price-card {
    z-index: 90;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
    margin-top: 0;
}

#box-options-container {
    position: relative;
    z-index: 1;
}

#extra-family-toggle {
    border: 2px solid #e2e8f0;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 15px;
}

#extra-family-toggle.checked {
    border-color: var(--p);
    background-color: #fff5f5;
}

#extra-family-toggle .checkbox-square {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cbd5e1;
    background: #fff;
    transition: all 0.2s;
}

#extra-family-toggle.checked .checkbox-square {
    border-color: var(--p);
    background-color: var(--p);
    color: #fff;
}

#extra-family-toggle .checkbox-square i {
    display: none;
}

#extra-family-toggle.checked .checkbox-square i {
    display: block;
}

#other-products-wrapper {
    padding: 10px;
    max-height: 260px;
    overflow: hidden;
    transition: 0.4s ease-in-out;
}

@media (max-width: 992px) {
    .modern-step4-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modern-total-price-card {
        position: static;
        top: auto;
    }

    .modern-options-grid.grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .modern-options-grid.grid-2 {
        grid-template-columns: 1fr;
    }
}

.orders-modern .orders-empty-state {
    min-height: 220px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 24px !important;
    border-radius: 16px !important;
    background: #fff !important;
    border: 1px solid #eef1f5 !important;
}

.orders-modern .orders-empty-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: var(--p) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 32px !important;
    font-size: 14px !important;
}

.orders-modern .orders-empty-text {
    color: #6b7280 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.orders-modern .my-orders {
    display: grid !important;
    gap: 0 !important;
}

/* .orders-modern .orders-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 6px !important;
} */

/* .orders-modern .orders-tabs .nav-link {
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04) !important;
    background: #fff !important;
} */

/* .orders-modern .orders-tabs .nav-link.active {
    background: var(--p) !important;
    border-color: var(--p) !important;
    color: #fff !important;
} */

.orders-modern .orders-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    color: #0f172a !important;
}

.orders-modern .orders-info i {
    color: var(--p) !important;
}

/* .orders-modern .orders-filter {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    color: #0f172a !important;
} */

.orders-modern .order-container {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 18px !important;
    padding: 16px !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    /* gap: 14px !important; */
}

.orders-modern .order-preview {
    display: grid !important;
    grid-template-columns: 80px 1fr auto auto !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
}

.orders-modern .product-image img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    padding: 8px !important;
}

.orders-modern .order-number {
    text-align: left !important;
    font-size: 14px !important;
    color: #0f172a !important;
    line-height: 1.5 !important;
}

.orders-modern .order-number .kapak-baslik {
    display: inline-block !important;
    color: var(--p) !important;
    font-weight: 700 !important;
}

.orders-modern .order-number .kapakyazi {
    display: inline-block !important;
    font-weight: 600 !important;
}

.orders-modern .amount {
    text-align: right !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern .order-status {
    text-align: right !important;
    color: var(--p) !important;
    font-weight: 700 !important;
}

.orders-modern .more-icon {
    cursor: pointer !important;
    color: #0f172a !important;
    justify-self: end !important;
}

.orders-modern .basket-navigation {
    padding: 14px 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    text-align: center !important;
    min-height: 120px !important;
    position: relative !important;
}

.orders-modern .basket-navigation i.fa-check {
    color: #fff !important;
    background: var(--p) !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    border: none !important;
}

.orders-modern .basket-navigation .date14px {
    font-size: 13px !important;
    color: #6b7280 !important;
    margin: 2px 0 !important;
}

.orders-modern .orderStatusDescription {
    font-weight: 700 !important;
    color: #fff !important;
}

.orders-modern .moreDayNote {
    color: #6b7280 !important;
    font-size: 13px !important;
}

.orders-modern .walletPaymentContainer {
    display: none !important;
    width: 100% !important;
}

.orders-modern .walletPaymentContainer .button-orange {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
}

.orders-modern .orderupdatebtn {
    background-color: #04aa6d !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

.orders-modern .kapakyazi {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-weight: 600 !important;
}

.orders-modern .kapak-baslik {
    color: var(--p) !important;
    font-weight: 700 !important;
}

.orders-modern .infobar {
    margin: 10px 0 !important;
    font-size: 15px !important;
}

.orders-modern .paginationcontainer {
    min-height: 50px !important;
    margin-bottom: 40px !important;
    position: relative !important;
}

.orders-modern .pagination {
    display: flex !important;
    flex: 1 !important;
    width: 100% !important;
    position: absolute !important;
    bottom: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    list-style: none !important;
    gap: 8px !important;
    padding: 0 !important;
}

.orders-modern .page-link {
    color: #fff !important;
}

.orders-modern li.page-item {
    width: 40px !important;
    height: 40px !important;
    background: var(--p) !important;
    padding: 10px !important;
    border-radius: 50% !important;
    color: #fff !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.orders-modern .modal {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1050 !important;
    display: none;
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    outline: 0 !important;
    background: rgba(15, 23, 42, 0.32) !important;
}

#myModal .modal-dialog {
    margin: 100px auto !important;
}

#myModal .modal-dialog .modal-content .modal-body {
    background: white !important;
}

#myModal .modal-dialog .modal-content .modal-body .barinfo .bar-title {
    font-weight: 700 !important;
    color: #0f172a !important;
    font-size: 1.4rem !important;
    margin: 3px auto !important;
}

.orders-modern #asdfg .modal-dialog {
    width: 88% !important;
    max-width: 960px !important;
    margin: 120px auto !important;
}

.orders-modern #asdfg .modal-content {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
}


.orders-modern #dosyayukle.modal,
.orders-modern #chatModal.modal,
.orders-modern #iptaliademodal.modal {
    overflow-y: auto !important;
}

.orders-modern #dosyayukle .modal-dialog {
    margin: 130px auto !important;
    max-width: 540px !important;
    width: 90% !important;
    z-index: 1060 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.orders-modern #dosyayukle .modal-content {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18) !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #0f172a !important;
}

.orders-modern #dosyayukle .modal-header,
.orders-modern #dosyayukle .modal-body {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #fff !important;
    color: #0f172a !important;
}

.orders-modern #dosyayukle .modal {
    z-index: 1055 !important;
}

.orders-modern #asdfg .modal-body {
    max-height: calc(100vh - 140px) !important;
    overflow-y: auto !important;
    padding: 20px 26px 30px !important;
    background: #f4f6fb !important;
}

.orders-modern #asdfg .order-detail-container {
    padding: 18px !important;
    background: #fff !important;
    border-radius: 14px !important;
    border: 1px solid rgba(15, 23, 42, 0.04) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
    /* margin-bottom: 16px !important; */
}

.orders-modern #asdfg .item-order {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 14px !important;
    padding: 9px 14px !important;
    margin-bottom: 12px !important;
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    /* gap: 16px !important; */
    align-items: center !important;
}

.orders-modern #asdfg .item-order b {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .item-order .date14px,
.orders-modern #asdfg .item-order span {
    font-size: 13px !important;
    color: #4b5563 !important;
    line-height: 1.4 !important;
}

.orders-modern #asdfg .item-order img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    background: #f4f4f8 !important;
}

.orders-modern #asdfg .order-number-title {
    display: grid !important;
    gap: 6px !important;
    margin-bottom: 18px !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .order-number-title b {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .detail-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 0 0 12px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.orders-modern #asdfg .detail-header-left {
    display: grid !important;
    gap: 6px !important;
}

.orders-modern #asdfg .detail-orderno {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .detail-meta-row {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #4b5563 !important;
}

.orders-modern #asdfg .detail-meta-row .label {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .detail-meta-row .value {
    font-weight: 500 !important;
    color: #4b5563 !important;
}

.orders-modern #asdfg .detail-close {
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 50% !important;
    width: 25px !important;
    height: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    cursor: pointer !important;
    margin-right: 5px !important;
    margin-top: -20px !important;
}

.orders-modern #asdfg .detail-close img {
    width: 16px !important;
    height: 16px !important;
}

.orders-modern #asdfg .detail-items {
    /* margin: 14px 0 !important; */
}

.orders-modern #asdfg .detail-card {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06) !important;
}

.orders-modern #asdfg .detail-card.summary-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    justify-content: start !important;
    align-items: start !important;
}

.orders-modern #asdfg .detail-card h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .detail-line {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 8px !important;
    font-size: 1.05rem !important;
    color: #4b5563 !important;
    margin-bottom: 6px !important;
}

.orders-modern #asdfg .detail-line b {
    position: relative !important;
    display: inline-block !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    min-width: 50px !important;
    max-width: 50px !important;
    white-space: normal !important;
    word-break: break-word !important;
}

.orders-modern #asdfg .detail-line b::before {
    content: ":" !important;
    position: absolute !important;
    right: -8px !important;
    top: 0 !important;
}

.orders-modern #asdfg .timeline-card {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 14px !important;
    padding: 16px !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06) !important;
}

.orders-modern #asdfg .timeline-grid-inner {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 14px !important;
    margin: 12px 0 !important;
}

.orders-modern #asdfg .timeline-status {
    display: grid !important;
    gap: 6px !important;
    color: #4b5563 !important;
}

.orders-modern #asdfg .modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 18px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
    background: #fff !important;
}

.orders-modern #asdfg .modal-header h3,
.orders-modern #asdfg .detail-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .order-detail-close img {
    width: 15px !important;
    height: 15px !important;
}

.orders-modern #asdfg .shipping-summary {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 16px !important;
    margin: 20px 0 !important;
}

.orders-modern #asdfg .shipping-summary h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    color: #0f172a !important;
}

.orders-modern #asdfg .shipping-summary b {
    color: #0f172a !important;
}

.orders-modern #asdfg .basket-navigation {
    background: #fff !important;
    border: 1px solid var(--p) !important;
    border-radius: 12px !important;
    padding: 12px 10px !important;
    min-height: 130px !important;
    text-align: center !important;
    display: flex !important;
    gap: 0px !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.orders-modern #asdfg .basket-navigation p:first-child {
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    color: var(--p) !important;
}

.orders-modern #dosyayukle .upload-modal {
    padding: 10px 6px 24px !important;
}

.orders-modern #dosyayukle .upload-dropzone {
    border: 1px dashed rgba(15, 23, 42, 0.18) !important;
    border-radius: 16px !important;
    background: #f9fafc !important;
    padding: 24px !important;
    display: grid !important;
    gap: 10px !important;
    justify-items: center !important;
}

.orders-modern #dosyayukle .upload-icon img {
    width: 84px !important;
    height: 84px !important;
}

.orders-modern #dosyayukle .upload-title {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern #dosyayukle .upload-subtitle {
    color: #6b7280 !important;
    font-size: 14px !important;
}

.orders-modern #dosyayukle .upload-actions {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 4px !important;
    flex-wrap: wrap !important;
}

.orders-modern #dosyayukle .upload-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 18px !important;
    border-radius: 30px !important;
    background: #0f172a !important;
    color: #fff !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16) !important;
}

.orders-modern #dosyayukle .upload-btn.ghost {
    background: var(--p) !important;
}

.orders-modern #dosyayukle .upload-hint {
    font-size: 12px !important;
    color: #9ca3af !important;
}

.orders-modern #dosyayukle .loadingbar {
    margin-top: 14px !important;
    display: none !important;
    gap: 6px !important;
}

.orders-modern #dosyayukle .preloader-container {
    width: 100% !important;
    background: #e5e7eb !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.orders-modern #dosyayukle .total-loaded {
    width: 0% !important;
    background: var(--p) !important;
    color: #fff !important;
    padding: 6px 0 !important;
    transition: width 0.2s ease !important;
}

.orders-modern #dosyayukle .loading-status {
    font-size: 13px !important;
    color: #6b7280 !important;
}

.orders-modern #dosyayukle .commandUpload {
    display: none !important;
}

.orders-modern .order-inline {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06) !important;
    margin-bottom: 14px !important;
}

.orders-modern .order-inline-header {
    display: grid !important;
    grid-template-columns: 60px 1fr auto 36px !important;
    gap: 12px !important;
    align-items: center !important;
}

.orders-modern .order-inline-thumb img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}

.orders-modern .order-inline-meta {
    display: grid !important;
    gap: 4px !important;
    color: #4b5563 !important;
}

.orders-modern .order-inline-meta .label {
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-right: 6px !important;
}

.orders-modern .order-inline-meta .value {
    color: #111827 !important;
}

.orders-modern .order-inline-amount {
    display: grid !important;
    gap: 6px !important;
    justify-items: end !important;
    text-align: right !important;
}

.orders-modern .order-inline-amount .payment-type {
    color: #6b7280 !important;
    font-weight: 600 !important;
}

.orders-modern .order-inline-amount .payment-sum {
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

.orders-modern .order-inline-amount .open-filemodal {
    padding: 8px 14px !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.orders-modern .order-inline-more {
    justify-self: end !important;
    cursor: pointer !important;
    color: #6b7280 !important;
}

.orders-modern .orders-detail {
    display: none !important;
    flex-direction: column !important;
    /* gap: 16px !important; */
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
}

.orders-modern .order-detail-container.active-detail {
    display: flex !important;
}

.orders-modern .detail-header {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10px !important;
}

.orders-modern .detail-header-left {
    display: grid !important;
    gap: 6px !important;
}

.orders-modern .detail-orderno {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern .detail-meta-row {
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
    color: #4b5563 !important;
}

.orders-modern .detail-meta-row .label {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern .detail-meta-row .value {
    color: #111827 !important;
}

.orders-modern .detail-close,
.orders-modern .modal-header .close {
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08) !important;
    cursor: pointer !important;
    padding: 0 !important;
    opacity: 1 !important;
    color: #111827 !important;
    line-height: 1 !important;
}

.orders-modern .detail-close img,
.orders-modern .modal-header .close img,
.orders-modern .modal-header .close svg {
    width: 14px !important;
    height: 14px !important;
}

.orders-modern .detail-close:hover,
.orders-modern .modal-header .close:hover {
    background: #f3f4f6 !important;
}

.orders-modern .detail-items {
    display: grid !important;
    gap: 12px !important;
}

.orders-modern .item-order {
    display: grid !important;
    grid-template-columns: 96px 1fr !important;
    gap: 14px !important;
    align-items: center !important;
    padding: 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    border-radius: 12px !important;
    background: #fdfdfd !important;
}

.orders-modern .item-order img {
    width: 96px !important;
    height: 96px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}

.orders-modern .item-order .item-info {
    display: grid !important;
    gap: 4px !important;
    color: #4b5563 !important;
}

.orders-modern .item-order .item-info b {
    color: #0f172a !important;
    font-size: 15px !important;
}

.orders-modern .item-order .item-info .item-color {
    color: #6b7280 !important;
}

.orders-modern .shipping-summary {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 14px !important;
}

.orders-modern .detail-card {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    display: grid !important;
    gap: 8px !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05) !important;
}

.orders-modern .detail-card h3 {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
}

.orders-modern .detail-line {
    display: flex !important;
    justify-content: space-between !important;
    gap: 10px !important;
    color: #4b5563 !important;
    font-size: 13px !important;
}

.orders-modern .detail-line b {
    color: #0f172a !important;
}

.orders-modern .detail-line span {
    text-align: start !important;
    margin-left: 5px !important;
}

.orders-modern .orders-filter {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04) !important;
    margin-bottom: 12px !important;
}

.orders-modern .orders-filter-inner {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.orders-modern .orders-filter label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.orders-modern .orders-filter input[type="radio"] {
    display: none !important;
}

.orders-modern .orders-filter .filter-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 14px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    background: #f8fafc !important;
    color: #4b5563 !important;
    font-weight: 700 !important;
    transition: all .15s ease !important;
}

.orders-modern .orders-filter input[type="radio"]:checked+.filter-pill {
    background: var(--p) !important;
    color: #fff !important;
    border-color: var(--p) !important;
}

.orders-modern .orders-filter .filter-pill:hover {
    border-color: rgba(15, 23, 42, 0.26) !important;
}

.orders-modern .orders-tabs {
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin: 6px 0 !important;
    border: none !important;
}

.orders-modern .orders-tabs .nav-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    color: #0f172a !important;
    background: #f8fafc !important;
    font-weight: 700 !important;
    transition: all .16s ease !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05) !important;
}

.orders-modern .orders-tabs .nav-link .order-count {
    min-width: 26px !important;
    height: 26px !important;
    padding: 0 8px !important;
    border-radius: 12px !important;
    background: rgba(15, 23, 42, 0.06) !important;
    color: #0f172a !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.orders-modern .orders-tabs .nav-link.active {
    background: linear-gradient(145deg, var(--p), #b11119) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.orders-modern .orders-tabs .nav-link.active .order-count {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.orders-modern .orders-tabs .nav-link:hover:not(.active) {
    border-color: rgba(217, 31, 38, 0.35) !important;
    color: #b11119 !important;
}

.orders-modern .orders-tabs .nav-item {
    margin-bottom: 0 !important;
}

.orders-modern .order-list-card {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 16px !important;
    padding: 16px 18px !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06) !important;
    margin-bottom: 14px !important;
}

.orders-modern .order-list-card .order-preview {
    display: grid !important;
    grid-template-columns: 64px 1fr auto 100px 36px !important;
    gap: 14px !important;
    align-items: center !important;
}

.orders-modern .order-list-card .product-image img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    background: #f5f6fa !important;
    padding: 6px !important;
}

.orders-modern .order-list-card .order-info {
    display: grid !important;
    width: 100% !important;
    justify-content: start !important;
}

.orders-modern .order-list-card .order-meta {
    display: grid !important;
    justify-content: start !important;
    gap: 4px !important;
    color: #4b5563 !important;
    font-size: 13px !important;
}

.orders-modern .order-list-card .meta-line {
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
}

.orders-modern .order-list-card .meta-line .label {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern .order-list-card .meta-line .value {
    color: #1f2937 !important;
}

.orders-modern .order-list-card .order-title {
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    font-size: 14px !important;
}

.orders-modern .order-list-card .order-title .label {
    font-weight: 800 !important;
    color: var(--p) !important;
}

.orders-modern .order-list-card .order-title .value {
    font-weight: 700 !important;
    color: #0f172a !important;
}

.orders-modern .order-list-card .amount {
    display: grid !important;
    gap: 6px !important;
    justify-items: end !important;
    text-align: right !important;
}

.orders-modern .order-list-card .amount .payment-type {
    color: #6b7280 !important;
    font-weight: 600 !important;
}

.orders-modern .order-list-card .amount .payment-sum {
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

.orders-modern .order-list-card .amount .invoice-link {
    font-size: 12px !important;
    color: var(--p) !important;
    font-weight: 700 !important;
}

.orders-modern .order-list-card .order-status {
    font-weight: 800 !important;
    color: var(--p) !important;
    text-align: right !important;
}

.orders-modern .order-list-card .more-icon {
    justify-self: end !important;
    cursor: pointer !important;
    color: #6b7280 !important;
    transition: color .12s ease !important;
    font-size: 18px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f7f9fb !important;
    z-index: 2 !important;
}

.orders-modern .order-list-card .more-icon:hover {
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.16) !important;
    background: #fff !important;
}

@media (max-width: 992px) {
    .orders-modern .order-list-card .order-preview {
        grid-template-columns: 56px 1fr auto !important;
        grid-template-areas:
            "thumb info more"
            "thumb amount more"
            "thumb status more" !important;
    }

    .orders-modern .order-list-card .product-image {
        grid-area: thumb !important;
    }

    .orders-modern .order-list-card .order-info {
        grid-area: info !important;
    }

    .orders-modern .order-list-card .amount {
        grid-area: amount !important;
    }

    .orders-modern .order-list-card .order-status {
        grid-area: status !important;
    }

    .orders-modern .order-list-card .more-icon {
        grid-area: more !important;
    }
}

@media (max-width: 576px) {
    .orders-modern .order-list-card .order-preview {
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto auto !important;
    }

    .orders-modern .order-list-card .product-image {
        grid-column: 1 / 3 !important;
        justify-self: start !important;
    }

    .orders-modern .order-list-card .amount,
    .orders-modern .order-list-card .order-status,
    .orders-modern .order-list-card .more-icon {
        justify-self: start !important;
        text-align: left !important;
    }
}

.orders-modern .modal.in .modal-dialog {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

.orders-modern .modal.fade .modal-dialog {
    transition: all .25s ease !important;
    transform: translate(0, -10px) !important;
    opacity: 0;
}

.orders-modern .modal-dialog {
    position: relative !important;
    width: auto !important;
    margin: 10px !important;
}

.orders-modern .modal-content {
    background-color: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.orders-modern .modal-header {
    padding: 16px 18px !important;
    border-bottom: 1px solid #eef0f5 !important;
}

.orders-modern .modal-title {
    margin: 0 !important;
    line-height: 1.4 !important;
}

.orders-modern .modal-body {
    padding: 16px 18px !important;
}

.orders-modern .modal-footer {
    padding: 14px 18px !important;
    border-top: 1px solid #eef0f5 !important;
}

@media (max-width: 992px) {
    .orders-modern .order-preview {
        grid-template-columns: 56px 1fr auto !important;
        grid-template-rows: auto auto !important;
        grid-auto-flow: row !important;
    }

    .orders-modern .order-status {
        grid-column: 3 / 4 !important;
        grid-row: 1 / 2 !important;
    }

    .orders-modern .more-icon {
        grid-column: 3 / 4 !important;
        grid-row: 2 / 3 !important;
    }
}

@media (max-width: 576px) {
    .orders-modern .order-preview {
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto auto !important;
    }

    .orders-modern .product-image {
        display: none !important;
    }

    .orders-modern .order-number {
        grid-column: 1 / 3 !important;
    }

    .orders-modern .amount {
        grid-column: 1 / 2 !important;
    }

    .orders-modern .order-status,
    .orders-modern .more-icon {
        grid-column: 2 / 3 !important;
        justify-self: end !important;
    }
}


.modern-gap-12.wallet-gap {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.modern-wallet-container {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.wallet-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.wallet-balance-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    perspective: 900px !important;
}

.wallet-balance-card {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    background: #fff !important;
    display: grid !important;
    gap: 6px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transition: transform .22s ease, border-color .24s ease, background .24s ease, color .22s ease, opacity .22s ease !important;
    transform-origin: center center !important;
    transform: translateZ(0) scale(1) !important;
}

.wallet-balance-card.total {
    background: #fce7d3 !important;
}

.wallet-balance-card.available {
    background: #dff0fb !important;
}

.wallet-balance-card.gift {
    background: #dff6dd !important;
}

.wallet-balance-label {
    font-weight: 400 !important;
    color: #374151 !important;
    font-size: 1.25rem !important;
}

.wallet-balance-value {
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 2.4rem !important;
}

.wallet-balance-card::after,
.wallet-balance-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

.wallet-balance-card::before {
    background: radial-gradient(230px 180px at 10% 20%, rgba(255, 255, 255, 0.65), transparent 60%),
        radial-gradient(240px 200px at 85% 80%, rgba(255, 255, 255, 0.45), transparent 60%) !important;
    opacity: .65 !important;
}

.wallet-balance-card::after {
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%) !important;
    transform: translateX(-140%) rotate(6deg) !important;
    transition: transform .65s ease !important;
    opacity: .7 !important;
}

.wallet-balance-card:hover {
    transform: translateY(-4px) scale(1.01) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) !important;
    border-color: rgba(15, 23, 42, 0.18) !important;
    background: #fff !important;
}

.wallet-balance-card:hover::after {
    transform: translateX(120%) rotate(6deg) !important;
}

.wallet-balance-card:hover .wallet-balance-value {
    color: var(--p) !important;
    transform: translateY(-1px) !important;
}

.wallet-balance-card.is-animating {
    animation: walletFloat 1.5s ease forwards !important;
    opacity: 1 !important;
}

@keyframes walletFloat {
    0% {
        transform: translateY(12px) scale(0.98);
        opacity: 0;
    }

    55% {
        transform: translateY(-3px) scale(1.02);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.wallet-balance-card.inactive-start {
    opacity: 0 !important;
    transform: translateY(12px) scale(0.98) !important;
}

.modern-wallet-card {
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 16px !important;
    padding: 14px !important;
    background: #fff !important;
    display: grid !important;
    gap: 0 !important;
    margin-bottom: 24px !important;
}

.modern-wallet-banner {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr !important;
    gap: 18px !important;
    padding: 14px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #fff, #f8fbff) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.modern-wallet-banner::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(320px 220px at 12% 15%, rgba(210, 31, 38, 0.06), transparent 60%),
        radial-gradient(280px 200px at 88% 85%, rgba(15, 23, 42, 0.05), transparent 60%) !important;
    pointer-events: none !important;
}

.modern-wallet-banner-visual {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modern-wallet-banner-visual img {
    width: 100% !important;
    max-height: 240px !important;
    object-fit: contain !important;
    transition: transform .4s ease !important;
}

.modern-wallet-banner:hover .modern-wallet-banner-visual img {
    transform: scale(1.03) !important;
}

.modern-wallet-actions {
    display: grid !important;
    gap: 10px !important;
    align-content: center !important;
    justify-items: flex-start !important;
}

.modern-wallet-action-row .paraekle {
    background: var(--p) !important;
    color: #fff !important;
}

.modern-wallet-action-row {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.modern-wallet-subtext {
    margin: 0 !important;
    color: #4b5563 !important;
    font-size: 14px !important;
}

.modern-wallet-payment-types {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important; */
    gap: 10px !important;
    margin-top: 17px !important;
    flex-direction: column;
}

.modern-wallet-payment-types.wallet-hidden {
    display: none;
}

.modern-wallet-payment-types.show {
    display: grid;
}

.modern-wallet-payment-type {
    animation: walletPanel .3s ease forwards !important;
}

.modern-wallet-radio {
    padding: 0 !important;
}

.iban-card {
    margin-top: 14px !important;
    border-radius: 16px !important;
    background: #fff !important;
    border: 1px solid #eef1f5 !important;
    /* box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important; */
    overflow: hidden !important;
}

.iban-card__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    background: var(--p) !important;
    border-bottom: 1px solid #eef1f5 !important;
}

.iban-card__title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 0 !important;
    letter-spacing: .2px !important;
}

.iban-card__copy {
    border: 1px solid rgba(210, 31, 38, 0.28) !important;
    background: #fff !important;
    color: #d21f26 !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;
    cursor: pointer !important;
    transition: 160ms ease !important;
    line-height: 1 !important;
}

.iban-card__copy:hover {
    border-color: #d21f26 !important;
    transform: translateY(-1px) !important;
}

.iban-card__copy:active {
    transform: translateY(0) !important;
}

.iban-toast {
    margin: 10px 16px 0 !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    background: rgba(22, 163, 74, 0.10) !important;
    border: 1px solid rgba(22, 163, 74, 0.25) !important;
    color: #166534 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.iban-toast.is-show {
    display: block !important;
    animation: ibanToastIn 140ms ease-out !important;
}

@keyframes ibanToastIn {
    from {
        opacity: 0 !important;
        transform: translateY(-4px) !important;
    }

    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.iban-card__body {
    padding: 14px 16px 16px !important;
}

.iban-row {
    display: grid !important;
    grid-template-columns: 130px 1fr !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    border-bottom: 1px dashed #eef1f5 !important;
}

.iban-row:last-of-type {
    border-bottom: 0 !important;
}

.iban-label {
    display: flex !important;
    justify-content: start !important;
    align-items: center !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: .6px !important;
}

.iban-value {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
}

#ibanValue {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    letter-spacing: .6px !important;
    background: #f8fafc !important;
    border: 1px solid #eef1f5 !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    display: inline-block !important;
    width: fit-content !important;
}

.iban-note {
    display: block !important;
    /* margin-top: 12px !important; */
    padding: 12px 14px !important;
    border-radius: 14px !important;
    border: 1px solid #eef1f5 !important;
    background: #fbfcfe !important;
    color: #334155 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.iban-note b {
    color: #0f172a !important;
}

@media (max-width: 640px) {
    .iban-row {
        grid-template-columns: 1fr !important;
    }

    #ibanValue {
        width: 100% !important;
    }
}

.modern-wallet-balance {
    display: none;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 14px !important;
    background: #fff !important;
    margin-top: 10px !important;
}

.modern-wallet-balance.show {
    display: block;
    animation: walletPanel .32s ease forwards !important;
}

.wallet-info-box {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    margin: 0 0 14px 0 !important;
}

.wallet-info-box__icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 36px !important;
    border: 1px solid rgba(210, 31, 38, 0.22) !important;
    background: rgba(210, 31, 38, 0.06) !important;
    color: #d21f26 !important;
    font-size: 16px !important;
}

.wallet-info-box__content {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 1 !important;
}

.wallet-info-box__title {
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.wallet-info-box__text {
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

@media (max-width: 576px) {
    .wallet-info-box {
        padding: 12px 12px !important;
        border-radius: 14px !important;
    }

    .wallet-info-box__icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 11px !important;
        flex-basis: 34px !important;
    }
}

.modern-wallet-radio .payment-type-item {
    border: 1px solid var(--p) !important;
    background: #fff !important;
    color: var(--p) !important;
    justify-content: center !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
}

.modern-wallet-radio .payment-type-item .checkmark {
    position: static !important;
    margin-right: 8px !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    border: 1px solid var(--p) !important;
}

.modern-wallet-radio .payment-type-item:hover {
    background: var(--soft) !important;
}

.modern-wallet-radio input:checked+.checkmark+.text-left,
.modern-wallet-radio input:checked~.text-left {
    color: var(--p) !important;
}

.modern-wallet-radio input:checked+.checkmark,
.modern-wallet-radio input:checked~.checkmark,
.modern-wallet-radio input:checked~.payment-type-item {
    background: var(--p) !important;
    border-color: var(--p) !important;
}

.credit-actions,
.eft-actions {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    align-items: flex-end !important;
}

.eft-actions {
    display: none !important;
}

.modern-wallet-form {
    /* margin-top: 10px !important; */
}

.modern-wallet-balance {
    background: linear-gradient(135deg, #fff, #f9fbff) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 18px !important;
    padding: 18px !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
}

.modern-wallet-balance-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    justify-content: start !important;
    align-items: start !important;
}

.wallet-input-block {
    display: grid !important;
    gap: 8px !important;
}

.wallet-action-block {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

.modern-wallet-input {
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    border-radius: 14px !important;
    padding: 8px 12px !important;
    height: 39px !important;
    font-size: 15px !important;
    background: #fff !important;
    transition: border-color .2s ease, transform .15s ease !important;
}

.modern-wallet-input:focus {
    border-color: var(--p) !important;
    outline: none !important;
    transform: translateY(-1px) !important;
}

.modern-wallet-btn {
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 11px !important;
    padding: 4px 12px !important;
    font-weight: 400 !important;
    font-size: 1.25rem !important;
    margin: 0 !important;
    height: 39px !important;
    transition: background .22s ease, border-color .22s ease, transform .15s ease !important;
}

.modern-wallet-btn.primary {
    background: linear-gradient(135deg, var(--p), var(--p2)) !important;
    color: #fff !important;
    border: 1px solid var(--p2) !important;
}

.modern-wallet-btn.primary:hover {
    background: linear-gradient(135deg, var(--p2), var(--p3)) !important;
    border-color: var(--p3) !important;
    transform: translateY(-1px) !important;
    color: white !important;
}

.modern-wallet-btn.ghost {
    background: #fff !important;
    color: var(--p) !important;
    border: 1px solid rgba(210, 31, 38, 0.45) !important;
}

.modern-wallet-btn.ghost:hover {
    background: rgba(210, 31, 38, 0.06) !important;
}

.wallet-input-block label {
    color: #475569 !important;
    font-weight: 700 !important;
}

.wallet-input-block .modern-wallet-hint {
    margin: 2px 0 0 !important;
    color: #94a3b8 !important;
    font-size: 12px !important;
}

.modern-wallet-payment-types .text-left {
    font-weight: 700 !important;
    color: #111827 !important;
}

.modern-wallet-radio input:checked~.text-left {
    color: #fff !important;
}

.modern-wallet-radio input:checked~.payment-type-item {
    background: var(--p) !important;
    color: #fff !important;
    border-color: var(--p) !important;
}

.wallet-actions-box {
    display: flex !important;
    width: 100% !important;
    justify-content: start;
    align-items: end;
    gap: 14px !important;
}

@media (max-width: 992px) {
    .wallet-actions-box {
        grid-template-columns: 1fr !important;
    }

    .wallet-action-block {
        justify-content: stretch !important;
    }

    .modern-wallet-btn {
        width: 100% !important;
        text-align: center !important;
    }
}

.modern-wallet-btn-col {
    display: flex !important;
    align-items: flex-end !important;
}

.modern-wallet-label {
    font-weight: 700 !important;
}

.modern-wallet-input {
    width: 100% !important;
    border-radius: 12px !important;
}

.modern-wallet-hint {
    margin: 6px 0 0 !important;
    color: #6b7280 !important;
    font-size: 12px !important;
}

form .modern-field label {
    font-size: 1.25rem !important;
}

@keyframes walletPanel {
    0% {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .modern-wallet-banner {
        grid-template-columns: 1fr !important;
    }

    .modern-wallet-banner-visual img {
        max-height: 200px !important;
    }

    .modern-wallet-card {
        padding: 12px !important;
    }


    .modern-footer {
        padding: 20px 0 0 !important;
    }

    .modern-footer-grid {
        justify-content: center !important;
        padding: 40px !important;
    }

    .modern-footer-col.logo-col {
        margin: 0 auto;
        max-width: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0;
    }

    .modern-footer-col.logo-col img {
        margin-bottom: 0 !important;
    }

    .logo-col .footer-socials,
    .logo-col .footer-tags {
        justify-content: center !important;
    }

    .modern-footer-col {
        width: 100% !important;
    }

    .modern-footer-heading {
        margin-bottom: 10px !important;
        font-size: 1.3rem !important;
    }

    .modern-footer-col div img {
        height: auto !important;
    }

    .modern-card {
        padding: 10px !important;
    }

    .modern-card h1 {
        padding-left: 30px !important;
    }

    .bg-beige {
        padding-top: 3rem !important;
    }

    .content-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .btn-edit-address {
        display: flex !important;
    }

    .modern-sidebar .hoverlink:has(a.active)::before {
        content: "" !important;
        position: absolute !important;
        left: 5px !important;
        top: 16px !important;
        bottom: 10px !important;
        width: 4px !important;
        height: 4px !important;
        background: var(--profile-accent) !important;
    }

    .modern-field label {
        font-size: 1.25rem !important;
    }
}