@import url("colors.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
    --default-font: "Inter", "Segoe UI", sans-serif;
    --display-font: "Montserrat", "Inter", sans-serif;
    --action-bar-size: 60px;
    --max-body-width: 1400px;
    --dialog-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.98) 100%);
    --dialog-surface-strong: rgba(255, 255, 255, 0.9);
    --dialog-border: rgba(203, 213, 225, 0.92);
    --dialog-shadow: 0 30px 76px rgba(15, 23, 42, 0.18);
    --dialog-shadow-soft: 0 18px 42px rgba(15, 23, 42, 0.1);
    --dialog-overlay: linear-gradient(180deg, rgba(226, 232, 240, 0.24) 0%, rgba(148, 163, 184, 0) 100%);
    --dialog-backdrop: linear-gradient(135deg, rgba(11, 61, 61, 0.58) 0%, rgba(0, 157, 143, 0.18) 100%);
    --dialog-backdrop-shadow: radial-gradient(circle at top right, rgba(61, 214, 198, 0.14) 0%, rgba(61, 214, 198, 0) 28%);
    --dialog-title: #0f172a;
    --dialog-text: #0f172a;
    --dialog-muted: #64748b;
    --dialog-accent: var(--jc-amber);
    --dialog-accent-soft: rgba(0, 157, 143, 0.12);
    --dialog-close-bg: rgba(148, 163, 184, 0.12);
    --dialog-close-border: rgba(148, 163, 184, 0.26);
    --dialog-close-color: #0f172a;
    --dialog-radius: 28px;
    --dialog-radius-sm: 20px;
    --dialog-width-sm: 380px;
    --dialog-width-md: 680px;
    --dialog-width-lg: 1120px;
}

@media screen and (max-width: 991px) {
    .large_visibility {
        display: none !important;
    }

    .small_visibility {
        display: flex !important;
    }
}

@media screen and (min-width: 992px) {
    .large_visibility {
        display: flex !important;
    }

    .small_visibility {
        display: none !important;
    }
}

@media all and (display-mode: standalone) {
    .popup_btn {
        display: inline-flex !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
    font-family: var(--default-font);
    color: var(--heading);
    margin: 0;
    padding: 0;
    background-color: var(--body_background);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, legend {
    font-family: var(--display-font);
    letter-spacing: -0.02em;
}

article, aside, figure, footer, header, hgroup,
menu, nav, section, main, details, figcaption, figure, summary { /*meant to unify these so old browsers will treat them as blocks*/
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

[contenteditable] { /*makes div editable in safari*/
    -webkit-user-select: text;
    user-select: text;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
    color: var(--colorPrimary);
}

textarea {
    resize: none;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='number']:focus,
[type='text'].form-control:focus,
[type='password'].form-control:focus,
[type='email'].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 transparent;
}

.body_background {
    background-color: var(--body_background) !important;
}

.body_background_90 {
    background-color: var(--body_background_90) !important;
}

.bg_transparent_10 {
    background: var(--transparent_10) !important;
}

.transparent_20{
    background: var(--transparent_20)!important;
}

.custom_scroll {
    padding-right: 10px !important;
    padding-bottom: 10px !important;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.fast-spin {
    -webkit-animation: fa-spin 1s infinite linear;
    animation: fa-spin 1s infinite linear;
}

.text_primary {
    color: var(--colorPrimary) !important;
}

.text_secondary {
    color: var(--colorSecondary) !important;
}

.btn-link:hover {
    color: var(--colorSecondary) !important;
}

.btn_primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    border: 1px solid rgba(10, 111, 105, 0.28);
    border-radius: var(--jc-radius-lg);
    padding: 0.72rem 1.15rem;
    background: linear-gradient(135deg, var(--jc-amber) 0%, var(--jc-amber-dark) 100%) !important;
    color: #ffffff !important;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-shadow: none;
    box-shadow: 0 14px 28px rgba(10, 111, 105, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn_primary:hover, .btn_primary:focus {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(10, 111, 105, 0.28);
    filter: saturate(1.05);
}

.btn_primary:active {
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(10, 111, 105, 0.2);
}

.btn_primary.btn-sm {
    min-height: 36px;
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    font-size: 0.82rem;
}

.bg_primary {
    background: linear-gradient(135deg, var(--jc-navy) 0%, var(--jc-navy-2) 58%, var(--jc-panel) 100%) !important;
    color: var(--jc-white);
}

.btn_red {
    color: var(--white);
    background: linear-gradient(to bottom right, var(--red), var(--maroon));
    border-radius: 10px;
}

.btn_red:hover {
    background: linear-gradient(to bottom right, var(--maroon), var(--red));
}

.input_primary {
    background: var(--transparent_10) !important;
    color: var(--transparent_50);
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid var(--grey);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

.input_primary:focus {
    border: 2px solid var(--colorSecondary);
}

.tooltip-inner {
    background-color: var(--heading) !important;
    color: #ffffff !important;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(11, 61, 61, 0.2);
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: var(--heading) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: var(--heading) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: var(--heading) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: var(--heading) !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--royalBlue) !important;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--royalBlue) !important;
}

video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Adjust as needed */
}

.img_scale, .vid_scale {
    cursor: zoom-in;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
}

.clear {
    clear: both;
}

.no-overflow {
    overflow: hidden;
}

.hidden {
    display: none;
}

.margin-auto {
    margin: 0 auto;
}

.transparent {
    background: var(--transparent_0);
    border: none;
    outline: none !important;
}

.transparent::-moz-focus-inner, .transparent::-moz-focus-inner {
    border: 0;
}

.ellipse {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.pointer {
    cursor: pointer;
}

.disable_scroll {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chip_group {
    margin: 5px;
}

.chip {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    height: auto;
    font-size: 14px;
    border-radius: 15px;
    background-color: var(--body_background);
    border: 1px solid var(--colorSecondary);
}

.chip:hover {
    background: var(--body_background);
    cursor: pointer;
}

.modal-backdrop.show {
    opacity: 1;
    background:
        var(--dialog-backdrop-shadow),
        rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(10px);
}

.modal {
    padding: 1rem !important;
}

.modal-dialog {
    margin: 1.25rem auto;
    max-width: min(calc(100vw - 2rem), 560px);
}

.modal-dialog.modal-sm {
    max-width: min(calc(100vw - 2rem), var(--dialog-width-sm));
}

.modal-dialog.modal-lg {
    max-width: min(calc(100vw - 2rem), 900px);
}

.modal-dialog.modal-xl {
    max-width: min(calc(100vw - 2rem), var(--dialog-width-lg));
}

.modal-content,
#dialog_content {
    color: var(--dialog-text);
    border: 1px solid var(--dialog-border);
    border-radius: var(--dialog-radius);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 26%),
        var(--dialog-surface);
    box-shadow: var(--dialog-shadow);
    overflow: hidden;
}

.modal-content::before,
#dialog_content::before {
    content: "";
    display: block;
    height: 1px;
    background: var(--dialog-overlay);
}

.modal-header,
.modal-body,
.modal-footer,
#dialog_content > header,
#dialog_content > main,
#dialog_content > footer {
    position: relative;
    z-index: 1;
}

.modal-header,
#dialog_content > header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 78px;
    padding: 1.15rem 1.35rem 1rem;
    border-bottom: 1px solid var(--dialog-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 100%);
}

.modal-body,
#dialog_content > main {
    padding: 1.2rem 1.35rem 1.35rem;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.48) transparent;
}

.modal-footer,
#dialog_content > footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.35rem 1.2rem;
    border-top: 1px solid var(--dialog-border);
    background: linear-gradient(180deg, rgba(226, 232, 240, 0) 0%, rgba(226, 232, 240, 0.42) 100%);
    text-align: right;
}

.modal-header:empty,
.modal-footer:empty,
#dialog_content > header:empty,
#dialog_content > footer:empty {
    display: none;
}

.modal-header .normal_dialog_header,
.modal-header > header,
.modal-header > span:not(.close),
#dialog_content > header .normal_dialog_header,
#dialog_content > header > header,
#dialog_content > header > span:not(.close) {
    flex: 1 1 auto;
    min-width: 0;
}

.modal-header .close,
.modal-header button.close,
#dialog_close button,
#dialog_content > header .close,
#dialog_content > header button.close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 0 0 auto;
    padding: 0;
    border: 1px solid var(--dialog-close-border);
    border-radius: 999px;
    background: var(--dialog-close-bg);
    color: var(--dialog-close-color);
    opacity: 1;
    text-shadow: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.modal-header .close:hover,
.modal-header .close:focus,
.modal-header button.close:hover,
.modal-header button.close:focus,
#dialog_close button:hover,
#dialog_close button:focus,
#dialog_content > header .close:hover,
#dialog_content > header .close:focus,
#dialog_content > header button.close:hover,
#dialog_content > header button.close:focus {
    outline: none;
    color: var(--dialog-close-color);
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.modal-header .close span,
.modal-header button.close span,
#dialog_close button span,
#dialog_content > header .close span,
#dialog_content > header button.close span {
    line-height: 1;
}

.modal-body > :last-child,
.modal-footer > :last-child,
#dialog_content > main > :last-child,
#dialog_content > footer > :last-child {
    margin-bottom: 0;
}

#dialog_background {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background:
        var(--dialog-backdrop-shadow),
        var(--dialog-backdrop);
    backdrop-filter: blur(12px);
    display: none;
}

#dialog_shell {
    position: fixed;
    inset: 0;
    z-index: 1070;
    display: none;
    pointer-events: none;
}

#dialog_close {
    position: fixed;
    z-index: 1071;
    right: max(1rem, env(safe-area-inset-right));
    top: max(1rem, env(safe-area-inset-top));
    font-size: 1rem;
    pointer-events: auto;
}

#dialog_content {
    --dialog-max-width: var(--dialog-width-md);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1072;
    display: flex;
    flex-direction: column;
    width: min(calc(100vw - 1.5rem), var(--dialog-max-width));
    max-height: calc(100vh - 1.5rem);
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
    overflow: hidden;
    pointer-events: auto;
}

#dialog_content > main {
    flex: 1 1 auto;
    min-height: 0;
}

#dialog_content.dialog_sm {
    --dialog-max-width: var(--dialog-width-sm);
}

#dialog_content.dialog_md {
    --dialog-max-width: var(--dialog-width-md);
}

#dialog_content.dialog_lg {
    --dialog-max-width: var(--dialog-width-lg);
}

.normal_dialog_header {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--dialog-title);
    background: linear-gradient(135deg, var(--dialog-title) 0%, var(--dialog-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--display-font);
    font-size: clamp(1.02rem, 1.4vw, 1.28rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.normal_dialog_header i {
    font-size: 0.92em;
}

.modal-body .form-control,
.modal-body .custom-select,
.modal-body input[type='text'],
.modal-body input[type='password'],
.modal-body input[type='email'],
.modal-body input[type='number'],
.modal-body textarea,
.modal-body select,
#dialog_content > main .form-control,
#dialog_content > main .custom-select,
#dialog_content > main input[type='text'],
#dialog_content > main input[type='password'],
#dialog_content > main input[type='email'],
#dialog_content > main input[type='number'],
#dialog_content > main textarea,
#dialog_content > main select {
    border-radius: 16px;
}

.modal-body .table,
#dialog_content > main .table {
    color: inherit;
}

.modal-body .table td,
.modal-body .table th,
#dialog_content > main .table td,
#dialog_content > main .table th {
    border-color: rgba(148, 163, 184, 0.18);
}

#dialog_content > main,
#dialog_content > main table,
#dialog_content > main img,
#dialog_content > main video {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .modal {
        padding: 0.65rem !important;
    }

    .modal-dialog,
    .modal-dialog.modal-sm,
    .modal-dialog.modal-lg,
    .modal-dialog.modal-xl {
        max-width: calc(100vw - 1.3rem);
        margin: 0.65rem auto;
    }

    .modal-content,
    #dialog_content {
        border-radius: var(--dialog-radius-sm);
    }

    .modal-header,
    .modal-body,
    .modal-footer,
    #dialog_content > header,
    #dialog_content > main,
    #dialog_content > footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .modal-header,
    #dialog_content > header {
        min-height: 70px;
        padding-top: 1rem;
        padding-bottom: 0.85rem;
    }

    .modal-body,
    #dialog_content > main {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .modal-footer,
    #dialog_content > footer {
        padding-top: 0.85rem;
        padding-bottom: 1rem;
    }

    #dialog_content {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    #dialog_close {
        right: 0.75rem;
        top: 0.75rem;
    }
}

#peek_dialog {
    margin: 0;
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    top: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: var(--black);
    background: var(--transparent_90);
    display: none;
    overflow: auto;
}

#peek_close {
    top: 10px;
    right: 10px;
    position: absolute;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.28);
}

.product_preview_shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.85fr);
    gap: 1rem;
    width: min(1120px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18) 0%, rgba(96, 165, 250, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.32);
    overflow: hidden;
}

.product_preview_stage,
.product_preview_sidebar {
    min-width: 0;
}

.product_preview_stage {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.product_preview_stage_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product_preview_kicker,
.product_preview_counter {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.78rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product_preview_kicker {
    background: rgba(0, 157, 143, 0.12);
    color: var(--jc-amber-dark);
}

.product_preview_counter {
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
}

.product_preview_stage_frame {
    position: relative;
    min-height: clamp(340px, 56vw, 640px);
    padding: 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(61, 214, 198, 0.16) 0%, rgba(61, 214, 198, 0) 28%),
        linear-gradient(160deg, #f2f5f7 0%, #ffffff 45%, #e6f4f2 100%);
    border: 1px solid rgba(226, 232, 240, 0.84);
    overflow: hidden;
}

.product_preview_panels {
    height: 100%;
}

.product_preview_panel {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product_preview_panel.is_active {
    display: flex;
}

.product_preview_asset {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.product_preview_nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
    transform: translateY(-50%);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product_preview_nav:hover,
.product_preview_nav:focus {
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.2);
}

.product_preview_nav--prev {
    left: 1rem;
}

.product_preview_nav--next {
    right: 1rem;
}

.product_preview_sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 0.35rem 0;
    overflow: auto;
}

.product_preview_title {
    margin: 0;
    color: #0f172a;
    font-family: var(--display-font);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.product_preview_price_row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.7rem;
}

.product_preview_price {
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 900;
}

.product_preview_old_price {
    color: #94a3b8;
    font-size: 0.96rem;
    text-decoration: line-through;
}

.product_preview_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product_preview_meta_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.product_preview_meta_chip--accent {
    background: rgba(0, 157, 143, 0.12);
    color: var(--jc-amber-dark);
}

.product_preview_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.product_preview_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.72rem 1rem;
    border-radius: 14px;
    font-weight: 700;
}

.product_preview_btn_secondary {
    border: 1px solid rgba(203, 213, 225, 0.92);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

.product_preview_thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 0.7rem;
    align-content: start;
    overflow: auto;
    padding-right: 0.15rem;
}

.product_preview_thumb {
    width: 100%;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.55rem;
    text-align: left;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product_preview_thumb:hover,
.product_preview_thumb:focus,
.product_preview_thumb.is_active {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.38);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.product_preview_thumb_media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
}

.product_preview_thumb_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_preview_thumb_play {
    position: absolute;
    right: 0.55rem;
    bottom: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.2);
}

.product_preview_type_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
}

.product_preview_empty {
    width: min(540px, calc(100vw - 2rem));
    padding: 1.6rem 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    color: #334155;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

@media (max-width: 991px) {
    .product_preview_shell {
        grid-template-columns: 1fr;
        padding: 0.88rem;
    }

    .product_preview_stage_frame {
        min-height: clamp(280px, 72vw, 500px);
    }
}

@media (max-width: 575px) {
    #peek_dialog {
        padding: 0.65rem;
    }

    .product_preview_shell,
    .product_preview_empty {
        width: calc(100vw - 1.3rem);
        max-height: calc(100vh - 1.3rem);
    }

    .product_preview_shell {
        gap: 0.85rem;
        border-radius: 22px;
        padding: 0.75rem;
    }

    .product_preview_stage_frame {
        min-height: clamp(250px, 74vw, 400px);
        padding: 0.75rem;
    }

    .product_preview_nav {
        width: 40px;
        height: 40px;
    }

    .product_preview_nav--prev {
        left: 0.7rem;
    }

    .product_preview_nav--next {
        right: 0.7rem;
    }

    .product_preview_thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(var(--colorPrimary), var(--colorSecondary), var(--transparent_70));
    animation: loader 0.3s linear infinite;
}

.loader_sm {
    width: 20px !important;
    height: 20px !important;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(var(--colorSecondary), var(--colorPrimary), var(--transparent_90));
}

.loader span:nth-child(3) {
    filter: blur(15px);
}

.loader span:nth-child(4) {
    filter: blur(40px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: var(--black);
    background: var(--transparent_90);
    border-radius: 50%;
}

.loader_sm:after {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}

.other_container {
    max-width: var(--max-body-width);
    overflow-x: hidden;
    width: 95%;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .other_container {
        width: 100%!important;
    }
}

#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--colorPrimary);
    color: var(--colorOnPrimary);
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
    transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

#scrollBtn:hover {
    background-color: var(--colorSecondary);
    color: var(--colorOnSecondary);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
}

@media screen and (max-width: 767px) {
    #scrollBtn {
        right: 0.8rem;
        bottom: calc(6.75rem + env(safe-area-inset-bottom));
        width: 44px;
        height: 44px;
        padding: 0;
        font-size: 16px;
        line-height: 44px;
        border-radius: 14px;
    }

    #scrollBtn:hover {
        transform: none;
    }
}

.row {
    width: 100% !important;
    margin: 0;
    /*max-width: var(--max-body-width)!important;*/
}

.times, .helvetica {
    font-family: var(--default-font);
}

.circle_list li {
    list-style: circle;
}

.disc_list li {
    list-style: disc;
}

.store_ad_name {
    color: var(--heading);
    font-family: var(--display-font);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.015em;
}

.store_ad_card {
    position: relative;
    display: grid;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
    padding: 0.78rem;
    border: 1px solid rgba(251, 113, 133, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(251, 113, 133, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 250, 0.99));
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.08);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.store_ad_card:hover,
.store_ad_card:focus {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(244, 63, 94, 0.28);
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.store_ad_badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: #e11d48;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store_ad_media {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.06);
    aspect-ratio: 4 / 3;
}

.store_ad_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store_ad_body {
    display: grid;
    gap: 0.38rem;
}

.store_ad_card .store_ad_body .store_ad_name.store_ad_name {
    display: block;
    margin: 0;
    color: var(--heading) !important;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.store_ad_card .store_ad_copy {
    color: var(--text_color) !important;
    line-height: 1.55;
}

.store_ad_card .store_ad_stars.store_stars {
    display: inline-flex;
    align-items: center;
    gap: 0.16rem;
    color: #f59e0b !important;
    font-size: 0.88rem;
}

.store_ad_card .store_ad_rating_note {
    color: var(--colorPrimary) !important;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
}

.store_ad_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.08);
    color: #be123c;
    font-weight: 800;
}

.load_ad > .store_ad_card {
    width: calc(100% + 1.64rem);
    min-height: calc(100% + 1.64rem);
    margin: -0.82rem;
    border: 0;
    border-radius: inherit;
    box-shadow: none;
}

.pdt_div, .pdt_nav, .load_ad {
    cursor: pointer;
    position: relative;
    border-radius: 22px;
    width: 100%;
    padding: 0.82rem !important;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
    display: flex;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pdt_div .url{
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.72rem;
    padding: 0.58rem 0.7rem;
    border: 1px solid rgba(203, 213, 225, 0.86);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.92) 100%);
    color: var(--colorSecondary);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.pdt_div > a,
.pdt_div a.w-100 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 0;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.pdt_media {
    position: relative;
    margin-bottom: 0.82rem;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.pdt_media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.14) 100%);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.pdt_media > img{
    width: 100%;
    display: block;
    max-width: none;
    margin: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.24s ease;
}

.pdt_media > img:nth-child(2){
    display: none;
}

.pdt_div > .pdt_trigger_div {
    position: absolute;
    top: 0.72rem;
    right: 0.72rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: auto;
    padding-left: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.pdt_div:hover > .pdt_trigger_div,
.pdt_div:focus-within > .pdt_trigger_div {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pdt_div:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.pdt_div:hover .pdt_media::after,
.pdt_div:focus-within .pdt_media::after {
    opacity: 1;
}

.pdt_div:hover .pdt_media > img,
.pdt_div:focus-within .pdt_media > img {
    transform: scale(1.03);
}

.pdt_div img {
    border-radius: 5px;
}

.pdt_div a:hover {
    text-decoration: none;
}

.pdt_div .lazy {
    background: var(--light_grey);
    padding: 0;
}

.pdt_trigger_div span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pdt_trigger_div span:hover,
.pdt_trigger_div span:focus {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
}

.pdt_trigger_div .add_to_wishlist {
    margin-left: 0 !important;
}

@media (hover: none), (pointer: coarse) {
    .pdt_div > .pdt_trigger_div {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

.pdt_copy {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
}

.pdt_summary {
    display: flex;
    align-items: center;
    gap: 0.68rem;
    min-width: 0;
}

.pdt_summary_text {
    min-width: 0;
    flex: 1 1 auto;
}

.pdt_thumb {
    width: 48px;
    min-width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 999px !important;
    border: 2px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
    background: rgba(226, 232, 240, 0.92);
}

.pdt_price_row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.55rem;
}

.pdt_name {
    font-family: var(--display-font);
    font-size: 0.9rem;
    font-weight: 760;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pdt_price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--heading);
    line-height: 1.1;
}

.pdt_old_price {
    color: var(--colorSecondary) !important;
    font-size: 0.82rem;
    text-decoration: line-through;
    opacity: 0.72;
}

.pdt_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-top: 0.42rem;
}

.pdt_meta_item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 30px;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    background: rgba(0, 157, 143, 0.09);
    color: var(--colorSecondary);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.pdt_meta_item--event {
    background: rgba(0, 157, 143, 0.12);
    color: var(--jc-amber-dark);
}

.pdt_store_link {
    justify-content: space-between;
}

.pdt_store_mark {
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 157, 143, 0.12);
    color: var(--colorPrimary);
}

.pdt_store_identity {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    gap: 0.16rem;
}

.pdt_store_label {
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pdt_store_handle {
    color: var(--colorSecondary);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdt_store_arrow {
    color: #64748b;
    font-size: 0.82rem;
}

.store_stars, .pdt_stars {
    font-size: 0.9rem;
    color: var(--starOrange);
}

.pdt_countdown {
    color: var(--colorSecondary) !important;
    font-size: 0.82rem;
}

.pdt_img_tag {
    background: linear-gradient(135deg, var(--red) 0%, var(--maroon) 100%);
    min-height: 28px;
    max-width: calc(100% - 3.35rem);
    padding: 0.28rem 0.58rem;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--white) !important;
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 999px;
    box-shadow: 0 12px 20px rgba(127, 29, 29, 0.22);
}

.auction_tag {
    background: linear-gradient(135deg, var(--dark_green) 0%, var(--green) 100%);
    min-height: 28px;
    max-width: calc(100% - 3.35rem);
    padding: 0.28rem 0.58rem;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--white) !important;
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    border-radius: 999px;
    box-shadow: 0 12px 20px rgba(21, 128, 61, 0.22);
}

@media (hover: none) {
    .pdt_div > .pdt_trigger_div {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

.event_tag {
    background: #dc143c;
    border-radius: 3px 0 0 3px;
    color: #fff;
    font-size: 0.8rem;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.event_tag::before {
    background: var(--body_background);
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.event_tag::after {
    background: var(--body_background);
    border-bottom: 13px solid transparent;
    border-left: 10px solid #dc143c;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.pdt_min_orders {
    font-size: 0.7rem;
    color: var(--grey);
    font-weight: bold;
}

#pdt_indicators img {
    margin-right: 3px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .4);
    padding: 3px;
}

.section_header {
    background: linear-gradient(
            to right,
            var(--colorPrimary),
            var(--colorSecondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--display-font);
    letter-spacing: -0.02em;
}

.w-10 {
    width: 10% !important;
}

/*
#footer_wrapper {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    color: var(--colorSecondary);
    background-image: linear-gradient(to bottom, var(--transparent_0), var(--transparent_50));
}*/

.footer {
    color: var(--heading);
    /*background-image: linear-gradient(to bottom, var(--transparent_90), var(--colorSecondary));*/
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--colorPrimary);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-family: var(--display-font);
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--colorPrimary);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: var(--heading);
    display: block;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--colorSecondary);
    padding-left: 5px;
}

/*responsive*/
@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

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

.jc-form-item {
    position: relative;
}

.jc-form-item input, .jc-form-item textarea {
    background: none;
    font-size: 16px;
    padding: 8px 8px 8px 3px;
    display: block;
    width: 90%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--light_grey);
}

.jc-form-item input:focus, .jc-form-item textarea:focus {
    outline: none;
}

.jc-form-item input:focus ~ label, .jc-form-item textarea:focus ~ label, .jc-form-item input:valid ~ label, .jc-form-item textarea:valid ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--colorPrimary);
}

.effect-1 {
    border: 0;
    padding: 5px 0;
    border-bottom: 1px solid var(--light_grey);
}

.effect-1 ~ .bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--colorPrimary);
    transition: 0.4s;
}

.effect-1:focus ~ .bar {
    width: 100%;
    transition: 0.4s;
}

.effect-2 {
    padding: 7px 15px;
    border: 1px solid var(--light_grey);
    position: relative;
    background: transparent;
}

.effect-2 ~ .focus-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--light_grey);
    transition: 0.3s;
    z-index: -1;
}

.effect-2:focus ~ .focus-bg {
    transition: 0.3s;
    width: 100%;
}

.jc-form-item label {
    color: var(--colorSecondary);
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 300ms ease all;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    color: var(--colorOnPrimary) !important;
    background-color: var(--colorPrimary) !important;
    border-color: var(--colorPrimary) !important;
}

.pagination > li > a, .pagination > li > span {
    color: var(--colorPrimary) !important;
    background-color: var(--body_background_90) !important;
    border-color: var(--colorPrimary) !important;
}

/* Big-Teal shared UI polish */
:root {
    --bt-surface: #ffffff;
    --bt-surface-soft: rgba(242, 245, 247, 0.9);
    --bt-border: rgba(11, 61, 61, 0.13);
    --bt-shadow: 0 18px 44px rgba(11, 61, 61, 0.12);
    --bt-shadow-soft: 0 12px 28px rgba(11, 61, 61, 0.08);
    --bt-focus: rgba(61, 214, 198, 0.36);
}

body:not(.theme-dark):not(.dark):not([data-theme="dark"]) {
    background:
        radial-gradient(circle at 8% 0%, rgba(61, 214, 198, 0.14), transparent 28%),
        radial-gradient(circle at 96% 6%, rgba(0, 157, 143, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--jc-mist) 48%, #ffffff 100%);
}

body:not(.theme-dark):not(.dark):not([data-theme="dark"]) :focus-visible {
    outline: 3px solid var(--bt-focus);
    outline-offset: 3px;
}

body:not(.theme-dark):not(.dark):not([data-theme="dark"]) :is(.home_surface, .home_article, .home_section_card, .lists-hero, .lists-hero-utility, .lists-panel, .lists-filter-card, .lists-summary-card, .lists-account-card, .lists-profile-card, .lists-side-card, .lists-store-card, .lists-watch-card, .storefront_catalog, .storefront_side_card, .storefront_status_panel, .manage_page_intro, .manage_panel, .messages_workspace_panel) {
    border-color: var(--bt-border);
    box-shadow: var(--bt-shadow-soft);
}

body:not(.theme-dark):not(.dark):not([data-theme="dark"]) :is(.pdt_div, .pdt_article, .product_card, .product_template, .product_list_template, .load_product_template, .store_product_template, .lists-product-card, .search_product_card, .storefront_mini_product, .storefront_contact_item) {
    background:
        radial-gradient(circle at 100% 0%, rgba(61, 214, 198, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 247, 0.94));
    border-color: var(--bt-border);
    box-shadow: var(--bt-shadow-soft);
}

body:not(.theme-dark):not(.dark):not([data-theme="dark"]) :is(.pdt_div, .pdt_article, .product_card, .product_template, .product_list_template, .load_product_template, .store_product_template, .lists-product-card, .search_product_card):hover {
    border-color: rgba(0, 157, 143, 0.28);
    box-shadow: var(--bt-shadow);
}

body:not(.theme-dark):not(.dark):not([data-theme="dark"]) :is(input, textarea, select, .form-control, .custom-select, .input_primary):focus {
    border-color: rgba(0, 157, 143, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(61, 214, 198, 0.18) !important;
}
