@charset "utf-8";

:root {
    --gk-bg: #fafafa;
    --gk-ink: #0a0a0a;
    --gk-ink-2: #1a1a1a;
    --gk-muted: #8a8a8a;
    --gk-line: #e6e6e6;
    --gk-line-2: #ececec;
    --gk-red: #e63946;
    --gk-red-hot: #ff2238;
    --gk-cream: #f4ebe0;
    --gk-cream-2: #efe6db;
    --gk-cream-3: #ede4d6;
    --gk-sans: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", Arial, sans-serif;
    --gk-mono: "JetBrains Mono", Menlo, Consolas, monospace;
}

/* GLOW.KIKI gatekeeper: product list filter responsive repair */
#sct.gk-list-layout,
#sct.gk-list-layout * {
    box-sizing: border-box;
}

.gk-filter-chip2-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
}

#sct.gk-list-layout .gk-sidebar-search-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d4dbe5;
    box-shadow: none;
}

#sct.gk-list-layout .gk-sidebar-search-input,
#sct.gk-list-layout .gk-sidebar-search-input:focus,
#sct.gk-list-layout .gk-sidebar-search-input:focus-visible {
    width: 100%;
    min-width: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

#sct.gk-list-layout .gk-sidebar-search-btn,
#sct.gk-list-layout .gk-sidebar-search-btn:focus,
#sct.gk-list-layout .gk-sidebar-search-btn:focus-visible {
    width: 38px;
    min-width: 38px;
    height: 100%;
    border: 0;
    outline: 0;
    box-shadow: none;
}

@media (min-width: 1025px) {
    #sct.gk-list-layout .gk-list-sidebar {
        display: block !important;
        position: sticky !important;
        top: 140px;
        width: 240px;
        min-width: 240px;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    #sct.gk-list-layout .gk-filter-mobile-btn {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    #sct.gk-list-layout #sct_sortlst {
        padding-top: 16px;
    }

    #sct.gk-list-layout #sct_sortlst > .container-xxl {
        padding-left: 16px;
        padding-right: 16px;
    }

    #sct.gk-list-layout .gk-list-body {
        display: block !important;
        width: 100%;
        min-width: 0;
    }

    #sct.gk-list-layout .gk-list-main {
        width: 100%;
        min-width: 0;
    }

    #sct.gk-list-layout .gk-filter-mobile-btn,
    #sct.gk-list-layout .gk-filter-mobile-btn.d-md-none {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 92px;
        height: 40px;
        border: 1px solid var(--gk-ink);
        border-radius: 0;
        background: #fff;
        color: var(--gk-ink);
        font-family: var(--gk-mono);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        line-height: 1;
        text-transform: uppercase;
    }

    #sct.gk-list-layout .gk-sort-toolbar {
        position: relative;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        margin: 0 0 16px;
        padding: 0;
    }

    #sct.gk-list-layout .gk-list-sidebar {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        inset: 0 auto 0 0;
        z-index: 3001;
        width: min(392px, calc(100vw - 28px));
        min-width: 0 !important;
        max-width: calc(100vw - 28px);
        max-height: none !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #fff;
        border-right: 1px solid var(--gk-ink);
        box-shadow: 18px 0 40px rgba(0,0,0,.18);
        transform: translateX(-104%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform .24s ease, visibility .24s ease;
    }

    #sct.gk-list-layout .gk-list-sidebar.is-open {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    #sct.gk-list-layout .gk-filter-drawer-backdrop {
        display: block;
        z-index: 3000;
        background: rgba(0,0,0,.48);
    }

    #sct.gk-list-layout .gk-filter-drawer-header {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 48px;
        align-items: center;
        height: 76px;
        padding: 0 18px 0 20px;
        border-bottom: 1px solid var(--gk-line);
        background: #fff;
    }

    #sct.gk-list-layout .gk-filter-drawer-title {
        color: var(--gk-ink);
        font-family: var(--gk-mono);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .14em;
        line-height: 1;
        text-transform: uppercase;
    }

    #sct.gk-list-layout .gk-filter-drawer-title::before {
        content: "01 - ";
        color: var(--gk-red);
    }

    #sct.gk-list-layout .gk-filter-drawer-close {
        width: 48px;
        height: 48px;
        border: 1px solid var(--gk-ink);
        border-radius: 0;
        background: #fff;
        color: var(--gk-ink);
        font-size: 22px;
        line-height: 1;
    }

    #sct.gk-list-layout .gk-filter-drawer-body {
        width: 100%;
        height: calc(100dvh - 76px);
        padding: 22px 20px 120px !important;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #sct.gk-list-layout .gk-sidebar-search {
        margin: 0 0 24px;
    }

    #sct.gk-list-layout .gk-sidebar-search-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        height: 54px;
        border: 1px solid var(--gk-ink);
        border-radius: 0;
        background: #fff;
        overflow: hidden;
    }

    #sct.gk-list-layout .gk-sidebar-search-wrap:focus-within {
        border-color: var(--gk-red);
        box-shadow: none;
    }

    #sct.gk-list-layout .gk-sidebar-search-input {
        width: 100%;
        min-width: 0;
        height: 52px;
        padding: 0 14px;
        border: 0 !important;
        outline: 0 !important;
        background: #fff;
        color: var(--gk-ink);
        font-size: 15px;
        line-height: 52px;
    }

    #sct.gk-list-layout .gk-sidebar-search-input::placeholder {
        color: #9ca3af;
    }

    #sct.gk-list-layout .gk-sidebar-search-btn {
        width: 46px;
        height: 52px;
        border-left: 1px solid var(--gk-ink);
        color: var(--gk-ink);
    }

    #sct.gk-list-layout .gk-filter-section {
        padding: 22px 0;
        border-bottom: 1px solid var(--gk-line);
    }

    #sct.gk-list-layout .gk-filter-section:first-of-type {
        border-top: 1px solid var(--gk-line);
    }

    #sct.gk-list-layout .gk-filter-title {
        margin: 0 0 14px;
        color: var(--gk-red);
        font-family: var(--gk-mono);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .14em;
        line-height: 1.3;
        text-transform: uppercase;
    }

    #sct.gk-list-layout .gk-filter-radio,
    #sct.gk-list-layout .gk-filter-check {
        min-height: 38px;
        height: auto;
        gap: 12px;
    }

    #sct.gk-list-layout .gk-filter-radio input[type="radio"],
    #sct.gk-list-layout .gk-filter-check input[type="checkbox"] {
        width: 24px;
        height: 24px;
        min-width: 24px;
        margin: 0;
    }

    #sct.gk-list-layout .gk-filter-radio-label,
    #sct.gk-list-layout .gk-filter-check span {
        color: #374151;
        font-size: 15px;
        line-height: 1.4;
    }

    #sct.gk-list-layout .gk-filter-price-inputs {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        max-width: 100%;
        margin-bottom: 16px;
    }

    #sct.gk-list-layout .gk-filter-price-inputs input[type="number"] {
        width: 100%;
        min-width: 0;
        height: 48px;
        border: 1px solid var(--gk-ink);
        border-radius: 0;
        padding: 0 12px;
        color: var(--gk-ink);
        font-size: 14px;
    }

    #sct.gk-list-layout .gk-filter-slider-wrap {
        gap: 8px;
    }

    #sct.gk-list-layout .gk-filter-slider-wrap input[type="range"] {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    #sct.gk-list-layout .gk-filter-range-label {
        margin-top: 10px;
        color: #6b7280;
        font-size: 13px;
    }

    #sct.gk-list-layout .gk-filter-chip2 {
        height: 34px;
        border-radius: 999px;
        padding: 0 13px;
        background: #fff;
        font-size: 13px;
        white-space: nowrap;
    }

    #sct.gk-list-layout .gk-filter-chip2:has(input:checked) {
        border-color: var(--gk-red);
        background: var(--gk-red);
        color: #fff;
    }

    #sct.gk-list-layout .gk-filter-swatch-wrap {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px 8px;
    }

    #sct.gk-list-layout .gk-filter-swatch {
        width: auto;
        min-width: 0;
    }

    #sct.gk-list-layout .gk-swatch-circle {
        width: 30px;
        height: 30px;
    }

    #sct.gk-list-layout .gk-filter-actions {
        position: sticky;
        bottom: -120px;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 8px;
        padding: 18px 0 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 18px);
    }

    #sct.gk-list-layout .gk-filter-reset,
    #sct.gk-list-layout .gk-filter-apply {
        height: 48px;
        border-radius: 0;
        font-family: var(--gk-mono);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    #sct.gk-list-layout .gk-filter-reset {
        border-color: var(--gk-ink);
        color: var(--gk-ink);
    }

    #sct.gk-list-layout .gk-filter-apply {
        border-color: var(--gk-ink);
        background: var(--gk-ink);
        color: #fff;
    }
}

@media (max-width: 420px) {
    #sct.gk-list-layout .gk-filter-drawer-body {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    #sct.gk-list-layout .gk-filter-swatch-wrap {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

html {
    background: var(--gk-bg);
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--gk-bg) !important;
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
iframe,
video,
canvas,
svg,
table,
input,
select,
textarea,
button {
    max-width: 100%;
}

img {
    height: auto;
}

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

a:hover {
    color: var(--gk-red);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

#hd_login_msg,
hr {
    display: none !important;
}

.sound_only,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

#skip_to_container a {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    transform: translateY(-140%);
    background: var(--gk-ink);
    color: #fff;
    padding: 10px 14px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
}

#skip_to_container a:focus {
    transform: translateY(0);
}

#wrapper.gk-wrapper,
#shop-content.gk-content,
.shop-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: var(--gk-bg);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.container-wide,
.gk-shop-shell {
    max-width: 100% !important;
}

.gk-shop-shell {
    width: 100%;
}

.gk-mono,
.mono {
    font-family: var(--gk-mono);
}

.gk-upper,
.upper {
    text-transform: uppercase;
    letter-spacing: .08em;
}

.gk-muted,
.muted {
    color: var(--gk-muted);
}

.gk-red,
.red {
    color: var(--gk-red);
}

.gk-between,
.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gk-center,
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-topbar {
    background: var(--gk-ink);
    color: var(--gk-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 28px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-topbar-ticker {
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: .86;
}

.gk-topbar-ticker span::before {
    content: "●";
    color: var(--gk-red);
    margin-right: 8px;
    font-size: 8px;
    vertical-align: middle;
}

.gk-lang {
    display: flex;
    gap: 14px;
    opacity: .72;
    white-space: nowrap;
}

.gk-lang b {
    color: #fff;
    font-weight: 500;
}

.gk-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: rgba(250, 250, 250, .96);
    backdrop-filter: blur(14px);
}

.gk-nav-left,
.gk-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
}

.gk-nav-right {
    justify-content: flex-end;
}

.gk-nav-link {
    position: relative;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.gk-nav-link.is-active {
    color: var(--gk-red);
}

.gk-nav-link .num {
    position: absolute;
    top: -8px;
    right: -14px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 9px;
    font-weight: 400;
}

.gk-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gk-ink);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.gk-logo .dot,
.gk-footer-logo .dot,
.gk-footer-big .dot {
    color: var(--gk-red);
}

.gk-logo small {
    display: block;
    margin-top: 4px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: .3em;
}

.gk-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.gk-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    padding: 1px 6px;
    border-radius: 999px;
    background: var(--gk-red);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.gk-menu-toggle {
    display: none;
    position: relative;
    width: 52px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--gk-ink);
    background: #fff;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.gk-menu-toggle::after {
    content: "";
    position: absolute;
    top: 9px;
    right: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gk-red);
}

.gk-menu-toggle:hover,
.gk-menu-toggle:focus-visible {
    border-color: var(--gk-ink);
    background: var(--gk-ink);
}

.gk-menu-toggle:focus-visible {
    outline: 2px solid var(--gk-red);
    outline-offset: 3px;
}

.gk-menu-mark {
    display: flex;
    flex-direction: column;
    width: 22px;
    gap: 5px;
}

.gk-menu-mark span {
    display: block;
    height: 2px;
    background: var(--gk-ink);
    transition: background .18s ease, width .18s ease;
}

.gk-menu-mark span:nth-child(2) {
    width: 15px;
}

.gk-menu-mark span:nth-child(3) {
    width: 19px;
}

.gk-menu-toggle:hover .gk-menu-mark span,
.gk-menu-toggle:focus-visible .gk-menu-mark span {
    width: 22px;
    background: #fff;
}

.gk-marquee {
    overflow: hidden;
    border-top: 1px solid var(--gk-ink);
    border-bottom: 1px solid var(--gk-ink);
    background: var(--gk-red);
    color: #fff;
    padding: 16px 0;
}

.gk-marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    white-space: nowrap;
    animation: gk-scroll 35s linear infinite;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gk-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 48px;
}

.gk-marquee-track i {
    opacity: .5;
    font-style: normal;
}

@keyframes gk-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.gk-section {
    border-bottom: 1px solid var(--gk-line);
    padding: 80px 28px;
}

.gk-section-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
    margin-bottom: 56px;
}

.gk-eyebrow {
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-eyebrow b {
    color: var(--gk-ink);
    margin-right: 8px;
}

.gk-section-title,
.page-head h1,
.cart-header h1 {
    margin: 0;
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .88;
    text-transform: uppercase;
}

.gk-section-title em,
.page-head h1 em,
.cart-header h1 em {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}

.gk-section-link {
    border-bottom: 1px solid var(--gk-ink);
    padding-bottom: 4px;
    font-family: var(--gk-mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gk-btn,
.btn,
.btn_submit,
.btn_b01,
.btn01,
.btn02,
.btn03,
.btn_close,
button.btn_submit,
a.btn_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 0 !important;
    background: transparent;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.gk-btn {
    padding: 16px 24px;
}

.gk-btn:hover,
.btn:hover,
.btn_b01:hover,
.btn01:hover,
.btn02:hover,
.btn03:hover {
    background: var(--gk-ink);
    color: var(--gk-bg);
}

.gk-btn-primary,
.btn_submit,
button.btn_submit,
a.btn_submit {
    background: var(--gk-ink) !important;
    color: var(--gk-bg) !important;
}

.gk-btn-primary:hover,
.btn_submit:hover {
    border-color: var(--gk-red) !important;
    background: var(--gk-red) !important;
    color: #fff !important;
}

.gk-btn-red {
    border-color: var(--gk-red) !important;
    background: var(--gk-red) !important;
    color: #fff !important;
}

.gk-btn-block {
    width: 100%;
}

.gk-input,
.input,
.select,
.textarea,
.frm_input,
.form-control,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    min-height: 46px;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--gk-ink);
    box-shadow: none !important;
    font-size: 14px;
}

textarea {
    min-height: 120px;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    border-color: var(--gk-red) !important;
    outline: none !important;
    box-shadow: none !important;
}

.breadcrumb,
.gk-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 14px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.breadcrumb .active,
.breadcrumb b,
.gk-breadcrumb b {
    color: var(--gk-ink);
    font-weight: 600;
}

.page-head,
.gk-page-head,
.page-title .text-center {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    padding: 56px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
    text-align: left !important;
}

.page-title .bg-body-secondary {
    background: var(--gk-bg) !important;
}

.page-title .container,
.page-title .container > h2 {
    max-width: none !important;
}

.page-title h2 {
    margin: 0;
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .88;
    text-transform: uppercase;
}

.page-head .eyebrow,
.gk-page-head .eyebrow {
    margin-bottom: 14px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.page-head .meta,
.gk-page-head .meta {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.8;
    text-align: right;
    text-transform: uppercase;
}

.page-head .meta b,
.gk-page-head .meta b {
    color: var(--gk-ink);
    font-weight: 600;
}

.gk-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1fr);
    min-height: 720px;
    border-bottom: 1px solid var(--gk-line);
}

.gk-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 40px 28px;
}

.gk-hero-panel.is-left {
    border-right: 1px solid var(--gk-line);
}

.gk-hero-panel.is-dark {
    border-left: 1px solid var(--gk-line);
    background: var(--gk-ink);
    color: var(--gk-bg);
}

.gk-hero-title {
    margin-top: 60px;
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .85;
    text-transform: uppercase;
}

.gk-hero-title .red-it {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}

.gk-hero-title .stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--gk-ink);
}

.gk-hero-main {
    display: flex;
    min-width: 0;
    background: var(--gk-cream);
    flex-direction: column;
}

.gk-hero-image {
    position: relative;
    display: flex;
    min-height: 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: repeating-linear-gradient(135deg, #d9c8b3 0 14px, #cdbba4 14px 28px);
}

.gk-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.gk-hero-image::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px dashed rgba(10, 10, 10, .25);
    pointer-events: none;
}

.gk-hero-tag,
.gk-hero-drop {
    position: absolute;
    z-index: 2;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-hero-tag {
    top: 24px;
    left: 24px;
    border: 1px solid var(--gk-ink);
    background: var(--gk-bg);
    padding: 6px 10px;
}

.gk-hero-drop {
    right: 24px;
    bottom: 24px;
    background: var(--gk-ink);
    color: var(--gk-bg);
    padding: 6px 10px;
}

.gk-hero-num {
    position: absolute;
    z-index: 1;
    color: rgba(10, 10, 10, .08);
    font-size: 220px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.gk-hero-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--gk-red);
    color: #fff;
    padding: 12px 18px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-feature-card {
    padding: 18px;
    background: var(--gk-bg);
}

.gk-feature-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

.gk-hero-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
}

.gk-hero-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gk-hero-link-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gk-red);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.gk-hero-link:nth-child(2) .gk-hero-link-mark {
    background: #fff;
    color: var(--gk-ink);
}

.gk-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gk-cat-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gk-cream);
    color: var(--gk-ink);
    transition: transform .25s ease;
}

.gk-cat-card::before,
.gk-product-img::after,
.gk-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(10, 10, 10, .05) 18px 19px);
    pointer-events: none;
}

.gk-cat-card:hover {
    transform: translateY(-4px);
}

.gk-cat-card.is-dark {
    background: var(--gk-ink);
    color: #fff;
}

.gk-cat-card.is-red {
    background: var(--gk-red);
    color: #fff;
}

.gk-cat-card.is-dark::before,
.gk-cat-card.is-red::before {
    background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, .07) 18px 19px);
}

.gk-cat-num,
.gk-cat-count {
    position: absolute;
    top: 20px;
    z-index: 1;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
}

.gk-cat-num {
    left: 24px;
}

.gk-cat-count {
    right: 24px;
}

.gk-cat-name {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .95;
    text-transform: uppercase;
}

.gk-cat-name small {
    display: block;
    margin-top: 8px;
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
    opacity: .7;
}

.gk-cat-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 14px;
}

.gk-product-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 16px;
}

@media (min-width: 1440px) {
    .gk-home .gk-section .gk-product-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 28px 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .gk-home .gk-section .gk-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1680px) {
    #gk-listtype .gk-product-grid,
    #sct.gk-list-layout .gk-product-grid,
    .gk-grid-wrap .gk-product-grid,
    .product-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 28px 12px;
    }
}

@media (min-width: 1280px) and (max-width: 1679px) {
    #gk-listtype .gk-product-grid,
    #sct.gk-list-layout .gk-product-grid,
    .gk-grid-wrap .gk-product-grid,
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gk-product-grid.cols-3,
.product-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gk-product-card {
    position: relative;
    min-width: 0;
}

.gk-product-img {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--gk-cream);
}

.gk-product-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.gk-product-img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-product-img.no-img::before {
    content: attr(data-num);
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: rgba(10, 10, 10, .1);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.gk-product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: var(--gk-bg);
    padding: 4px 8px;
    font-family: var(--gk-mono);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: var(--gk-red);
    color: #fff;
    padding: 5px 9px;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gk-product-badge.is-dark {
    background: var(--gk-ink);
}

.gk-product-quick {
    position: absolute;
    right: 12px;
    bottom: 14px;
    left: 12px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--gk-bg);
    padding: 10px 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gk-product-card:hover .gk-product-quick {
    opacity: 1;
    transform: translateY(0);
}

.gk-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gk-product-meta .id {
    color: var(--gk-ink);
}

.gk-product-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
}

.gk-product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gk-product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 6px;
    min-width: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    word-break: keep-all;
}

.gk-product-price,
.gk-product-price * {
    white-space: nowrap;
}

.gk-product-price del {
    margin-right: 0;
    color: var(--gk-muted);
    font-size: 12px;
    font-weight: 400;
}

.gk-product-price .sale,
.gk-product-price .red {
    color: var(--gk-red);
}

.gk-product-colors {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.gk-swatch {
    width: 12px;
    height: 12px;
    border: 1px solid var(--gk-line);
    border-radius: 50%;
    background: var(--gk-swatch-color, #e8e1d7);
}

.gk-swatch--red { --gk-swatch-color: #EF3B4A; background: #EF3B4A; }
.gk-swatch--black { --gk-swatch-color: #0A0A0A; background: #0A0A0A; }
.gk-swatch--white { --gk-swatch-color: #F7F4EF; background: #F7F4EF; }
.gk-swatch--cream,
.gk-swatch--ivory { --gk-swatch-color: #F1E8DA; background: #F1E8DA; }
.gk-swatch--beige { --gk-swatch-color: #D8C3A5; background: #D8C3A5; }
.gk-swatch--denim { --gk-swatch-color: #496E9C; background: #496E9C; }
.gk-swatch--blue { --gk-swatch-color: #3E6DAA; background: #3E6DAA; }
.gk-swatch--navy { --gk-swatch-color: #1F2A44; background: #1F2A44; }
.gk-swatch--pink { --gk-swatch-color: #F3A1B2; background: #F3A1B2; }
.gk-swatch--gray,
.gk-swatch--lightgray { --gk-swatch-color: #A9A9A9; background: #A9A9A9; }
.gk-swatch--green { --gk-swatch-color: #4F8A5B; background: #4F8A5B; }
.gk-swatch--yellow { --gk-swatch-color: #F1C84B; background: #F1C84B; }
.gk-swatch--brown { --gk-swatch-color: #8B5E34; background: #8B5E34; }
.gk-swatch--purple { --gk-swatch-color: #805AD5; background: #805AD5; }
.gk-swatch--orange { --gk-swatch-color: #ED8936; background: #ED8936; }
.gk-swatch--khaki { --gk-swatch-color: #6B7C3E; background: #6B7C3E; }
.gk-swatch--wine { --gk-swatch-color: #722F37; background: #722F37; }
.gk-swatch--mint { --gk-swatch-color: #81E6D9; background: #81E6D9; }
.gk-swatch--lavender { --gk-swatch-color: #B794F4; background: #B794F4; }
.gk-swatch--charcoal { --gk-swatch-color: #4A5568; background: #4A5568; }
.gk-swatch--silver { --gk-swatch-color: #CBD5E0; background: #CBD5E0; }
.gk-swatch--gold { --gk-swatch-color: #D4A843; background: #D4A843; }
.gk-swatch--camel { --gk-swatch-color: #C19A6B; background: #C19A6B; }
.gk-swatch--coral { --gk-swatch-color: #F56565; background: #F56565; }
.gk-swatch--sky { --gk-swatch-color: #90CDF4; background: #90CDF4; }
.gk-swatch--neutral { --gk-swatch-color: #E8E1D7; background: #E8E1D7; }

.gk-product-empty {
    padding: 48px 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.gk-mobile-only { display: none !important; }
.gk-desktop-only-flex { display: flex !important; }

@media (max-width: 767px) {
    .gk-mobile-only { display: inline-flex !important; }
    .gk-desktop-only-flex { display: none !important; }
}

@media (max-width: 767px) {
    .gk-product-name {
        font-size: 14px;
        line-height: 1.28;
    }

    .gk-product-meta {
        gap: 6px;
        font-size: 9px;
    }

    .gk-product-foot {
        align-items: flex-start;
        gap: 8px;
    }

    .gk-product-price {
        flex: 1 1 auto;
        font-size: 15px;
    }

    .gk-product-price del {
        font-size: 11px;
    }

    .gk-product-colors {
        gap: 4px;
        padding-top: 4px;
    }

    .gk-swatch {
        width: 10px;
        height: 10px;
    }
}

/* GLOW.KIKI gatekeeper: category list needs a clear current-category identity */
#sct.gk-list-layout .gk-category-identity {
    margin: 0 0 40px;
    padding: 44px 28px;
    border-top: 1px solid var(--gk-line, #e6e6e6);
    border-bottom: 1px solid var(--gk-line, #e6e6e6);
    background: var(--gk-bg, #fafafa);
}

#sct.gk-list-layout .gk-category-identity__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    width: 100%;
    max-width: 100%;
}

#sct.gk-list-layout .gk-category-identity__eyebrow {
    margin: 0 0 16px;
    font-family: var(--gk-mono, "JetBrains Mono", monospace);
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: .12em;
    color: var(--gk-red, #E63946);
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-category-identity h1 {
    margin: 0;
    font-size: 96px;
    line-height: .92;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-ink, #0a0a0a);
}

#sct.gk-list-layout .gk-category-identity h1 em {
    color: var(--gk-red, #E63946);
    font-style: italic;
    font-weight: 400;
}

#sct.gk-list-layout .gk-category-identity__meta {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 1px solid var(--gk-line, #e6e6e6);
    background: #fff;
}

#sct.gk-list-layout .gk-category-identity__meta div {
    min-width: 108px;
    padding: 16px 18px;
    border-left: 1px solid var(--gk-line, #e6e6e6);
}

#sct.gk-list-layout .gk-category-identity__meta div:first-child {
    border-left: 0;
}

#sct.gk-list-layout .gk-category-identity__meta dt {
    margin: 0 0 8px;
    font-family: var(--gk-mono, "JetBrains Mono", monospace);
    font-size: 10px;
    line-height: 1;
    letter-spacing: .1em;
    color: var(--gk-muted, #8a8a8a);
}

#sct.gk-list-layout .gk-category-identity__meta dd {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--gk-ink, #0a0a0a);
}

@media (max-width: 1024px) {
    #sct.gk-list-layout .gk-category-identity {
        padding: 34px 20px;
        margin-bottom: 28px;
    }

    #sct.gk-list-layout .gk-category-identity__inner {
        grid-template-columns: 1fr;
    }

    #sct.gk-list-layout .gk-category-identity h1 {
        font-size: 56px;
    }

    #sct.gk-list-layout .gk-category-identity__meta {
        width: 100%;
    }

    #sct.gk-list-layout .gk-category-identity__meta div {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    #sct.gk-list-layout .gk-category-identity {
        padding: 28px 16px;
        margin-bottom: 20px;
    }

    #sct.gk-list-layout .gk-category-identity h1 {
        font-size: 38px;
        line-height: .96;
    }

    #sct.gk-list-layout .gk-category-identity__meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #sct.gk-list-layout .gk-category-identity__meta div {
        padding: 12px 10px;
    }

    #sct.gk-list-layout .gk-category-identity__meta dd {
        font-size: 14px;
    }
}

/* GLOW.KIKI gatekeeper: desktop shop search must be usable, not an oversized hero */
@media (min-width: 768px) {
    #gk-search #gk-search-detail-form {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    #gk-search #gk-search-detail-form > .gk-search-top {
        padding: 44px 28px 28px;
    }

    #gk-search #gk-search-detail-form > .gk-search-top[style] {
        padding: 0 28px 22px !important;
    }

    #gk-search .gk-search-form-row {
        grid-template-columns: minmax(0, 1fr) 180px;
        align-items: stretch;
        gap: 14px;
        width: 100%;
        max-width: none;
    }

    #gk-search .gk-search-form-row > div {
        min-width: 0;
    }

    #gk-search #ssch_q {
        height: 72px;
        border: 1px solid var(--ink);
        padding: 0 24px;
        font-size: 42px;
        line-height: 1;
        text-transform: none;
    }

    #gk-search .gk-btn-search {
        width: 180px;
        height: 72px;
        padding: 0;
        background: var(--ink);
        border-color: var(--ink);
        color: #fff;
    }

    #gk-search .gk-btn-search:hover {
        background: var(--red);
        border-color: var(--red);
    }

    #gk-search .gk-search-meta {
        margin-top: 0;
    }

    #gk-search .gk-search-body {
        grid-template-columns: 280px minmax(0, 1fr);
        align-items: start;
        border-top: 1px solid var(--line);
        min-height: 520px;
    }

    #gk-search .gk-sidebar {
        min-height: 0;
        padding: 32px 28px 72px;
        align-self: start;
    }

    #gk-search .gk-results-area {
        min-width: 0;
        padding: 32px 28px 72px;
    }

    #gk-search .gk-results-head {
        min-height: 66px;
        margin-bottom: 0;
        padding-bottom: 20px;
    }

    #gk-search .gk-results-grid {
        min-height: 360px;
        padding-top: 32px;
    }

    #gk-search .gk-empty {
        display: flex;
        min-height: 300px;
        padding: 72px 28px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid var(--line);
        background: #fff;
    }

    #gk-search .gk-empty .big {
        font-size: 56px;
    }
}

@media (min-width: 1400px) {
    #gk-search #ssch_q {
        height: 78px;
        font-size: 52px;
    }

    #gk-search .gk-btn-search {
        height: 78px;
    }
}

@media (max-width: 767px) {
    #gk-search #gk-search-detail-form > .gk-search-top {
        display: none !important;
    }
}

/* GLOW.KIKI final override: keep reviews/category sample rules above old item-detail blocks */
#gk-reviews .gk-review-summary .gk-review-score {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid var(--gk-line) !important;
    border-bottom: 1px solid var(--gk-line) !important;
}

#gk-reviews .gk-review-summary .gk-review-score strong {
    display: block !important;
    margin: 0 0 18px !important;
    color: var(--gk-ink) !important;
    font-size: clamp(76px, 9vw, 120px) !important;
    font-weight: 900 !important;
    line-height: 0.85 !important;
}

#gk-reviews .gk-review-summary .gk-review-score span {
    display: block !important;
    margin: 0 !important;
    color: var(--gk-red) !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
}

#gk-reviews .gk-review-summary .gk-review-score em {
    display: block !important;
    margin: 8px 0 0 !important;
    color: var(--gk-muted) !important;
    font-family: var(--gk-mono) !important;
    font-size: 10px !important;
    font-style: normal !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#gk-reviews .gk-review-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

#gk-reviews .gk-review-card {
    display: grid !important;
}

#sct.gk-list-layout .gk-sidebar-search-wrap {
    grid-template-columns: minmax(0, 1fr) 40px !important;
    border-color: var(--gk-line) !important;
}

/* GLOW.KIKI sample alignment: category filter polish + reviews list */
#sct.gk-list-layout .gk-sidebar-search-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 40px !important;
    height: 56px;
    border: 1px solid var(--gk-line) !important;
    background: #fff;
}

#sct.gk-list-layout .gk-sidebar-search-input {
    width: 100% !important;
    height: 54px !important;
    min-width: 0 !important;
    padding: 0 14px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--gk-ink) !important;
    font-size: 13px !important;
}

#sct.gk-list-layout .gk-sidebar-search-btn {
    position: relative;
    width: 40px !important;
    height: 54px !important;
    border: 0 !important;
    border-left: 1px solid var(--gk-line) !important;
    background: #fff !important;
    color: var(--gk-ink) !important;
    font-size: 0 !important;
}

#sct.gk-list-layout .gk-sidebar-search-btn::before {
    content: "→";
    display: block;
    font-family: var(--gk-mono);
    font-size: 14px;
    line-height: 54px;
}

#sct.gk-list-layout .gk-sidebar-search-btn i {
    display: none !important;
}

#sct.gk-list-layout .gk-filter-title {
    letter-spacing: 0.08em !important;
}

#sct.gk-list-layout .gk-filter-chip2 {
    overflow: visible !important;
}

#sct.gk-list-layout .gk-filter-chip2 span {
    white-space: nowrap;
}

#sct.gk-list-layout .gk-filter-actions {
    position: static !important;
    padding-bottom: 0 !important;
}

#gk-reviews {
    background: #f7f7f7;
    color: var(--gk-ink);
    overflow-x: hidden;
}

#gk-reviews .gk-breadcrumb {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 72px;
    padding: 0 28px;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-line);
    font-family: var(--gk-mono);
    font-size: 12px;
    text-transform: uppercase;
}

#gk-reviews .gk-breadcrumb a,
#gk-reviews .gk-breadcrumb span {
    color: var(--gk-muted);
}

#gk-reviews .gk-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: end;
    padding: clamp(44px, 6vw, 82px) 28px;
    border-bottom: 1px solid var(--gk-line);
}

#gk-reviews .eyebrow,
#gk-reviews .gk-page-head .eyebrow {
    margin: 0 0 16px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

#gk-reviews h1 {
    margin: 0;
    color: var(--gk-ink);
    font-size: clamp(58px, 8vw, 128px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

#gk-reviews h1 em {
    color: var(--gk-red);
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
}

#gk-reviews .gk-page-head .meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-align: right;
    text-transform: uppercase;
}

#gk-reviews .gk-page-head .meta b,
#gk-reviews .gk-page-head .meta a {
    color: var(--gk-ink);
}

#gk-reviews .gk-review-summary {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 360px;
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
    padding: 40px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: #fff;
}

#gk-reviews .gk-review-score strong {
    display: block;
    font-size: clamp(76px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 18px;
}

#gk-reviews .gk-review-score span {
    display: block;
    margin-top: 0;
    color: var(--gk-red);
    font-size: 18px;
    line-height: 1.2;
}

#gk-reviews .gk-review-score em {
    display: block;
    margin-top: 8px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    font-style: normal;
    line-height: 1.4;
    text-transform: uppercase;
}

#gk-reviews .gk-review-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#gk-reviews .gk-review-bar {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 54px;
    gap: 12px;
    align-items: center;
    font-family: var(--gk-mono);
    font-size: 11px;
}

#gk-reviews .gk-review-bar i {
    display: block;
    height: 8px;
    background: var(--gk-line);
    overflow: hidden;
}

#gk-reviews .gk-review-bar b {
    display: block;
    height: 100%;
    background: var(--gk-red);
}

#gk-reviews .gk-review-bar em {
    color: var(--gk-muted);
    font-style: normal;
    text-align: right;
}

#gk-reviews .gk-review-tags p {
    margin: 0 0 14px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

#gk-reviews .gk-review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#gk-reviews .gk-review-tags span,
#gk-reviews .gk-review-chip,
#gk-reviews .gk-review-tags-mini span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--gk-line);
    border-radius: 999px;
    background: #fff;
    color: var(--gk-ink);
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

#gk-reviews .gk-review-list-section {
    padding: 40px 28px 96px;
}

#gk-reviews .gk-review-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
}

#gk-reviews .gk-review-chip {
    border-color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-weight: 700;
    text-transform: uppercase;
}

#gk-reviews .gk-review-chip.is-active {
    background: var(--gk-ink);
    color: #fff;
}

#gk-reviews .gk-review-select,
#gk-reviews .gk-review-search,
#gk-reviews .gk-review-submit,
#gk-reviews .gk-review-reset {
    min-height: 42px;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    background: #fff;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

#gk-reviews .gk-review-select {
    margin-left: auto;
    padding: 0 34px 0 12px;
}

#gk-reviews .gk-review-search {
    width: min(280px, 100%);
    padding: 0 14px;
}

#gk-reviews .gk-review-submit,
#gk-reviews .gk-review-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: var(--gk-ink);
    color: #fff;
}

#gk-reviews .gk-review-reset {
    background: #fff;
    color: var(--gk-ink);
}

#gk-reviews .gk-review-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#gk-reviews .gk-review-card {
    position: relative;
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) 180px;
    gap: 32px;
    padding: 28px;
    border: 1px solid var(--gk-line);
    background: #fff;
}

#gk-reviews .gk-review-product {
    display: block;
    color: var(--gk-ink);
}

#gk-reviews .gk-review-product-img {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--gk-cream, #f4efe7);
}

#gk-reviews .gk-review-product-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(10, 10, 10, 0.05) 10px 11px);
}

#gk-reviews .gk-review-product-img::after {
    content: attr(data-num);
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: rgba(10, 10, 10, 0.1);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

#gk-reviews .gk-review-product-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#gk-reviews .gk-review-product strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

#gk-reviews .gk-review-product em {
    display: block;
    margin-top: 3px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 9px;
    font-style: normal;
    text-transform: uppercase;
}

#gk-reviews .gk-review-copy-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

#gk-reviews .gk-review-stars {
    color: var(--gk-red);
    font-size: 14px;
}

#gk-reviews .gk-review-copy-head em {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    font-style: normal;
    text-transform: uppercase;
}

#gk-reviews .gk-review-copy h2 {
    margin: 0 0 10px;
    color: var(--gk-ink);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

#gk-reviews .gk-review-excerpt {
    max-width: 860px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
}

#gk-reviews .gk-review-tags-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

#gk-reviews .gk-review-tags-mini span {
    min-height: 26px;
    padding: 0 10px;
    font-size: 9px;
}

#gk-reviews .gk-review-detail-btn,
#gk-reviews .gk-review-author button {
    min-height: 36px;
    margin-top: 16px;
    padding: 0 14px;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    background: #fff;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 10px;
    text-transform: uppercase;
}

#gk-reviews .gk-review-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    text-align: right;
    text-transform: uppercase;
}

#gk-reviews .gk-review-author strong {
    color: var(--gk-ink);
}

#gk-reviews .gk-review-author button {
    margin-top: auto;
}

#gk-reviews .gk-review-empty {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--gk-line);
    background: #fff;
    text-align: center;
}

#gk-reviews .gk-review-empty p {
    margin: 0;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
}

#gk-reviews .gk-review-empty strong {
    font-size: 24px;
}

#gk-reviews .gk-review-empty span {
    color: var(--gk-muted);
}

#gk-reviews .gk-review-paging {
    padding-top: 48px;
}

#gk-reviews .gk-review-paging .pg_wrap {
    justify-content: center;
}

#gk-reviews .gk-review-paging .pg_start,
#gk-reviews .gk-review-paging .pg_end,
#gk-reviews .gk-review-paging .pg_prev,
#gk-reviews .gk-review-paging .pg_next {
    display: none !important;
}

#gk-reviews .gk-review-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.58);
}

#gk-reviews .gk-review-modal.is-open {
    display: flex;
}

#gk-reviews .gk-review-modal-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    padding: 34px;
    border: 1px solid var(--gk-ink);
    background: #fff;
}

#gk-reviews .gk-review-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    background: #fff;
    color: var(--gk-ink);
    font-size: 22px;
}

#gk-reviews .gk-review-modal-dialog h3 {
    margin: 0 64px 16px 0;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
}

#gk-reviews .gk-review-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 26px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

#gk-reviews .gk-review-modal-meta span:first-child {
    color: var(--gk-red);
}

#gk-reviews .gk-review-modal-body {
    color: #222;
    font-size: 15px;
    line-height: 1.8;
}

body.gk-review-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    #gk-reviews .gk-page-head,
    #gk-reviews .gk-review-summary,
    #gk-reviews .gk-review-card {
        grid-template-columns: 1fr;
    }

    #gk-reviews .gk-page-head .meta,
    #gk-reviews .gk-review-author {
        align-items: flex-start;
        text-align: left;
    }

    #gk-reviews .gk-review-select {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    #gk-reviews {
        padding-bottom: 78px;
    }

    #gk-reviews .gk-breadcrumb {
        min-height: 58px;
        padding: 0 18px;
        font-size: 10px;
    }

    #gk-reviews .gk-page-head {
        padding: 36px 18px;
    }

    #gk-reviews h1 {
        font-size: 58px;
    }

    #gk-reviews .gk-review-summary {
        padding: 26px 18px;
    }

    #gk-reviews .gk-review-list-section {
        padding: 28px 18px 72px;
    }

    #gk-reviews .gk-review-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #gk-reviews .gk-review-search,
    #gk-reviews .gk-review-submit,
    #gk-reviews .gk-review-reset {
        width: 100%;
    }

    #gk-reviews .gk-review-card {
        gap: 18px;
        padding: 18px;
    }

    #gk-reviews .gk-review-product-img {
        max-width: 180px;
    }

    #gk-reviews .gk-review-copy-head {
        display: block;
    }

    #gk-reviews .gk-review-copy h2 {
        font-size: 22px;
    }

    #gk-reviews .gk-review-modal {
        padding: 0;
    }

    #gk-reviews .gk-review-modal-dialog {
        width: 100%;
        max-height: 100vh;
        min-height: 100vh;
        padding: 28px 18px;
        border: 0;
    }
}

/* GLOW.KIKI sample alignment: account / wishlist / category final pass */
.gk-mypage-dashboard,
.gk-sample-wishlist,
#sct.gk-list-layout {
    --acct-bg: var(--gk-bg, #fafafa);
    --acct-ink: var(--gk-ink, #0a0a0a);
    --acct-red: var(--gk-red, #e63946);
    --acct-line: var(--gk-line, #e6e6e6);
    --acct-muted: var(--gk-muted, #8a8a8a);
    background: var(--acct-bg) !important;
    color: var(--acct-ink);
}

.gk-account-mobile-head,
.gk-account-mobile-hero,
.gk-mobile-account-menu {
    display: none;
}

.gk-mypage-dashboard .gk-mypage-breadcrumb.gk-breadcrumb,
.gk-sample-wishlist .gk-wishlist-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 16px 28px;
    border-bottom: 1px solid var(--acct-line);
    background: var(--acct-bg);
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--acct-muted);
}

.gk-mypage-dashboard .gk-mypage-breadcrumb b,
.gk-sample-wishlist .gk-wishlist-breadcrumb b {
    color: var(--acct-ink);
    font-weight: 700;
}

.gk-account-shell {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 80vh;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gk-account-sidebar {
    border-right: 1px solid var(--acct-line);
    padding: 32px 24px;
    background: var(--acct-bg);
}

.gk-account-profile {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--acct-line);
}

.gk-account-profile .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--acct-red);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.gk-account-profile strong {
    display: block;
    color: var(--acct-ink);
    font-size: 16px;
    line-height: 1.2;
}

.gk-account-profile span:not(.avatar) {
    display: block;
    margin-top: 5px;
    color: var(--acct-red);
    font-family: var(--gk-mono, monospace);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-account-side-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gk-account-side-nav a {
    display: block;
    padding: 12px 14px;
    border-left: 2px solid transparent;
    color: var(--acct-ink);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.gk-account-side-nav a.active {
    border-left-color: var(--acct-red);
    background: rgba(230,57,70,.06);
    color: var(--acct-red);
    font-weight: 700;
}

.gk-account-side-nav .logout {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--acct-line);
}

.gk-account-side-nav .logout a {
    color: var(--acct-muted);
}

.gk-account-main {
    min-width: 0;
    padding: 48px 40px 72px;
    background: var(--acct-bg);
}

.gk-account-main-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.gk-account-main-head .eyebrow {
    margin-bottom: 14px;
    color: var(--acct-red);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-account-main-head h1 {
    margin: 0;
    color: var(--acct-ink);
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
}

.gk-account-main-head h1 em {
    color: var(--acct-red);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.gk-account-main-head .meta {
    color: var(--acct-muted);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.7;
    text-align: right;
    text-transform: uppercase;
}

.gk-account-main-head .meta b {
    color: var(--acct-ink);
}

.gk-mypage-dashboard #smb_private.gk-account-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 !important;
    margin: 0 0 48px !important;
    padding: 0 !important;
    border: 1px solid var(--acct-ink);
    list-style: none;
}

.gk-mypage-dashboard #smb_private.gk-account-stats li {
    margin: 0;
}

.gk-mypage-dashboard #smb_private.gk-account-stats a {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 24px !important;
    border: 0;
    border-right: 1px solid var(--acct-ink);
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--acct-ink);
    text-decoration: none;
}

.gk-mypage-dashboard #smb_private.gk-account-stats li:last-child a {
    border-right: 0;
}

.gk-mypage-dashboard #smb_private.gk-account-stats a.dark {
    background: var(--acct-ink) !important;
    color: #fff !important;
}

.gk-mypage-dashboard #smb_private.gk-account-stats .metric-label {
    margin-bottom: 10px;
    color: var(--acct-red);
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-mypage-dashboard #smb_private.gk-account-stats strong {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font-size: 38px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

.gk-mypage-dashboard #smb_private.gk-account-stats strong small {
    color: var(--acct-muted);
    font-size: 18px;
}

.gk-mypage-dashboard #smb_private.gk-account-stats .metric-note {
    margin-top: 8px;
    color: var(--acct-muted);
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    letter-spacing: .04em;
}

.gk-account-content-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
}

.gk-account-info .mypage-card,
.gk-mypage-dashboard #smb_my_od,
.gk-mypage-dashboard #smb_my_wish {
    border: 1px solid var(--acct-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.gk-account-info .mypage-card,
.gk-mypage-dashboard #smb_my_od,
.gk-mypage-dashboard #smb_my_wish {
    padding: 24px;
}

.gk-mypage-dashboard .side-card h3,
.gk-mypage-dashboard .section-head h2 {
    letter-spacing: 0;
}

.gk-mypage-dashboard .side-card h3 {
    margin: 0 0 18px;
    color: var(--acct-red);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-mypage-dashboard .account-info-list div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--acct-line);
}

.gk-mypage-dashboard .account-info-list dt {
    color: var(--acct-muted);
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-mypage-dashboard .account-info-list dd {
    color: var(--acct-ink);
    font-size: 12px;
    word-break: break-word;
}

.gk-mypage-dashboard .overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.gk-mypage-dashboard .overview-actions a,
.gk-mypage-dashboard .smb_my_more a {
    color: var(--acct-ink);
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.gk-mypage-dashboard .overview-actions a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--acct-ink);
    border-radius: 0;
    background: #fff;
}

.gk-mypage-dashboard .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0 !important;
    border: 0 !important;
}

.gk-mypage-dashboard .section-head h2 {
    margin: 0;
    color: var(--acct-ink);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}

.gk-mypage-dashboard .section-head h2 em {
    color: var(--acct-red);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.gk-mypage-dashboard .smb_my_more a {
    border-bottom: 1px solid var(--acct-ink);
}

.gk-mypage-dashboard #smb_my_wish .wish_del::before {
    content: "×";
    font-family: var(--gk-mono, monospace);
    font-size: 14px;
}

.gk-mypage-dashboard #smb_my_wish .wish_del i {
    display: none !important;
}

.gk-sample-wishlist .gk-wishlist-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    margin: 0;
    padding: 56px 28px;
    border-bottom: 1px solid var(--acct-line);
    background: var(--acct-bg);
}

.gk-sample-wishlist .gk-wishlist-head .eyebrow {
    margin-bottom: 14px;
    color: var(--acct-red);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-sample-wishlist .gk-wishlist-head h1 {
    margin: 0;
    color: var(--acct-ink);
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .88;
    text-transform: uppercase;
}

.gk-sample-wishlist .gk-wishlist-head h1 em,
.gk-sample-wishlist .gk-section-title em {
    color: var(--acct-red);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.gk-sample-wishlist .gk-wishlist-head .meta {
    color: var(--acct-muted);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.8;
    text-align: right;
    text-transform: uppercase;
}

.gk-sample-wishlist .gk-wishlist-head .meta b {
    color: var(--acct-ink);
}

.gk-wishlist-section {
    padding: 40px 28px;
}

.gk-wishlist-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 40px;
}

.gk-filter-chip,
.gk-btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid var(--acct-ink);
    border-radius: 999px;
    background: transparent;
    color: var(--acct-ink);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.gk-filter-chip {
    gap: 6px;
    padding: 0 18px;
}

.gk-filter-chip span {
    color: var(--acct-muted);
}

.gk-filter-chip.is-active {
    background: var(--acct-ink);
    color: var(--acct-bg);
}

.gk-filter-chip.is-active span {
    color: rgba(255,255,255,.55);
}

.gk-wishlist-tools {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.gk-btn-line {
    border-radius: 0;
    padding: 0 14px;
    font-size: 10px;
}

.gk-sample-wishlist .gk-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 44px 28px;
}

.gk-sample-wishlist .gk-wishlist-card {
    position: relative;
    min-width: 0;
    max-width: 380px;
    border: 0;
    background: transparent;
}

.gk-sample-wishlist .gk-wishlist-heart {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 12px;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    color: var(--acct-red);
    font-size: 16px;
}

.gk-sample-wishlist .gk-wishlist-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
    background: #f4ebe0;
}

.gk-sample-wishlist .gk-wishlist-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(10,10,10,.04) 22px 23px);
    pointer-events: none;
}

.gk-sample-wishlist .gk-wishlist-media.no-img::before {
    content: attr(data-num);
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    color: rgba(10,10,10,.1);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.gk-sample-wishlist .gk-wishlist-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gk-sample-wishlist .gk-wishlist-name {
    margin: 8px 12px 10px;
    color: var(--acct-ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
}

.gk-sample-wishlist .gk-product-meta,
.gk-sample-wishlist .gk-product-foot {
    margin-left: 12px;
    margin-right: 12px;
}

.gk-sample-wishlist .gk-product-meta {
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-bottom: 8px;
}

.gk-sample-wishlist .gk-product-meta span:not(.id) {
    flex-basis: 100%;
}

.gk-sample-wishlist .gk-wishlist-add,
.gk-sample-wishlist .gk-wishlist-state,
.gk-sample-wishlist .gk-wishlist-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 10px;
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-sample-wishlist .gk-wishlist-check {
    gap: 8px;
    margin-left: 12px;
    margin-right: 8px;
}

.gk-sample-wishlist .gk-wishlist-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--acct-red);
}

.gk-sample-wishlist .gk-wishlist-add {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    border: 1px solid var(--acct-ink);
    background: var(--acct-ink);
    color: #fff;
}

.gk-sample-wishlist .gk-wishlist-state {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    border: 1px solid var(--acct-line);
    color: var(--acct-muted);
}

.gk-wishlist-recs {
    padding: 80px 28px;
    border-top: 1px solid var(--acct-line);
}

.gk-wishlist-recs .gk-section-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    margin-bottom: 56px;
}

.gk-wishlist-recs .gk-section-eyebrow,
.gk-wishlist-recs .gk-section-link {
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-wishlist-recs .gk-section-eyebrow {
    color: var(--acct-red);
}

.gk-wishlist-recs .gk-section-title {
    margin: 0;
    color: var(--acct-ink);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
}

.gk-wishlist-recs .gk-section-link {
    color: var(--acct-ink);
    border-bottom: 1px solid var(--acct-ink);
    text-decoration: none;
}

#sct.gk-list-layout .gk-category-identity {
    padding: 56px 28px !important;
    border-bottom: 1px solid var(--acct-line) !important;
    background: var(--acct-bg) !important;
}

#sct.gk-list-layout .gk-category-identity__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    max-width: none !important;
    margin: 0 !important;
}

#sct.gk-list-layout .gk-category-identity__eyebrow {
    margin: 0 0 14px !important;
    color: var(--acct-red) !important;
    font-family: var(--gk-mono, monospace);
    font-size: 11px !important;
    letter-spacing: .1em !important;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-category-identity h1 {
    margin: 0 !important;
    color: var(--acct-ink) !important;
    font-size: 96px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: .88 !important;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-category-identity h1 em {
    color: var(--acct-red) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

#sct.gk-list-layout .gk-category-identity__meta {
    color: var(--acct-muted);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.8;
    text-align: right;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-category-identity__meta div {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

#sct.gk-list-layout .gk-category-identity__meta dt {
    display: inline;
    color: var(--acct-muted);
}

#sct.gk-list-layout .gk-category-identity__meta dd {
    display: inline;
    margin-left: 6px;
    color: var(--acct-ink);
}

#sct.gk-list-layout #sct_sortlst {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--acct-bg) !important;
}

#sct.gk-list-layout #sct_sortlst > .container,
#sct.gk-list-layout #sct_sortlst > .container-xxl {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sct.gk-list-layout .gk-list-body {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) !important;
    gap: 0 !important;
    min-height: 100vh;
}

#sct.gk-list-layout .gk-list-sidebar {
    position: sticky !important;
    top: 120px !important;
    align-self: start !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    padding: 32px 24px !important;
    overflow: visible !important;
    border-right: 1px solid var(--acct-line) !important;
    background: var(--acct-bg) !important;
    box-shadow: none !important;
}

#sct.gk-list-layout .gk-filter-drawer-header {
    display: none !important;
}

#sct.gk-list-layout .gk-filter-drawer-body {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
}

#sct.gk-list-layout .gk-sidebar-search {
    margin: 0 0 32px !important;
}

#sct.gk-list-layout .gk-sidebar-search-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 40px !important;
    height: 56px !important;
    overflow: hidden !important;
    border: 1px solid var(--acct-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#sct.gk-list-layout .gk-sidebar-search-wrap:focus-within {
    border-color: var(--acct-ink) !important;
    box-shadow: none !important;
}

#sct.gk-list-layout .gk-sidebar-search-input {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    padding: 0 14px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--acct-ink) !important;
    font-size: 13px !important;
}

#sct.gk-list-layout .gk-sidebar-search-btn {
    width: 40px !important;
    height: 100% !important;
    border: 0 !important;
    border-left: 1px solid var(--acct-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--acct-ink) !important;
}

#sct.gk-list-layout .gk-filter-form {
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
}

#sct.gk-list-layout .gk-filter-category-section { order: 1; }
#sct.gk-list-layout .gk-filter-size-section { order: 2; }
#sct.gk-list-layout .gk-filter-color-section { order: 3; }
#sct.gk-list-layout .gk-filter-price-section { order: 4; }
#sct.gk-list-layout .gk-filter-tag-section { order: 5; }
#sct.gk-list-layout .gk-filter-brand-section { order: 6; }
#sct.gk-list-layout .gk-filter-feature-section { order: 7; }
#sct.gk-list-layout .gk-filter-actions { order: 8; }

#sct.gk-list-layout .gk-filter-section {
    margin: 0 0 32px !important;
    padding: 0 0 30px !important;
    border-bottom: 1px solid var(--acct-line) !important;
}

#sct.gk-list-layout .gk-filter-title {
    margin: 0 0 14px !important;
    color: var(--acct-ink) !important;
    font-family: var(--gk-mono, monospace);
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-filter-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

#sct.gk-list-layout .gk-filter-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--acct-ink);
    text-decoration: none;
}

#sct.gk-list-layout .gk-filter-category-list a b,
#sct.gk-list-layout .gk-filter-category-list a span + b {
    color: var(--acct-muted);
    font-family: var(--gk-mono, monospace);
    font-size: 10px;
    font-weight: 400;
}

#sct.gk-list-layout .gk-filter-category-list a.is-active {
    color: var(--acct-red);
    font-weight: 800;
}

#sct.gk-list-layout .gk-filter-chip2-wrap {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
}

#sct.gk-list-layout .gk-filter-chip2 {
    display: flex !important;
    min-width: 0 !important;
    min-height: 36px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 4px !important;
    border: 1px solid var(--acct-ink) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--acct-ink) !important;
    font-family: var(--gk-mono, monospace);
    font-size: 10px !important;
    letter-spacing: .04em !important;
}

#sct.gk-list-layout .gk-filter-chip2 input {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#sct.gk-list-layout .gk-filter-chip2:has(input:checked) {
    background: var(--acct-ink) !important;
    color: var(--acct-bg) !important;
}

#sct.gk-list-layout .gk-filter-swatch-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

#sct.gk-list-layout .gk-filter-swatch {
    display: inline-flex !important;
    width: 24px !important;
    height: 24px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 0 !important;
}

#sct.gk-list-layout .gk-filter-swatch input,
#sct.gk-list-layout .gk-filter-swatch .gk-swatch-name {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#sct.gk-list-layout .gk-filter-swatch .gk-swatch-circle {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    border: 1px solid var(--acct-line) !important;
}

#sct.gk-list-layout .gk-filter-price-inputs {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
}

#sct.gk-list-layout .gk-filter-price-inputs input[type="number"] {
    width: 100% !important;
    height: 48px !important;
    min-width: 0 !important;
    padding: 0 12px !important;
    border: 1px solid var(--acct-ink) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--acct-ink) !important;
    font-size: 12px !important;
}

#sct.gk-list-layout .gk-filter-slider-wrap input[type="range"] {
    width: 100% !important;
    accent-color: var(--acct-red);
}

#sct.gk-list-layout .gk-filter-range-label {
    color: var(--acct-muted) !important;
    font-family: var(--gk-mono, monospace);
    font-size: 11px !important;
    letter-spacing: .04em !important;
}

#sct.gk-list-layout .gk-filter-check {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 0 !important;
    color: var(--acct-ink) !important;
    font-size: 13px !important;
}

#sct.gk-list-layout .gk-filter-check input {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--acct-red);
}

#sct.gk-list-layout .gk-filter-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sct.gk-list-layout .gk-filter-reset,
#sct.gk-list-layout .gk-filter-apply {
    display: flex !important;
    min-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--acct-ink) !important;
    border-radius: 0 !important;
    font-family: var(--gk-mono, monospace);
    font-size: 10px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-filter-apply {
    background: var(--acct-ink) !important;
    color: #fff !important;
}

#sct.gk-list-layout .gk-list-main {
    min-width: 0;
    padding: 32px 28px 96px !important;
}

#sct.gk-list-layout .gk-sort-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    min-height: 56px !important;
    margin: 0 0 24px !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid var(--acct-line) !important;
}

#sct.gk-list-layout .gk-list-result-count {
    color: var(--acct-ink);
    font-family: var(--gk-mono, monospace);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-list-result-count span {
    color: var(--acct-muted);
}

#sct.gk-list-layout .gk-sort-dropdown {
    margin-left: auto !important;
}

#sct.gk-list-layout .gk-sort-btn {
    min-width: 160px !important;
    height: 42px !important;
    border: 1px solid var(--acct-ink) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--acct-ink) !important;
    font-family: var(--gk-mono, monospace);
    font-size: 11px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase;
}

#sct.gk-list-layout .gk-product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 32px 16px !important;
    margin-bottom: clamp(56px, 5vw, 88px) !important;
}

#sct.gk-list-layout .gk-product-card,
.gk-sample-wishlist .gk-product-card {
    min-width: 0;
}

#sct.gk-list-layout .gk-product-img,
.gk-sample-wishlist .gk-product-img {
    min-width: 0;
}

#sct.gk-list-layout .gk-product-foot,
.gk-sample-wishlist .gk-product-foot {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 8px !important;
    min-width: 0;
}

#sct.gk-list-layout .gk-product-price,
.gk-sample-wishlist .gk-product-price {
    min-width: 0;
}

#sct.gk-list-layout .gk-product-colors,
.gk-sample-wishlist .gk-product-colors {
    display: flex !important;
    flex: 0 0 auto;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    max-width: 82px !important;
    overflow: visible !important;
}

#sct.gk-list-layout .gk-swatch,
.gk-sample-wishlist .gk-swatch {
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 12px !important;
    border-radius: 50% !important;
    border: 1px solid var(--acct-line) !important;
}

@media (max-width: 1024px) {
    #sct.gk-list-layout .gk-list-body {
        grid-template-columns: 220px minmax(0, 1fr) !important;
    }

    #sct.gk-list-layout .gk-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    }

    .gk-account-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .gk-mypage-dashboard {
        padding-bottom: 90px !important;
        background: #fff !important;
    }

    .gk-mypage-dashboard .gk-mypage-breadcrumb,
    .gk-account-sidebar,
    .gk-account-main-head,
    .gk-account-content-grid,
    .gk-mypage-dashboard #smb_my_list {
        display: none !important;
    }

    .gk-account-mobile-head {
        position: sticky;
        z-index: 20;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        padding: 10px 16px;
        border-bottom: 1px solid var(--acct-line);
        background: #fff;
    }

    .gk-account-mobile-head button,
    .gk-account-mobile-head a {
        display: flex;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--acct-ink);
        font-family: var(--gk-mono, monospace);
        text-decoration: none;
    }

    .gk-account-mobile-head span {
        font-family: var(--gk-mono, monospace);
        font-size: 11px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .gk-account-mobile-head span b {
        margin-right: 6px;
        color: var(--acct-red);
    }

    .gk-account-mobile-hero {
        display: block;
        padding: 28px 18px 22px;
        border-bottom: 1px solid var(--acct-line);
        background: #fff;
    }

    .gk-account-mobile-hero .greet {
        margin-bottom: 10px;
        color: var(--acct-red);
        font-family: var(--gk-mono, monospace);
        font-size: 9px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .gk-account-mobile-hero h1 {
        margin: 0 0 10px;
        color: var(--acct-ink);
        font-size: 54px;
        font-weight: 900;
        letter-spacing: 0;
        line-height: .88;
    }

    .gk-account-mobile-hero .email {
        color: var(--acct-muted);
        font-family: var(--gk-mono, monospace);
        font-size: 9px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .gk-account-shell,
    .gk-account-main {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
        background: #fff !important;
    }

    .gk-mypage-dashboard #smb_private.gk-account-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        margin: 0 !important;
        border-width: 1px 0 !important;
    }

    .gk-mypage-dashboard #smb_private.gk-account-stats a {
        min-height: 70px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 13px 6px !important;
        text-align: center;
    }

    .gk-mypage-dashboard #smb_private.gk-account-stats .metric-label {
        order: 2;
        margin: 5px 0 0 !important;
        color: var(--acct-muted) !important;
        font-size: 9px !important;
    }

    .gk-mypage-dashboard #smb_private.gk-account-stats strong {
        font-size: 24px !important;
    }

    .gk-mypage-dashboard #smb_private.gk-account-stats strong small,
    .gk-mypage-dashboard #smb_private.gk-account-stats .metric-note {
        display: none !important;
    }

    .gk-mobile-account-menu {
        display: block;
        margin: 0;
        padding: 18px 0 90px;
        list-style: none;
        background: #fff;
    }

    .gk-mobile-account-menu li.group-title {
        padding: 20px 18px 8px;
        color: var(--acct-red);
        font-family: var(--gk-mono, monospace);
        font-size: 9px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .gk-mobile-account-menu a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 0 18px;
        border-bottom: 1px solid var(--acct-line);
        color: var(--acct-ink);
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }

    .gk-mobile-account-menu a span:last-child {
        color: var(--acct-muted);
        font-family: var(--gk-mono, monospace);
        font-size: 10px;
        letter-spacing: .06em;
    }

    .gk-mobile-account-menu a span.red {
        color: var(--acct-red) !important;
    }

    .gk-sample-wishlist .gk-wishlist-head {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 18px 32px;
    }

    .gk-sample-wishlist .gk-wishlist-head h1 {
        font-size: 54px;
    }

    .gk-sample-wishlist .gk-wishlist-head .meta {
        text-align: left;
    }

    .gk-wishlist-section {
        padding: 28px 18px 90px;
    }

    .gk-wishlist-tools {
        width: 100%;
        margin-left: 0;
    }

    .gk-wishlist-tools .gk-btn-line {
        flex: 1 1 0;
    }

    .gk-sample-wishlist .gk-wishlist-grid,
    .gk-wishlist-recs .gk-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 12px;
    }

    .gk-wishlist-recs {
        padding: 54px 18px 90px;
    }

    .gk-wishlist-recs .gk-section-head {
        display: block;
        margin-bottom: 28px;
    }

    .gk-wishlist-recs .gk-section-title {
        margin: 10px 0 16px;
        font-size: 44px;
    }

    #sct.gk-list-layout .gk-category-identity {
        padding: 30px 18px !important;
    }

    #sct.gk-list-layout .gk-category-identity__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #sct.gk-list-layout .gk-category-identity h1 {
        font-size: 48px !important;
    }

    #sct.gk-list-layout .gk-category-identity__meta {
        text-align: left;
    }

    #sct.gk-list-layout .gk-list-body {
        display: block !important;
    }

    #sct.gk-list-layout .gk-list-sidebar {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 10010 !important;
        width: min(360px, 92vw) !important;
        max-height: none !important;
        padding: 0 !important;
        overflow-y: auto !important;
        transform: translateX(-105%);
        transition: transform .22s ease;
    }

    #sct.gk-list-layout .gk-list-sidebar.is-open {
        transform: translateX(0);
    }

    #sct.gk-list-layout .gk-filter-drawer-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 0 18px;
        border-bottom: 1px solid var(--acct-line);
        background: #fff;
    }

    #sct.gk-list-layout .gk-filter-drawer-body {
        padding: 22px 18px 92px !important;
        overflow: visible !important;
    }

    #sct.gk-list-layout .gk-filter-mobile-btn,
    #sct.gk-list-layout .gk-sort-mobile-trigger {
        display: inline-flex !important;
        min-height: 38px;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border: 1px solid var(--acct-ink);
        border-radius: 0;
        background: transparent;
        color: var(--acct-ink);
        font-family: var(--gk-mono, monospace);
        font-size: 10px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    #sct.gk-list-layout .gk-list-main {
        padding: 24px 18px 90px !important;
    }

    #sct.gk-list-layout .gk-sort-toolbar {
        gap: 10px !important;
    }

    #sct.gk-list-layout .gk-list-result-count {
        font-size: 10px;
    }

    #sct.gk-list-layout .gk-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px 12px !important;
    }

    #sct.gk-list-layout .gk-product-colors,
    .gk-sample-wishlist .gk-product-colors {
        max-width: 62px !important;
    }
}

.gk-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--gk-line);
}

.gk-editorial-copy {
    display: flex;
    min-height: 640px;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gk-ink);
    color: var(--gk-bg);
    padding: 80px 60px;
}

.gk-editorial-copy h2,
.gk-newsletter h2 {
    margin: 0;
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .86;
    text-transform: uppercase;
}

.gk-editorial-copy h2 em,
.gk-newsletter h2 em {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}

.gk-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 32px;
}

.gk-stat strong {
    display: block;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.gk-editorial-quote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gk-red);
    color: #fff;
    padding: 48px;
}

.gk-editorial-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, .06) 20px 21px);
}

.gk-editorial-quote blockquote {
    position: relative;
    max-width: 460px;
    margin: 0;
    font-size: 36px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
}

.gk-newsletter {
    border-bottom: 1px solid var(--gk-line);
    padding: 100px 28px;
    text-align: center;
}

.gk-newsletter h2 {
    font-size: 120px;
}

.gk-newsletter p {
    max-width: 480px;
    margin: 24px auto 40px;
    color: var(--gk-muted);
    font-size: 15px;
    line-height: 1.6;
}

.gk-newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid var(--gk-ink);
}

.gk-newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 0 !important;
    padding: 18px 20px;
}

.gk-newsletter-form button {
    border: 0 !important;
    border-left: 1px solid var(--gk-ink) !important;
    padding: 0 28px;
}

.gk-footer {
    overflow: hidden;
    background: var(--gk-ink);
    color: var(--gk-bg);
    padding: 80px 28px 28px;
}

.gk-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.gk-footer-logo {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .85;
    text-transform: uppercase;
}

.gk-footer-tag {
    margin-top: 16px;
    color: rgba(255, 255, 255, .5);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .05em;
    line-height: 1.6;
    text-transform: uppercase;
}

.gk-footer-col h4 {
    margin: 0 0 18px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gk-footer-col a {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.gk-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 28px;
    color: rgba(255, 255, 255, .4);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gk-footer-big {
    overflow: hidden;
    margin: 60px -28px -28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 40px 28px 0;
    font-size: 180px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .8;
    text-transform: uppercase;
    white-space: nowrap;
}

.gk-mobile-tabbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1060;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--gk-line);
    background: #fff;
}

.gk-mobile-tabbar a,
.gk-mobile-tabbar button {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 78px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    background: transparent;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 9px;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.gk-mobile-tabbar .ic {
    font-size: 22px;
}

.gk-mobile-tabbar .is-active {
    color: var(--gk-ink);
}

.gk-mobile-tabbar .is-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 32px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--gk-red);
}

.gk-drawer,
.gk-search-panel {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    background: rgba(10, 10, 10, .45);
}

.gk-drawer.is-open,
.gk-search-panel.is-open {
    display: block;
}

.gk-drawer-panel {
    width: min(430px, calc(100% - 64px));
    height: 100%;
    overflow-y: auto;
    background: #050505;
    color: #fff;
}

.gk-search-panel-inner {
    width: min(720px, 100%);
    height: 100%;
    overflow-y: auto;
    background: var(--gk-bg);
    color: var(--gk-ink);
}

.gk-search-panel-inner {
    margin-left: auto;
    padding: 28px;
}

.gk-search-panel-title {
    font-size: 88px;
}

.gk-drawer-head,
.gk-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
}

.gk-drawer-head {
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 18px 12px;
}

.gk-drawer-headline {
    display: grid;
    gap: 18px;
}

.gk-drawer-kicker,
.gk-drawer-section h3,
.gk-drawer-account-title {
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gk-drawer-logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
}

.gk-drawer-logo span {
    color: var(--gk-red);
}

.gk-drawer-close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.gk-drawer-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

.gk-drawer-user .avatar {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--gk-red);
    color: #fff;
    font-weight: 900;
}

.gk-drawer-user .name {
    font-size: 15px;
    font-weight: 800;
}

.gk-drawer-user .meta {
    margin-top: 3px;
    color: rgba(255, 255, 255, .5);
    font-family: var(--gk-mono);
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gk-drawer-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 18px 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gk-drawer-stats a {
    padding: 12px 4px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.gk-drawer-stats a:last-child {
    border-right: 0;
}

.gk-drawer-stats b {
    display: block;
    color: var(--gk-red);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.gk-drawer-stats span {
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
}

.gk-drawer-section {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gk-drawer-section h3 {
    margin: 0 0 14px;
}

.gk-drawer-section h3 b {
    color: rgba(255, 255, 255, .9);
    margin-right: 6px;
}

.gk-drawer-cats {
    display: grid;
}

.gk-drawer-cat {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto auto;
    align-items: baseline;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gk-drawer-cat .num,
.gk-drawer-cat .count {
    color: rgba(255, 255, 255, .45);
    font-family: var(--gk-mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-drawer-cat .name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .95;
    text-transform: uppercase;
}

.gk-drawer-cat .name em {
    margin-left: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-style: italic;
    font-weight: 600;
    text-transform: none;
}

.gk-drawer-cat .arr {
    color: var(--gk-red);
    font-family: var(--gk-mono);
}

.gk-drawer-cat.is-sale .name,
.gk-drawer-cat.is-sale .arr {
    color: var(--gk-red);
}

.gk-drawer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gk-drawer-pills a {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 7px 12px;
    color: #fff;
    font-size: 11px;
}

.gk-drawer-pills .is-red {
    border-color: var(--gk-red);
    background: var(--gk-red);
}

.gk-drawer-pills .is-dark {
    border-color: #fff;
}

.gk-drawer-feature {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    background: var(--gk-red);
    color: #fff;
    padding: 18px 16px;
}

.gk-drawer-feature .lab,
.gk-drawer-feature .sub {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--gk-mono);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-drawer-feature strong {
    position: relative;
    z-index: 1;
    display: block;
    margin: 8px 0;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .86;
    text-transform: uppercase;
}

.gk-drawer-feature .num {
    position: absolute;
    right: 10px;
    bottom: -8px;
    color: rgba(255, 255, 255, .22);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.gk-drawer-account {
    padding: 18px;
}

.gk-drawer-account-title {
    margin-bottom: 12px;
}

.gk-drawer-account a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
}

.gk-drawer-account b {
    color: rgba(255, 255, 255, .45);
    font-family: var(--gk-mono);
    font-weight: 400;
}

.gk-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    border: 1px solid var(--gk-ink);
}

.gk-search-form input {
    border: 0 !important;
    padding: 18px 20px;
}

.gk-search-form button {
    min-width: 120px;
    border: 0 !important;
    border-left: 1px solid var(--gk-ink) !important;
}

.gk-search-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.filter-chip,
.gk-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--gk-ink);
    border-radius: 999px;
    background: transparent;
    color: var(--gk-ink);
    padding: 10px 18px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.filter-chip.active,
.gk-chip.is-active {
    background: var(--gk-ink);
    color: var(--gk-bg);
}

/* System pages */
.gk-auth {
    border-bottom: 1px solid var(--gk-line);
    padding: 0;
}

.gk-auth .container {
    padding: 0 !important;
}

.gk-auth-breadcrumb {
    display: none;
}

.gk-auth-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
    min-height: calc(100vh - 160px);
}

.gk-auth-visual {
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: var(--gk-ink) !important;
    color: #fff !important;
    padding: 80px 60px !important;
}

.gk-auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 30px, rgba(255, 255, 255, .04) 30px 31px);
}

.gk-auth-visual > * {
    position: relative;
}

.gk-auth-eyebrow {
    margin: 0 0 24px !important;
    color: var(--gk-red) !important;
    font-family: var(--gk-mono) !important;
    font-size: 11px !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

.gk-auth-visual-title {
    margin: 0 !important;
    max-width: 620px;
    font-size: 96px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: .88 !important;
    text-transform: uppercase !important;
}

.gk-auth-visual-text,
.gk-auth-feature-list,
.gk-auth-step-list {
    max-width: 520px;
    color: rgba(255, 255, 255, .7) !important;
}

.gk-auth-card {
    width: 100%;
    max-width: none !important;
    border: 0 !important;
    border-left: 1px solid var(--gk-line) !important;
    border-radius: 0 !important;
    background: var(--gk-bg) !important;
    padding: 80px 60px !important;
    box-shadow: none !important;
}

.gk-auth-heading h2 {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .95;
    text-transform: uppercase;
}

.gk-auth-heading p {
    color: var(--gk-muted);
}

.gk-auth-form {
    display: grid;
    gap: 14px;
}

.gk-auth-row,
.gk-auth-alt {
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-auth-btn,
.gk-auth-btn-secondary {
    min-height: 54px !important;
}

.gk-auth-legal-section,
.register_form_inner,
#reg_result,
#mb_login_notmb,
#mb_login_od_wr {
    border: 1px solid var(--gk-line) !important;
    border-radius: 0 !important;
    background: var(--gk-bg) !important;
}

#bo_list,
#bo_gall,
#bo_v,
#bo_w,
.tbl_wrap,
.form_01,
.cart-wrapper,
.order-list-page,
#sod_frm,
#sod_bsk,
#sod_v,
#sit {
    width: 100% !important;
    max-width: 100% !important;
}

#bo_list,
#bo_gall,
#bo_v,
#bo_w {
    padding: 32px 28px;
}

#bo_btn_top,
.bo_fx,
.btn_bo_user,
.btn_bo_adm {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    float: none !important;
    width: 100%;
}

.btn_bo_user,
.btn_bo_adm {
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn_bo_user li,
.btn_bo_adm li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    background: transparent !important;
}

#bo_list_total {
    color: var(--gk-muted) !important;
    font-family: var(--gk-mono);
    font-size: 11px !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#bo_cate {
    margin: 0 0 24px !important;
}

#bo_cate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

#bo_cate li {
    padding: 0 !important;
}

#bo_cate a,
#bo_cate #bo_cate_on {
    border: 1px solid var(--gk-ink) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--gk-ink) !important;
    padding: 10px 18px !important;
    box-shadow: none !important;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    line-height: 1.2 !important;
    text-transform: uppercase;
}

#bo_cate #bo_cate_on,
#bo_cate a:hover {
    background: var(--gk-ink) !important;
    color: var(--gk-bg) !important;
}

.card-post-classic,
.gall_box,
#bo_v {
    border: 0 !important;
    border-bottom: 1px solid var(--gk-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.card-post-classic .card-body {
    border-color: var(--gk-line) !important;
}

.card-post-classic .card-title,
.bo_tit,
#bo_v_title .bo_v_tit {
    color: var(--gk-ink) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

#bo_v_title .bo_v_tit {
    font-size: 72px !important;
    line-height: .98 !important;
    text-transform: uppercase;
}

#bo_v_info,
.post-meta,
.gall_info {
    color: var(--gk-muted) !important;
    font-family: var(--gk-mono);
    font-size: 10px !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#bo_v_con {
    max-width: 960px;
    margin: 40px auto;
    color: #222;
    font-size: 16px;
    line-height: 1.75;
}

#bo_v_con img {
    max-width: 100% !important;
    height: auto !important;
}

.bo_v_nb li,
.cmt_list li,
#bo_v_file li,
#bo_v_link li,
.tbl_head01 tr,
.tbl_frm01 tr {
    border-color: var(--gk-line) !important;
    background: transparent !important;
}

.tbl_head01 table,
.tbl_frm01 table,
table {
    width: 100%;
    border-collapse: collapse;
}

.tbl_head01 th,
.tbl_head01 td,
.tbl_frm01 th,
.tbl_frm01 td {
    border-color: var(--gk-line) !important;
    background: transparent !important;
    color: var(--gk-ink);
}

.pg_wrap {
    width: 100%;
    margin: 42px 0 !important;
    text-align: center;
}

.pg_page,
.pg_current {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--gk-ink) !important;
    font-family: var(--gk-mono);
    font-size: 11px;
}

.pg_current {
    background: var(--gk-ink) !important;
    color: var(--gk-bg) !important;
}

/* Existing commerce pages, restyled as the new system */
.cart-wrapper {
    padding: 56px 28px 80px !important;
    background: var(--gk-bg) !important;
}

.cart-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
    margin: -56px -28px 32px;
    border-bottom: 1px solid var(--gk-line);
    padding: 56px 28px;
}

.cart-header .sub-info,
.cart-steps {
    color: var(--gk-muted) !important;
    font-family: var(--gk-mono);
    font-size: 11px !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px) !important;
    gap: 0 !important;
    border-top: 1px solid var(--gk-line);
}

.cart-main {
    min-width: 0;
    border-right: 1px solid var(--gk-line);
    padding-right: 28px;
}

.cart-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    padding-left: 28px;
}

.cart-item,
.order-summary,
.cart-notice,
.cart-bottom-summary,
.cart-info-section {
    border-color: var(--gk-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.cart-item {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto !important;
    gap: 18px !important;
    padding: 24px 0 !important;
    border-bottom: 1px solid var(--gk-line) !important;
}

.cart-item .item-img,
.recommended-item-img {
    aspect-ratio: 3 / 4 !important;
    border-radius: 0 !important;
    background: var(--gk-cream) !important;
}

.cart-item .item-img img,
.recommended-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-summary h3,
.cart-info-section h3 {
    color: var(--gk-red) !important;
    font-family: var(--gk-mono);
    font-size: 11px !important;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.order-summary .btn-order,
.cart-item .item-actions .btn-buy {
    border-color: var(--gk-red) !important;
    background: var(--gk-red) !important;
    color: #fff !important;
}

#sit.container-xxl {
    padding: 32px 28px 80px !important;
}

#sit_ov_from,
.sit_ov_from_custom {
    background: var(--gk-bg) !important;
    color: var(--gk-ink) !important;
}

.sit_title_custom {
    font-size: 72px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: .92 !important;
    text-transform: uppercase;
}

.sit_brand,
.sit_review_count,
.sit_delivery_label,
.sit_benefit_row .label,
.sit_option_heading,
.quick_option_title {
    color: var(--gk-muted) !important;
    font-family: var(--gk-mono) !important;
    font-size: 10px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.sit_price_final,
.sit_price_main,
#sit_tot_price .price_val {
    color: var(--gk-red) !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

.sit_benefit_box,
.sit_delivery_info,
.quick_option_box,
#sit_sel_option,
.sit_option_area select {
    border-color: var(--gk-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.btn_cart,
.btn_buy,
.btn_wish_custom,
.btn_action {
    border-radius: 0 !important;
    font-family: var(--gk-mono) !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.btn_buy {
    background: var(--gk-red) !important;
    border-color: var(--gk-red) !important;
}

body.has-bottom-nav {
    padding-bottom: 64px;
}

@media (max-width: 1199px) {
    .gk-nav {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 18px;
        padding: 16px;
    }

    .gk-nav-left {
        display: none;
    }

    .gk-menu-toggle {
        display: inline-flex;
    }

    .gk-logo {
        justify-self: center;
        font-size: 22px;
    }

    .gk-nav-right {
        gap: 16px;
    }

    .gk-nav-right .gk-icon-btn:not(.keep-mobile) {
        display: none;
    }

    .gk-hero,
    .gk-editorial,
    .gk-auth-grid,
    .cart-layout {
        grid-template-columns: 1fr !important;
    }

    .gk-hero {
        min-height: 0;
    }

    .gk-hero-panel.is-left {
        border-right: 0;
        border-bottom: 1px solid var(--gk-line);
    }

    .gk-hero-panel.is-dark {
        border-left: 0;
    }

    .gk-hero-image {
        min-height: 520px;
    }

    .gk-cat-grid,
    .gk-product-grid,
    .product-grid,
    .gk-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-main {
        border-right: 0;
        padding-right: 0;
    }

    .cart-sidebar {
        position: static;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 13px;
    }

    .gk-topbar {
        justify-content: center;
        padding: 7px 12px;
        font-size: 9px;
    }

    .gk-topbar-ticker span:nth-child(n+2),
    .gk-lang {
        display: none;
    }

    .gk-nav {
        top: 0;
    }

    .gk-logo {
        font-size: 18px;
    }

    .gk-logo small {
        display: none;
    }

    .gk-icon-btn {
        font-size: 10px;
    }

    .gk-mobile-tabbar {
        display: grid;
    }

    .gk-section,
    .gk-newsletter,
    #bo_list,
    #bo_gall,
    #bo_v,
    #bo_w,
    .cart-wrapper,
    #sit.container-xxl {
        padding: 36px 16px !important;
    }

    .gk-section-head,
    .page-head,
    .gk-page-head,
    .page-title .text-center,
    .cart-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 36px 16px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .page-head .meta,
    .gk-page-head .meta {
        text-align: left;
    }

    .gk-hero-panel,
    .gk-editorial-copy,
    .gk-editorial-quote,
    .gk-auth-visual,
    .gk-auth-card {
        padding: 36px 16px !important;
    }

    .gk-hero-title {
        margin-top: 32px;
        font-size: 64px;
    }

    .gk-section-title,
    .page-head h1,
    .cart-header h1,
    .page-title h2,
    .gk-auth-visual-title,
    .sit_title_custom,
    #bo_v_title .bo_v_tit {
        font-size: 52px !important;
        line-height: .92 !important;
    }

    .gk-hero-num {
        font-size: 130px;
    }

    .gk-editorial-copy h2,
    .gk-newsletter h2 {
        font-size: 56px;
        line-height: .92;
    }

    .gk-editorial-quote blockquote,
    #sit_tot_price .price_val,
    .sit_price_final,
    .sit_price_main {
        font-size: 30px !important;
    }

    .gk-footer-big {
        font-size: 72px;
    }

    .gk-hero-image {
        min-height: 420px;
    }

    .gk-hero-links {
        margin-top: 36px;
    }

    .gk-cat-grid,
    .gk-product-grid,
    .product-grid,
    .gk-stat-grid,
    .gk-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    .gk-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gk-footer-grid > :first-child {
        grid-column: 1 / -1;
    }

    .gk-footer-bottom,
    .gk-newsletter-form,
    .cart-item {
        flex-direction: column;
        grid-template-columns: 1fr !important;
        align-items: stretch;
    }

    .gk-newsletter-form button {
        min-height: 48px;
        border-top: 1px solid var(--gk-ink) !important;
        border-left: 0 !important;
    }

    .gk-product-quick {
        display: none;
    }

    .gk-footer {
        padding: 56px 16px 72px;
    }

    .gk-footer-big {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .tbl_head01,
    .tbl_frm01,
    .tbl_wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 420px) {
    .gk-cat-grid,
    .gk-product-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gk-cat-name {
        right: 12px;
        bottom: 12px;
        left: 12px;
        font-size: 22px;
    }

    .gk-cat-arrow,
    .gk-cat-count {
        display: none;
    }

    .gk-product-name {
        font-size: 14px;
    }
}

/* ============================================
   GLOW·KIKI — listtype page (BEST/PICKS/NEW/POPULAR/SALE)
   sampletest 디자인 시스템, 자간 0, Pretendard 단일 스택
   ============================================ */
#gk-listtype {
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

#gk-listtype * {
    box-sizing: border-box;
    max-width: 100%;
}

#gk-listtype .gk-breadcrumb {
    padding: 14px 28px;
    border-bottom: 1px solid var(--gk-line);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-muted);
}

#gk-listtype .gk-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

#gk-listtype .gk-breadcrumb a:hover {
    color: var(--gk-ink);
}

#gk-listtype .gk-breadcrumb span {
    color: var(--gk-line);
}

#gk-listtype .gk-breadcrumb b {
    color: var(--gk-ink);
    font-weight: 500;
}

#gk-listtype .gk-page-head {
    padding: 56px 28px;
    border-bottom: 1px solid var(--gk-line);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

#gk-listtype .gk-page-head .eyebrow {
    font-family: var(--gk-mono);
    font-size: 11px;
    color: var(--gk-red);
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

#gk-listtype .gk-page-head h1 {
    font-weight: 900;
    font-size: 80px;
    letter-spacing: 0;
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#gk-listtype .gk-page-head h1 em {
    font-style: italic;
    color: var(--gk-red);
    font-weight: 400;
}

#gk-listtype .gk-page-head .lead {
    margin-top: 18px;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gk-ink-2);
}

#gk-listtype .gk-page-head .meta {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-muted);
    text-align: right;
    line-height: 1.8;
}

#gk-listtype .gk-page-head .meta b {
    color: var(--gk-ink);
    font-weight: 500;
}

#gk-listtype .gk-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--gk-line);
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

#gk-listtype .gk-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#gk-listtype .gk-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1px solid var(--gk-ink);
    border-radius: 999px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gk-ink);
    background: transparent;
    line-height: 1;
}

#gk-listtype .gk-chip:hover {
    background: rgba(0, 0, 0, 0.04);
}

#gk-listtype .gk-chip.is-active {
    background: var(--gk-ink);
    color: #fff;
}

#gk-listtype .gk-sort-select {
    background: transparent;
    border: 1px solid var(--gk-ink);
    padding: 10px 34px 10px 14px;
    font-family: var(--gk-mono);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-ink);
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gk-ink) 50%),
        linear-gradient(135deg, var(--gk-ink) 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    line-height: 1;
}

#gk-listtype .gk-sort-select:focus {
    border-color: var(--gk-red);
    outline: none;
}

#gk-listtype .gk-grid-wrap {
    padding: 32px 28px clamp(128px, 8vw, 188px);
    width: 100%;
    max-width: 100%;
}

#gk-listtype .gk-grid-wrap .empty {
    padding: 80px 24px;
    text-align: center;
}

#gk-listtype .gk-grid-wrap .empty .big {
    font-weight: 900;
    font-size: 48px;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

#gk-listtype .gk-grid-wrap .empty .big em {
    font-style: italic;
    color: var(--gk-red);
    font-weight: 400;
}

#gk-listtype .gk-grid-wrap .empty p {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-muted);
}

#gk-listtype .gk-paging {
    padding: 32px 24px clamp(120px, 8vw, 180px);
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--gk-line);
}

#gk-listtype .gk-paging .pg_wrap {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

#gk-listtype .gk-paging .pg a,
#gk-listtype .gk-paging .pg strong {
    display: inline-block;
    padding: 6px 10px;
    min-width: 32px;
    text-align: center;
    border: 1px solid var(--gk-line);
    color: var(--gk-ink);
    text-decoration: none;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
}

#gk-listtype .gk-paging .pg strong {
    background: var(--gk-ink);
    color: #fff;
    border-color: var(--gk-ink);
}

#gk-listtype .gk-paging .pg a:hover {
    border-color: var(--gk-ink);
}

@media (max-width: 1024px) {
    #gk-listtype .gk-page-head h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    #gk-listtype {
        padding-bottom: 64px;
    }
}

@media (max-width: 640px) {
    #gk-listtype .gk-breadcrumb {
        padding: 12px 16px;
    }

    #gk-listtype .gk-page-head {
        grid-template-columns: 1fr;
        padding: 24px 16px;
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
    }

    #gk-listtype .gk-page-head h1 {
        font-size: 32px;
        line-height: 0.98;
    }

    #gk-listtype .gk-page-head .meta {
        text-align: left;
    }

    #gk-listtype .gk-page-head .lead {
        font-size: 13px;
    }

    #gk-listtype .gk-tools {
        padding: 12px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    #gk-listtype .gk-filter-bar {
        gap: 6px;
    }

    #gk-listtype .gk-chip {
        padding: 8px 12px;
        font-size: 10px;
    }

    #gk-listtype .gk-sort-select {
        align-self: flex-end;
        padding: 8px 30px 8px 12px;
        font-size: 11px;
    }

    #gk-listtype .gk-grid-wrap {
        padding: 16px 14px 120px;
    }

    #gk-listtype .gk-grid-wrap .empty .big {
        font-size: 32px;
    }

    #gk-listtype .gk-paging {
        padding: 18px 14px;
    }
}

@media (max-width: 400px) {
    #gk-listtype .gk-page-head h1 {
        font-size: 26px;
    }

    #gk-listtype .gk-grid-wrap .empty .big {
        font-size: 28px;
    }
}

/* GLOW·KIKI — 모바일 overflow 강제 클램프 (gatekeeper 게이트2) */
@media (max-width: 1024px) {
    html,
    body {
        max-width: 100vw;
        overflow-x: hidden !important;
    }

    body > *,
    #wrapper.gk-wrapper,
    #shop-content.gk-content,
    .shop-content,
    #gk-listtype,
    #gk-listtype > * {
        max-width: 100%;
        min-width: 0;
    }

    #gk-listtype {
        contain: layout;
    }
}

/* ============================================
   GLOW·KIKI — list.php (카테고리 리스트) 페이지 외곽 룰
   shop/list.php 의 기존 inline <style> 이전
   ============================================ */
#sct.gk-list-layout .shop-location-row {
    margin-top: 14px;
}

#sct.gk-list-layout .container-xxl,
#sct.gk-list-layout .gk-shop-shell {
    max-width: 100%;
    width: 100%;
}

#sct.gk-list-layout #sct_sortlst {
    background: transparent;
    border: none;
    float: none;
    width: auto;
    clear: none;
    padding-top: 20px;
}

#sct.gk-list-layout #sct_sortlst::after {
    display: none;
}

@media (max-width: 767px) {
    #sct.gk-list-layout .shop-location-row {
        margin-top: 10px;
    }

    #sct.gk-list-layout #sct_sortlst {
        padding-top: 12px;
    }
}
/* GLOW·KIKI — listcategory.skin.php inline style 이전 */
#sct_ct_1.sct_ct_submenu {
    margin: 0 0 14px;
    padding: 10px 0 0;
    border: 0;
    background: transparent;
}
#sct_ct_1.sct_ct_submenu h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
#sct_ct_1 .sct_subcat_title {
    margin: 0 0 8px;
    padding: 0 2px;
}
#sct_ct_1 .sct_subcat_title a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #222;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
#sct_ct_1 .sct_subcat_title i {
    font-size: 14px;
    color: #555;
}
#sct_ct_1 .sct_ct_tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid #e7e7e7;
}
#sct_ct_1 .sct_ct_tabs::-webkit-scrollbar {
    display: none;
}
#sct_ct_1 .sct_ct_tabs li {
    float: none;
    width: auto;
    border-right: 0;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    scroll-snap-align: start;
}
#sct_ct_1 .sct_ct_tabs a {
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 14px;
    color: #9a9a9a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
#sct_ct_1 .sct_ct_tabs li.is_active a {
    color: #111;
    border-bottom-color: #111;
}
@media (max-width: 767px) {
    #sct_ct_1 .sct_subcat_title {
        margin-bottom: 6px;
    }
    #sct_ct_1 .sct_subcat_title a {
        font-size: 18px;
    }
    #sct_ct_1 .sct_ct_tabs {
        scroll-snap-type: x proximity;
    }
    #sct_ct_1 .sct_ct_tabs a {
        height: 42px;
        line-height: 42px;
        padding: 0 12px;
        font-size: 14px;
    }
}
/* GLOW·KIKI — navigation.skin.php inline style 이전 */
.shop-location-row {
    margin: 18px 0 28px;
}

body.gk-header-sticky-active .shop-location-row {
    margin-top: 24px;
}

#sct_location.is_unified_breadcrumb {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    float: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

#sct_location.is_unified_breadcrumb .go_home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #fdecea;
    color: #c0392b;
    text-decoration: none;
    font-size: 14px;
}

#sct_location.is_unified_breadcrumb .go_home:hover {
    background: #fad4d0;
}

#sct_location.is_unified_breadcrumb .dividing-line {
    color: #a7b2ac;
    font-size: 12px;
    line-height: 1;
}

#sct_location.is_unified_breadcrumb select {
    margin: 0;
    float: none;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    position: relative;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    background: transparent;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html .category_title {
    display: inline-flex;
    align-items: center;
    height: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    padding: 0 12px;
    background: #fff;
    color: #222;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html .category_title i {
    margin-left: 6px;
    color: #c0392b;
    font-size: 11px;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html .menulist {
    top: 100%;
    margin-top: 0 !important;
    z-index: 40;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html.is-open .menulist {
    display: block;
    opacity: 1;
}

#sct_location.is_unified_breadcrumb .breadcrumb-current {
    display: inline-block;
    max-width: 260px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    padding: 5px 12px 6px;
    background: #fdecea;
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .shop-location-row {
        margin: 12px 0 10px;
    }

    body.gk-header-sticky-active .shop-location-row {
        margin-top: 14px;
    }

    #sct_location.is_unified_breadcrumb {
        gap: 6px;
    }

    #sct_location.is_unified_breadcrumb .shop_select_to_html .category_title {
        height: 28px;
        padding: 0 10px;
        font-size: 12px;
    }

    #sct_location.is_unified_breadcrumb .breadcrumb-current {
        max-width: calc(100vw - 80px);
        font-size: 12px;
    }
}
/* GLOW·KIKI — list.sort.skin.php inline style 이전 */
/* ================================================
   사이드바 레이아웃 전체 (기존 style.css 재정의)
   ================================================ */
#sct_sortlst {
    padding-top: 20px;
    background: transparent !important;
    border: none !important;
    float: none !important;
    width: auto !important;
    clear: none !important;
}

.gk-list-body {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* ================================================
   사이드바
   ================================================ */
.gk-list-sidebar {
    width: 240px;
    min-width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 28px;
    padding-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: #d0d7de transparent;
}

.gk-list-sidebar::-webkit-scrollbar {
    width: 4px;
}
.gk-list-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.gk-list-sidebar::-webkit-scrollbar-thumb {
    background: #d0d7de;
    border-radius: 4px;
}

/* ================================================
   메인 콘텐츠 영역
   ================================================ */
.gk-list-main {
    flex: 1;
    min-width: 0;
}

/* ================================================
   카테고리 내 검색
   ================================================ */
.gk-sidebar-search {
    margin-bottom: 20px;
}

.gk-sidebar-search-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d4dbe5;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.15s;
}

.gk-sidebar-search-wrap:focus-within {
    border-color: #c0392b;
}

.gk-sidebar-search-input {
    flex: 1;
    height: 36px;
    border: 0;
    background: transparent;
    padding: 0 10px;
    font-size: 13px;
    color: #1f2937;
    outline: none;
    min-width: 0;
}

.gk-sidebar-search-input::placeholder {
    color: #9ca3af;
}

.gk-sidebar-search-btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.15s;
}

.gk-sidebar-search-btn:hover {
    color: #c0392b;
}

/* ================================================
   필터 폼
   ================================================ */
.gk-filter-form {
    width: 100%;
}

.gk-filter-section {
    margin-bottom: 0;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
}

.gk-filter-section:first-child {
    padding-top: 0;
}

.gk-filter-section:last-of-type {
    border-bottom: none;
}

.gk-filter-title {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* 평점 */
.gk-filter-rating-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gk-filter-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.gk-filter-radio input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #c0392b;
    cursor: pointer;
}

.gk-filter-radio-label {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.gk-filter-radio input[type="radio"]:checked ~ .gk-filter-radio-label {
    color: #c0392b;
    font-weight: 700;
}

/* 가격 범위 */
.gk-filter-price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.gk-filter-price-inputs input[type="number"] {
    flex: 1;
    height: 34px;
    border: 1px solid #d4dbe5;
    border-radius: 6px;
    padding: 0 8px;
    font-size: 12px;
    color: #374151;
    outline: none;
    min-width: 0;
    transition: border-color 0.15s;
}

.gk-filter-price-inputs input[type="number"]:focus {
    border-color: #c0392b;
}

.gk-filter-price-sep {
    font-size: 12px;
    color: #9ca3af;
    flex-shrink: 0;
}

.gk-filter-slider-wrap {
    display: grid;
    gap: 4px;
    margin-bottom: 4px;
}

.gk-filter-slider-wrap input[type="range"] {
    width: 100%;
    accent-color: #c0392b;
}

.gk-filter-range-label {
    margin: 0;
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.gk-filter-range-sep {
    color: #9ca3af;
}

/* 칩 (사이즈/컬러/태그/브랜드) */
.gk-filter-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gk-filter-chip2 {
    display: inline-flex;
    align-items: center;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0 9px;
    font-size: 12px;
    color: #374151;
    background: transparent;
    cursor: pointer;
    margin-bottom: 0;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.gk-filter-chip2 input {
    display: none;
}

.gk-filter-chip2:has(input:checked) {
    border-color: #c0392b;
    background: #f0faf5;
    color: #007a43;
    font-weight: 600;
}

.gk-filter-chip2:hover {
    border-color: #c0392b;
}

/* 컬러 스와치 */
.gk-filter-swatch-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gk-filter-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin-bottom: 0;
    width: 48px;
}

.gk-filter-swatch input {
    display: none;
}

.gk-swatch-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    flex-shrink: 0;
}

.gk-filter-swatch.is-light .gk-swatch-circle {
    border-color: #d1d5db;
}

.gk-swatch-multi {
    background: conic-gradient(#e53e3e 0deg, #ecc94b 60deg, #c0392b 120deg, #3182ce 180deg, #805ad5 240deg, #ed64a6 300deg, #e53e3e 360deg);
}

.gk-swatch-name {
    font-size: 10px;
    color: #6b7280;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.gk-filter-swatch:hover .gk-swatch-circle {
    border-color: #c0392b;
    transform: scale(1.08);
}

.gk-filter-swatch:has(input:checked) .gk-swatch-circle {
    border-color: #c0392b;
    box-shadow: 0 0 0 2px #c0392b, inset 0 0 0 1px rgba(0,0,0,0.06);
}

.gk-filter-swatch:has(input:checked) .gk-swatch-name {
    color: #c0392b;
    font-weight: 700;
}

/* 추가 조건 체크박스 */
.gk-filter-checks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gk-filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.gk-filter-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #c0392b;
    cursor: pointer;
}

.gk-filter-check span {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

/* 필터 액션 버튼 */
.gk-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}

.gk-filter-apply {
    width: 100%;
    height: 40px;
    border: 1px solid #c0392b;
    border-radius: 8px;
    background: #c0392b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.gk-filter-apply:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.gk-filter-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.gk-filter-reset:hover {
    border-color: #374151;
    color: #374151;
    text-decoration: none;
}

/* ================================================
   정렬 툴바
   ================================================ */
.gk-sort-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
    min-height: 36px;
}

.gk-sort-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.gk-sort-btn {
    height: 36px;
    border: 1px solid #d4dbe5;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.15s;
}

.gk-sort-btn:hover {
    border-color: #9ca3af;
}

.gk-sort-btn i {
    font-size: 11px;
    color: #9ca3af;
}

.gk-sort-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    min-width: 140px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 1000;
    padding: 4px 0;
    list-style: none;
    margin: 0;
}

.gk-sort-menu.is-open {
    display: block;
}

.gk-sort-menu li {
    float: none;
    position: static;
    margin: 0;
    height: auto;
    line-height: normal;
    padding: 0;
    border-right: 0;
}

.gk-sort-menu li a {
    display: block;
    padding: 9px 16px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    white-space: nowrap;
    transition: background 0.1s;
}

.gk-sort-menu li a:hover {
    background: #f9fafb;
    color: #111 !important;
    text-decoration: none;
}

.gk-sort-mobile {
    align-items: center;
}

.gk-sort-mobile-trigger {
    border: 0;
    background: transparent;
    color: #222;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.gk-sort-mobile-trigger i {
    font-size: 12px;
    color: #9ca3af;
}

/* 모바일 필터 버튼 */
.gk-filter-mobile-btn {
    height: 36px;
    border: 1px solid #d4dbe5;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    cursor: pointer;
    position: relative;
}

.gk-filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    margin-left: 2px;
}

/* ================================================
   모바일 정렬 바텀시트
   ================================================ */
.gk-sort-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 2048;
}

.gk-sort-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.gk-sort-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 8px 0 18px;
    transform: translateY(105%);
    transition: transform 0.24s ease;
    z-index: 2049;
}

.gk-sort-sheet.is-open {
    transform: translateY(0);
}

.gk-sort-sheet-handle {
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: #d6d6d6;
    margin: 0 auto 10px;
}

.gk-sort-sheet-list {
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: block;
    overflow-y: auto;
    max-height: min(58vh, 360px);
    -webkit-overflow-scrolling: touch;
}

.gk-sort-sheet-list li {
    float: none;
    height: auto;
    line-height: normal;
    margin: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
}

.gk-sort-sheet-list li:last-child {
    border-bottom: 0;
}

.gk-sort-sheet-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 16px;
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.gk-sort-sheet-link.is-active {
    color: #111;
    font-weight: 700;
}

.gk-sort-check {
    opacity: 0;
    font-size: 18px;
    color: #c0392b;
}

.gk-sort-sheet-link.is-active .gk-sort-check {
    opacity: 1;
}

/* ================================================
   모바일 필터 드로어
   ================================================ */
.gk-filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 3000;
}

.gk-filter-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.gk-filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: #fff;
    transform: translateX(-105%);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}

.gk-filter-drawer.is-open {
    transform: translateX(0);
}

.gk-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 52px;
    border-bottom: 1px solid #f0f2f5;
    flex-shrink: 0;
}

.gk-filter-drawer-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.gk-filter-drawer-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
}

.gk-filter-drawer-close:hover {
    background: #f3f4f6;
}

.gk-filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.gk-filter-drawer-footer {
    display: flex;
    gap: 8px;
    padding-top: 16px;
}

.gk-filter-drawer-footer .gk-filter-apply,
.gk-filter-drawer-footer .gk-filter-reset {
    flex: 1;
}

/* ================================================
   반응형
   ================================================ */
@media (min-width: 768px) {
    .gk-list-sidebar {
        display: block !important;
    }
    .gk-list-sidebar .gk-filter-drawer-header {
        display: none !important;
    }
    .gk-list-sidebar .gk-filter-drawer-body {
        flex: initial;
        overflow: visible;
        padding: 0;
    }
    .gk-filter-mobile-btn {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #sct.gk-list-layout .gk-list-sidebar,
    .gk-list-layout .gk-list-sidebar {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 3001;
        width: min(320px, 88vw);
        min-width: 0;
        max-height: none;
        padding: 0;
        overflow: hidden;
        background: var(--gk-bg);
        box-shadow: 8px 0 32px rgba(0,0,0,.16);
        transform: translateX(-105%);
        visibility: hidden;
        pointer-events: none;
        transition: transform .24s ease, visibility .24s ease;
    }
    #sct.gk-list-layout .gk-list-sidebar.is-open,
    .gk-list-layout .gk-list-sidebar.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    .gk-list-sidebar .gk-filter-drawer-header {
        display: flex !important;
    }
    .gk-list-sidebar .gk-filter-drawer-body {
        height: calc(100vh - 52px);
        padding: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .gk-sort-toolbar {
        justify-content: space-between;
        margin-bottom: 12px;
    }
    .gk-list-body {
        display: block;
    }
    .gk-filter-mobile-btn {
        display: inline-flex !important;
        border-radius: 999px;
        border-color: var(--gk-ink);
        background: var(--gk-bg);
        color: var(--gk-ink);
        font-family: var(--gk-mono);
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gk-filter-drawer,
    .gk-filter-drawer-backdrop,
    .gk-sort-sheet,
    .gk-sort-backdrop {
        transition: none;
    }
}

/* GLOW.KIKI list page gatekeeper fixes: visible breadcrumb, contained filter rail */
#sct.gk-list-layout .shop-location-row {
    margin: 0;
    padding: 16px 28px 14px;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-line);
}

#sct.gk-list-layout #sct_sortlst > .container-xxl {
    padding-left: 28px;
    padding-right: 28px;
}

#sct_location.gk-shop-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__link,
#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__current,
#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__sep {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
}

#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__link {
    color: var(--gk-muted);
    text-decoration: none;
}

#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__link:hover,
#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__current {
    color: var(--gk-ink);
}

#sct_location.gk-shop-breadcrumb .gk-shop-breadcrumb__sep {
    color: var(--gk-red);
}

@media (min-width: 768px) {
    .gk-sort-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #sct.gk-list-layout .shop-location-row {
        padding: 12px 16px;
    }

    #sct.gk-list-layout #sct_sortlst > .container-xxl {
        padding-left: 16px;
        padding-right: 16px;
    }

    #sct_location.gk-shop-breadcrumb {
        gap: 6px;
        font-size: 10px;
    }

    .gk-sort-dropdown {
        display: none !important;
    }
}

body.gk-sort-sheet-open,
body.gk-filter-drawer-open {
    overflow: hidden;
}

/* GLOW·KIKI — wishlist page */
.gk-wishlist {
    padding: 48px 28px 80px;
}

.gk-wishlist-form {
    margin: 0;
}

.gk-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 16px;
    border-top: 1px solid var(--gk-ink);
    padding-top: 28px;
}

.gk-wishlist-card {
    min-width: 0;
}

.gk-wishlist-media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gk-cream);
    color: var(--gk-ink);
    text-decoration: none;
}

.gk-wishlist-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.gk-wishlist-media.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-wishlist-media.no-img::before {
    content: attr(data-num);
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: rgba(10, 10, 10, .1);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
}

.gk-wishlist-body {
    padding-top: 14px;
}

.gk-wishlist-body h2 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.gk-wishlist-body h2 a {
    color: var(--gk-ink);
    text-decoration: none;
}

.gk-wishlist-price {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 14px;
}

.gk-wishlist-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--gk-line);
    padding-top: 12px;
}

.gk-wishlist-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-wishlist-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--gk-red);
}

.gk-wishlist-delete,
.gk-wishlist-state {
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-wishlist-delete {
    color: var(--gk-muted);
    text-decoration: none;
}

.gk-wishlist-delete:hover {
    color: var(--gk-red);
}

.gk-wishlist-state {
    color: var(--gk-red);
}

.gk-wishlist-actions {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--gk-ink);
    background: var(--gk-ink);
}

.gk-wishlist-actions button {
    height: 52px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.18);
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-wishlist-actions button:last-child {
    border-right: 0;
}

.gk-wishlist-empty {
    border-top: 1px solid var(--gk-ink);
    border-bottom: 1px solid var(--gk-line);
    min-height: 420px;
    padding: 76px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gk-wishlist-empty .kicker {
    margin: 0 0 18px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
}

.gk-wishlist-empty h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(44px, 9vw, 116px);
    line-height: .92;
    font-weight: 900;
}

.gk-wishlist-empty p:not(.kicker) {
    max-width: 420px;
    margin: 24px 0 32px;
    color: var(--gk-muted);
    font-size: 15px;
    line-height: 1.7;
}

.gk-wishlist-empty a {
    width: fit-content;
    min-width: 180px;
    padding: 14px 22px;
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 1680px) {
    .gk-wishlist-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .gk-wishlist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gk-wishlist {
        padding: 32px 16px 96px;
    }

    .gk-wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 10px;
    }

    .gk-wishlist-body h2 {
        font-size: 14px;
    }

    .gk-wishlist-price {
        font-size: 15px;
    }

    .gk-wishlist-empty {
        min-height: 520px;
        padding: 54px 0;
    }

    .gk-wishlist-actions {
        bottom: 78px;
    }
}
/* GLOW·KIKI — item.form.skin.php inline style 1 이전 */
    #sit.container-xxl {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 29CM Style Custom CSS */
    .sit_ov_from_custom {
        font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Malgun Gothic", sans-serif;
        color: #000;
    }

    /* Header Section */
    .sit_brand {
        font-size: 13px;
        color: #555;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .sit_title_custom {
        font-size: 26px;
        line-height: 1.3;
        font-weight: 700;
        color: #000;
        margin-bottom: 12px;
        letter-spacing: 0;
    }

    .sit_review_count {
        font-size: 13px;
        color: #999;
        margin-bottom: 24px;
        text-decoration: underline;
        cursor: pointer;
        display: inline-block;
    }

    .sit_review_count i {
        color: #000;
        margin-right: 2px;
    }

    /* Price Section */
    .sit_price_area {
        margin-bottom: 24px;
    }

    .sit_price_final {
        font-size: 28px;
        font-weight: 700;
        color: #000;
    }

    .sit_price_final .unit {
        font-size: 18px;
        font-weight: 500;
    }

    .sit_price_original {
        color: #999;
        text-decoration: line-through;
        margin-left: 8px;
        font-size: 16px;
    }

    /* Benefit Box */
    .sit_benefit_box {
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 0;
        margin-bottom: 30px;
    }

    .sit_benefit_row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 13px;
        color: #303033;
    }

    .sit_benefit_row:last-child {
        margin-bottom: 0;
    }

    .sit_benefit_row .label {
        color: #5d5d5d;
        font-weight: 500;
    }

    .sit_benefit_row .value {
        font-weight: 600;
    }

    .sit_benefit_btn {
        border: 1px solid #ddd;
        background: #fff;
        padding: 3px 10px;
        font-size: 11px;
        color: #555;
        cursor: pointer;
        border-radius: 2px;
    }

    /* Delivery Info */
    .sit_delivery_info {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .sit_delivery_row {
        display: flex;
        margin-bottom: 8px;
        align-items: flex-start;
    }

    .sit_delivery_label {
        width: 80px;
        font-weight: 700;
        color: #000;
        flex-shrink: 0;
    }

    .sit_delivery_value {
        color: #303033;
        line-height: 1.5;
    }

    .badge-delivery {
        background: #000;
        color: #fff;
        padding: 2px 6px;
        font-size: 11px;
        border-radius: 2px;
        margin-right: 5px;
        display: inline-block;
    }

    /* Options */
    .sit_option_area {
        margin-bottom: 30px;
    }

    .sit_option_heading {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 700;
        color: #111;
    }

    .quick_option_box {
        margin: 0 0 16px;
        padding: 14px;
        border: 1px solid #e4e4e4;
        border-radius: 10px;
        background: #fff;
    }

    .quick_option_head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
    }

    .quick_option_title {
        font-size: 15px;
        font-weight: 700;
        color: #111;
    }

    .quick_option_toggle {
        border: 0;
        padding: 0;
        background: none;
        font-size: 12px;
        color: #666;
        text-decoration: underline;
        cursor: pointer;
    }

    .quick_option_filters {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .quick_filter_group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .quick_filter_label {
        font-size: 12px;
        font-weight: 600;
        color: #555;
    }

    .quick_filter_list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .quick_filter_chip {
        border: 1px solid #d8d8d8;
        border-radius: 999px;
        background: #fff;
        padding: 6px 11px;
        font-size: 12px;
        line-height: 1.2;
        color: #222;
        cursor: pointer;
    }

    .quick_filter_chip.is-active {
        border-color: #111;
        background: #111;
        color: #fff;
    }

    .quick_filter_chip.is-disabled,
    .quick_filter_chip:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    .quick_option_selected {
        margin: 10px 0 0;
        font-size: 12px;
        color: #666;
    }

    .sit_option section {
        margin-bottom: 15px;
    }

    .sit_option h3 {
        display: none;
    }

    /* Hide default heading */
    .sit_option select {
        width: 100%;
        height: 48px;
        border: 1px solid #ddd;
        padding: 0 15px;
        font-size: 14px;
        color: #000;
        border-radius: 0;
        appearance: none;
        background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E") no-repeat right 15px center #fff;
    }

    /* Selected Options */
    #sit_sel_option {
        background: #f7f7f7;
        padding: 20px;
        margin-bottom: 20px;
    }

    #sit_sel_option h3 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #000;
    }

    .sit_opt_list {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
        list-style: none;
    }

    .sit_opt_list:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .sit_opt_subj {
        display: block;
        font-size: 14px;
        margin-bottom: 10px;
        color: #333;
        font-weight: 500;
    }

    .opt_count {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .opt_count .count_box {
        display: flex;
        border: 1px solid #ddd;
        background: #fff;
    }

    .opt_count button {
        width: 30px;
        height: 30px;
        border: 0;
        background: #fff;
        cursor: pointer;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .opt_count input {
        width: 40px;
        height: 30px;
        border: 0;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        color: #000;
        outline: none;
    }

    .sit_opt_prc {
        font-weight: 700;
        font-size: 14px;
        color: #000;
    }

    /* Total Price */
    #sit_tot_price {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        text-align: right;
        margin-bottom: 30px;
        border-top: 2px solid #000;
        padding-top: 20px;
    }

    #sit_tot_price .price_val {
        font-size: 28px;
    }

    /* Action Buttons */
    .sit_action_area {
        display: flex;
        gap: 8px;
        margin-top: 20px;
    }

    .btn_action {
        height: 60px;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn_cart {
        flex: 1;
        border: 1px solid #ddd;
        background: #fff;
        color: #000;
    }

    .btn_buy {
        flex: 2;
        border: 1px solid #000;
        background: #000;
        color: #fff;
    }

    .btn_wish_custom {
        width: 60px;
        height: 60px;
        border: 1px solid #ddd;
        background: #fff;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 24px;
    }

    .btn_wish_custom svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    .btn_cart:hover {
        border-color: #000;
    }

    .btn_wish_custom:hover {
        border-color: #000;
    }

    /* 29CM Style CSS */
    .sit_ov_from_custom .sit_brand {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        margin-bottom: 8px;
        text-decoration: underline;
    }

    .sit_ov_from_custom .sit_title_custom {
        font-size: 32px;
        font-weight: 400;
        color: #000;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: 0;
    }

    .sit_ov_from_custom .sit_review_count {
        font-size: 13px;
        color: #000;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
    }

    .sit_ov_from_custom .sit_review_count i {
        color: #000;
        margin-right: 4px;
    }

    .sit_ov_from_custom .sit_price_area {
        border-top: 2px solid #000;
        padding-top: 24px;
        margin-bottom: 24px;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .sit_ov_from_custom .sit_price_final {
        font-size: 28px;
        font-weight: 700;
        color: #000;
    }

    .sit_ov_from_custom .sit_price_original {
        font-size: 16px;
        color: #aaa;
        text-decoration: line-through;
        font-weight: 400;
        margin-left: 10px;
    }

    .sit_benefit_box {
        border: 1px solid #eee;
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 0px;
        background: #fff;
    }

    .sit_benefit_row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #303033;
    }

    .sit_benefit_row .value {
        font-weight: 700;
    }

    .sit_delivery_info {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .sit_delivery_row {
        display: flex;
        gap: 20px;
    }

    .sit_delivery_label {
        min-width: 60px;
        font-weight: 700;
        color: #000;
    }

    .sit_delivery_value {
        color: #555;
        line-height: 1.5;
    }

    .badge-delivery {
        display: inline-block;
        padding: 2px 6px;
        background: #333;
        color: #fff;
        font-size: 11px;
        margin-bottom: 6px;
    }

    .sit_action_area {
        display: flex;
        gap: 8px;
        margin-top: 30px;
    }

    .btn_action {
        flex: 1;
        height: 60px;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        border-radius: 0px;
    }

    .btn_cart {
        background: #fff;
        border: 1px solid #ccc;
        color: #000;
    }

    .btn_cart:hover {
        border-color: #000;
    }

    .btn_buy {
        background: #000;
        border: 1px solid #000;
        color: #fff;
    }

    .btn_buy:hover {
        background: #333;
        border-color: #333;
    }

    .btn_wish_custom {
        width: 60px;
        height: 60px;
        border: 1px solid #ccc;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #000;
        cursor: pointer;
        border-radius: 0px;
    }

    .btn_wish_custom:hover {
        border-color: #000;
    }

    /* Select Option Styling */
    .sit_option_area select {
        width: 100%;
        height: 48px;
        border: 1px solid #ddd;
        padding: 0 15px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #333;
        border-radius: 0px;
        outline: none;
    }

    .sit_option_area select:focus {
        border-color: #000;
    }

    .sit_option_area.quick-order-focus {
        box-shadow: 0 0 0 3px rgba(47, 143, 107, 0.18);
        border-radius: 10px;
        transition: box-shadow .2s ease;
    }

    #quick_order_bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        opacity: 0;
        pointer-events: none;
        transform: translateY(108%);
        transition: opacity .2s ease, transform .25s ease;
    }

    #quick_order_bar.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    #quick_order_bar .quick_order_inner {
        width: 100%;
        max-width: 1220px;
        margin: 0 auto;
        padding: 12px 18px;
        border-top: 1px solid #dbe4de;
        background: #fff;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.09);
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    #quick_order_bar .quick_order_meta {
        min-width: 0;
        flex: 1 1 auto;
    }

    #quick_order_bar .quick_order_name {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: #151515;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #quick_order_bar .quick_order_option {
        margin-top: 3px;
        font-size: 12px;
        color: #4d5a53;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #quick_order_bar .quick_order_controls {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    #quick_order_bar .quick_order_qty {
        display: inline-flex;
        align-items: center;
        border: 1px solid #d4ddd8;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
    }

    #quick_order_bar .quick_qty_btn {
        width: 34px;
        height: 34px;
        border: 0;
        background: #fff;
        color: #24332c;
        font-size: 14px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #quick_order_bar .quick_qty_btn i {
        display: none !important;
    }

    #quick_order_bar #quick_order_qty_minus::before {
        content: "-";
    }

    #quick_order_bar #quick_order_qty_plus::before {
        content: "+";
    }

    #quick_order_bar .quick_qty_btn:disabled {
        color: #b4b9b7;
        cursor: not-allowed;
    }

    #quick_order_bar #quick_order_qty {
        width: 44px;
        height: 34px;
        border: 0;
        border-left: 1px solid #e1e5e3;
        border-right: 1px solid #e1e5e3;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: #1c1c1c;
        background: #fff;
        padding: 0;
        outline: none;
    }

    #quick_order_bar .quick_order_total {
        min-width: 92px;
        text-align: right;
        font-size: 16px;
        font-weight: 700;
        color: #1f6a4f;
    }

    #quick_order_bar .quick_order_btn {
        height: 36px;
        border-radius: 8px;
        border: 1px solid #2f8f6b;
        background: #fff;
        color: #206a4f;
        font-size: 13px;
        font-weight: 600;
        padding: 0 14px;
        cursor: pointer;
    }

    #quick_order_bar .quick_order_btn.btn-submit {
        background: #2f8f6b;
        color: #fff;
    }

    @media (max-width: 991.98px) {
        #quick_order_bar {
            display: none !important;
        }

        #sit_layout_right {
            position: static !important;
            top: auto !important;
            height: auto !important;
            z-index: auto !important;
            padding-top: 20px !important;
        }

        #sit_inf_anchor {
            display: none !important;
        }
    }
/* GLOW·KIKI — item.form.skin.php inline style 2 이전 */
        .sit_ov_from_custom {
            font-family: 'Pretendard', sans-serif;
        }

        .sit_ov_from_custom .sit_brand {
            font-size: 14px;
            font-weight: 700;
            color: #000;
            margin-bottom: 8px;
            text-decoration: underline;
        }

        .sit_ov_from_custom .sit_title_custom {
            font-size: 30px;
            font-weight: 400;
            color: #000;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: 0;
        }

        /* Price Area */
        .sit_ov_from_custom .sit_price_area {
            margin-bottom: 30px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .sit_ov_from_custom .sit_price_main {
            display: flex;
            align-items: baseline;
            gap: 10px;
            flex-wrap: wrap;
        }

        .sit_ov_from_custom .sit_price_rate {
            font-size: 32px;
            font-weight: 800;
            color: #c0392b;
            line-height: 1;
        }

        .sit_ov_from_custom .sit_price_final {
            font-size: 32px;
            font-weight: 800;
            color: #000;
            line-height: 1;
        }

        .sit_ov_from_custom .sit_price_original {
            font-size: 18px;
            color: #aaa;
            text-decoration: line-through;
            font-weight: 400;
            line-height: 1;
        }

        .sit_ov_from_custom .sit_price_coupon_btn {
            height: 36px;
            padding: 0 14px;
            border: 1px solid #d8ddd9;
            border-radius: 999px;
            background: #fff;
            color: #1f6a4f;
            font-size: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            white-space: nowrap;
        }

        .sit_ov_from_custom .sit_price_coupon_btn i {
            font-size: 11px;
        }

        .gk-pdp-shell {
            padding-top: 40px;
            padding-bottom: 70px;
        }

        .gk-pdp-form {
            margin: 0 0 56px;
        }

        .gk-pdp-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
            gap: clamp(28px, 4vw, 72px);
            align-items: start;
        }

        .gk-pdp-media-column,
        .gk-pdp-info-column {
            min-width: 0;
        }

        .gk-pdp-media-frame {
            position: relative;
            width: 100%;
            max-width: 100%;
        }

        .gk-pdp-main-img {
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
        }

        .gk-pdp-thumbs-wrap {
            margin: 24px 0 44px;
        }

        .gk-pdp-info-anchor {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }

        .gk-pdp-info-column {
            position: sticky;
            top: 100px;
            height: fit-content;
            align-self: flex-start;
            z-index: 10;
        }

        .gk-pdp-title-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 18px;
        }

        .gk-pdp-share {
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            border: 1px solid #ddd;
            border-radius: 999px;
            background: #fff;
            color: #999;
            font-size: 15px;
            cursor: pointer;
        }

        .gk-pdp-share:hover {
            border-color: var(--gk-ink);
            color: var(--gk-ink);
        }

        .gk-strong {
            font-weight: 700;
        }

        .gk-muted {
            color: var(--gk-muted);
        }

        .gk-small {
            font-size: 12px;
        }

        .gk-review-total {
            margin-left: 4px;
        }

        /* Benefit Box (Rounded) */
        .sit_benefit_box {
            border: 1px solid #e5e5e5;
            padding: 24px;
            margin-bottom: 30px;
            border-radius: 16px;
            background: #fff;
        }

        .sit_benefit_row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .sit_benefit_row:last-child {
            margin-bottom: 0;
        }

        .sit_benefit_row.is-price-row {
            margin-top: 10px;
        }

        .sit_benefit_row .label_area {
            font-size: 13px;
            color: #555;
            font-weight: 700;
        }

        .sit_benefit_row .label_area.is-strong {
            color: #000;
            font-size: 16px;
        }

        .sit_benefit_row .data_area {
            text-align: right;
        }

        .sit_benefit_row .gk-under-note {
            color: #999;
            font-size: 12px;
            text-decoration: underline;
        }

        .sit_benefit_row .price_big {
            font-size: 18px;
            font-weight: 700;
            color: #000;
        }

        .sit_benefit_row .btn_coupon {
            display: inline-block;
            padding: 4px 8px;
            border: 1px solid #e5e5e5;
            border-radius: 15px;
            font-size: 11px;
            color: #333;
            margin-left: 5px;
            background: #fff;
            vertical-align: middle;
            cursor: pointer;
        }

        /* Delivery Badge */
        .badge_delivery_purple {
            display: inline-flex;
            align-items: center;
            background: #2f2f35;
            color: #fff;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 700;
        }

        .badge_delivery_purple i {
            margin-right: 4px;
        }

        .sit_delivery_info {
            margin-bottom: 40px;
        }

        .gk-delivery-row {
            display: flex;
            gap: 14px;
            min-width: 0;
        }

        .gk-delivery-label {
            min-width: 60px;
            font-weight: 700;
        }

        .gk-delivery-text {
            margin-top: 8px;
            color: var(--gk-muted);
            font-size: 13px;
            line-height: 1.5;
        }

        /* Option Select Box */
        .sit_option_area select {
            width: 100%;
            height: 50px;
            border: 1px solid #ddd;
            padding: 0 15px;
            margin-bottom: 10px;
            font-size: 14px;
            color: #333;
            border-radius: 8px;
            outline: none;
            appearance: none;
            background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat right 15px center;
            background-size: 10px;
        }

        .sit_option_area.option-view-button .option-ui-native-select {
            position: absolute !important;
            left: 0 !important;
            top: 0 !important;
            width: 1px !important;
            height: 1px !important;
            clip-path: inset(50%) !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .sit_option_area.option-view-button .option-ui-button-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            width: 100%;
            max-width: 100%;
            margin: 0 0 10px;
        }

        .sit_option_area.option-view-button .option-ui-button-wrap.is-color-option-wrap {
            gap: 10px;
        }

        .sit_option_area.option-view-button .get_item_options > label,
        .sit_option_area.option-view-button .get_item_options > label.label-title {
            display: block !important;
            margin: 0 0 8px;
            color: #222;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.35;
        }

        .sit_option_area.option-view-button .option-ui-button {
            min-width: 92px;
            max-width: 100%;
            min-height: 44px;
            padding: 0 14px;
            border: 1px solid #d8d8d8;
            background: #fff;
            color: #202020;
            font-size: 14px;
            line-height: 1.3;
            border-radius: 8px;
            transition: all .15s ease;
            box-sizing: border-box;
        }

        .sit_option_area.option-view-button .option-ui-button.is-color-option {
            min-width: 86px;
            min-height: 42px;
            border-radius: 999px;
            padding: 0 13px 0 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .sit_option_area.option-view-button .option-ui-color-swatch {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 1px solid rgba(0,0,0,.18);
            background: transparent;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
            flex: 0 0 auto;
        }

        .sit_option_area.option-view-button .gk-color-token--red .option-ui-color-swatch { background: #ef3340; }
        .sit_option_area.option-view-button .gk-color-token--denim .option-ui-color-swatch { background: #2f5f9f; }
        .sit_option_area.option-view-button .gk-color-token--black .option-ui-color-swatch { background: #050505; }
        .sit_option_area.option-view-button .gk-color-token--cream .option-ui-color-swatch { background: #fff6c7; }
        .sit_option_area.option-view-button .gk-color-token--ivory .option-ui-color-swatch { background: #f4ecd8; }
        .sit_option_area.option-view-button .gk-color-token--white .option-ui-color-swatch { background: #fff; }
        .sit_option_area.option-view-button .gk-color-token--navy .option-ui-color-swatch { background: #17345f; }
        .sit_option_area.option-view-button .gk-color-token--blue .option-ui-color-swatch { background: #2f6fe4; }
        .sit_option_area.option-view-button .gk-color-token--gray .option-ui-color-swatch { background: #a8b1bd; }
        .sit_option_area.option-view-button .gk-color-token--pink .option-ui-color-swatch { background: #ec5ca7; }
        .sit_option_area.option-view-button .gk-color-token--beige .option-ui-color-swatch { background: #d8c4a2; }
        .sit_option_area.option-view-button .gk-color-token--brown .option-ui-color-swatch { background: #8a641d; }
        .sit_option_area.option-view-button .gk-color-token--khaki .option-ui-color-swatch { background: #6f7942; }
        .sit_option_area.option-view-button .gk-color-token--green .option-ui-color-swatch { background: #248b5b; }

        .sit_option_area.option-view-button .option-ui-button.is-light-color .option-ui-color-swatch {
            border-color: #d7d7d7;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
        }

        .sit_option_area.option-view-button .option-ui-button.is-unknown-color .option-ui-color-swatch {
            background: conic-gradient(#ef3340, #f4d35e, #1f7a5c, #2f6fe4, #111, #ef3340);
        }

        .sit_option_area.option-view-button .option-ui-button.is-text-option {
            min-width: 56px;
            border-radius: 0;
            font-family: var(--gk-mono);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
        }

        .sit_option_area.option-view-button .option-ui-button:hover {
            border-color: #c0392b;
            color: #c0392b;
        }

        .sit_option_area.option-view-button .option-ui-button.is-active {
            border-color: #c0392b;
            background: rgba(239, 51, 64, .08);
            color: #c0392b;
            font-weight: 700;
        }

        .sit_option_area.option-view-button .option-ui-button.is-disabled,
        .sit_option_area.option-view-button .option-ui-button:disabled {
            border-color: #e2e2e2;
            background: #f6f6f6;
            color: #9a9a9a;
            cursor: not-allowed;
        }

        /* Selected Option Gray Box - 29CM Style Refined */
        #sit_sel_option {
            background: #f9f9f9;
            border-radius: 0;
            padding: 15px;
            margin-bottom: 20px;
        }

        #sit_sel_option ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        #sit_sel_option .sit_opt_list,
        #sit_sel_option .sit_spl_list {
            display: block;
            padding: 0 !important;
            margin: 0 0 10px 0 !important;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px !important;
        }

        #sit_sel_option .sit_opt_list:last-child,
        #sit_sel_option .sit_spl_list:last-child {
            border-bottom: 0;
            margin-bottom: 0;
            padding-bottom: 0 !important;
        }

        .sit_opt_subj {
            display: block;
            font-size: 13px;
            color: #555;
            margin-bottom: 8px;
            line-height: 1.4;
            word-break: break-all;
        }

        .opt_bottom_row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Quantity Control - Compact Square */
        #sit_sel_option .count_box {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid #ddd;
        }

        #sit_sel_option .count_box button {
            width: 28px;
            height: 28px;
            border: 0;
            background: #fff;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #333;
        }

        #sit_sel_option .count_box button:hover {
            background: #f5f5f5;
        }

        #sit_sel_option .count_box input {
            width: 34px;
            height: 28px;
            border: 0;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            text-align: center;
            font-size: 12px;
            font-weight: 500;
            color: #333;
            outline: none;
            padding: 0;
            margin: 0;
        }

        #sit_sel_option .sit_opt_prc {
            font-size: 14px;
            font-weight: 700;
            color: #000;
            margin-right: 8px;
        }

        .gk-option-price-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #sit_sel_option .sit_opt_del {
            background: transparent;
            border: 0;
            padding: 0;
            cursor: pointer;
            color: #999;
            font-size: 14px;
        }

        #sit_sel_option #sit_opt_added > li {
            position: relative;
            margin: 0 !important;
            padding: 12px 0 !important;
            border: 0 !important;
            border-bottom: 1px solid #e7eaee !important;
            background: transparent !important;
        }

        #sit_sel_option #sit_opt_added > li:last-child {
            border-bottom: 0 !important;
        }

        #sit_sel_option #sit_opt_added .opt_bottom_row {
            gap: 10px;
        }

        #sit_sel_option #sit_opt_added .count_box {
            border: 0;
            border-radius: 8px;
            overflow: hidden;
            background: #f2f4f6;
        }

        #sit_sel_option #sit_opt_added .count_box button {
            float: none !important;
            width: 42px;
            height: 42px;
            border: 0 !important;
            border-radius: 0;
            background: #f2f4f6;
            color: #666;
            font-size: 16px;
            padding: 0;
        }

        #sit_sel_option #sit_opt_added .count_box button i {
            display: none !important;
        }

        #sit_sel_option #sit_opt_added .sit_qty_minus::before,
        #sit_sel_option #sit_opt_added .sit_qty_plus::before,
        #quick_order_bar .quick_qty_btn::before {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1;
            color: currentColor;
        }

        #sit_sel_option #sit_opt_added .sit_qty_minus::before {
            content: "-";
        }

        #sit_sel_option #sit_opt_added .sit_qty_plus::before {
            content: "+";
        }

        #sit_sel_option #sit_opt_added .count_box button:hover {
            background: #e9edf0;
        }

        #sit_sel_option #sit_opt_added .count_box input.num_input {
            float: none !important;
            width: 46px;
            height: 42px;
            border: 0 !important;
            border-left: 0 !important;
            border-right: 0 !important;
            border-top: 0 !important;
            border-bottom: 0 !important;
            background: #f2f4f6;
            margin: 0;
            padding: 0;
            font-size: 14px;
            color: #222;
            text-align: center;
        }

        #sit_sel_option #sit_opt_added .sit_opt_prc {
            float: none !important;
            width: auto;
            padding: 0;
            margin-right: 0;
            line-height: 1.3;
            text-align: right;
        }

        #sit_sel_option #sit_opt_added .sit_opt_del {
            position: static !important;
            top: auto !important;
            right: auto !important;
            float: none !important;
            width: 30px;
            height: 30px;
            border: 0 !important;
            border-left: 0 !important;
            border-bottom: 0 !important;
            background: transparent !important;
            color: #777;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin-left: 6px;
        }

        #sit_sel_option #sit_opt_added .sit_opt_del:hover {
            color: #444;
        }

        /* Total Price */
        #sit_tot_price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
            padding-top: 20px;
            border-top: 2px solid #000;
            border-left: 0;
            border-right: 0;
            border-bottom: 0;
            border-radius: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }

        #sit_tot_price span:first-child {
            font-size: 14px;
            font-weight: 700;
            color: #000;
        }

        #sit_tot_price .sit_tot_price_val {
            font-size: 24px;
            font-weight: 700;
            color: #000;
        }

        /* Action Buttons */
        .sit_action_area {
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }

        .btn_gift {
            width: 52px;
            height: 52px;
            border: 1px solid #ddd;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            cursor: pointer;
        }

        .btn_group_black {
            flex: 1;
            display: flex;
            height: 52px;
            background: #000;
        }

        .btn_black_item {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            background: transparent;
            border: 0;
            flex: 1;
        }

        .btn_black_item.wish_item {
            flex: 0 0 60px;
            border-right: 1px solid #333;
        }

        .btn_black_item.cart_item {
            border-right: 1px solid #333;
        }

        .btn_black_item.is-restock {
            flex: 3;
            border-radius: 12px;
        }

        .btn_black_item:hover {
            background: #222;
        }

        .gk-pdp-alert {
            margin: 18px 0 0;
            padding: 14px 16px;
            border: 1px solid rgba(239, 51, 64, .35);
            background: rgba(239, 51, 64, .08);
            color: var(--gk-red);
            font-weight: 700;
        }

        @media (max-width: 991.98px) {
            .gk-pdp-shell {
                padding-top: 0;
                padding-bottom: 42px;
            }

            .gk-pdp-layout {
                grid-template-columns: minmax(0, 1fr);
                gap: 26px;
            }

            .gk-pdp-info-column {
                position: static;
            }

            .gk-pdp-info-anchor {
                margin-top: 34px;
                padding-top: 28px;
            }
        }

        .print_preview_box {
            margin-bottom: 28px;
            padding: 18px;
            border: 1px solid #e2e2e2;
            border-radius: 14px;
            background: #fff;
        }

        .print_preview_title {
            display: block;
            margin-bottom: 6px;
            font-size: 15px;
            font-weight: 700;
            color: #111;
        }

        .print_preview_desc {
            margin-bottom: 14px;
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }

        .print_preview_split {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .print_preview_panel {
            border: 1px solid #e7e7e7;
            border-radius: 12px;
            background: #fcfcfc;
            padding: 12px;
        }

        .print_preview_side_title {
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 700;
            color: #222;
        }

        .print_preview_control {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .print_preview_file_input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .print_preview_file_btn {
            height: 34px;
            padding: 0 14px;
            border: 1px solid #111;
            border-radius: 8px;
            background: #fff;
            font-size: 12px;
            color: #111;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            white-space: nowrap;
        }

        .print_preview_file_name {
            flex: 1 1 200px;
            min-width: 0;
            font-size: 12px;
            color: #666;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .print_preview_reset_btn {
            height: 34px;
            padding: 0 14px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 12px;
            color: #444;
            white-space: nowrap;
            border-radius: 8px;
        }

        .print_preview_expand_btn {
            height: 34px;
            padding: 0 14px;
            border: 1px solid #111;
            background: #111;
            font-size: 12px;
            color: #fff;
            white-space: nowrap;
            border-radius: 8px;
        }

        .print_preview_scale_row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .print_preview_scale_label {
            flex: 0 0 auto;
            font-size: 12px;
            color: #444;
            font-weight: 600;
            white-space: nowrap;
        }

        .print_preview_scale_range {
            flex: 1 1 auto;
        }

        .print_preview_scale_value {
            flex: 0 0 46px;
            text-align: right;
            font-size: 12px;
            color: #333;
            font-weight: 600;
        }

        .print_preview_canvas_wrap {
            border: 1px solid #dddddd;
            border-radius: 10px;
            background: linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%);
            padding: 10px;
        }

        .print_preview_canvas_wrap canvas {
            display: block;
            width: 100%;
            max-width: 520px;
            height: auto;
            margin: 0 auto;
            background: #f4f4f4;
            border-radius: 6px;
        }

        .print_preview_note {
            margin-top: 10px;
            margin-bottom: 0;
            font-size: 12px;
            color: #888;
        }

        .print_preview_panel_placeholder {
            display: none;
        }

        .print_preview_mobile_toggle {
            display: none;
            width: 100%;
            height: 42px;
            margin-bottom: 12px;
            border: 1px solid #d9ddd9;
            border-radius: 12px;
            background: #fff;
            color: #1f6a4f;
            font-size: 14px;
            font-weight: 700;
            justify-content: center;
            align-items: center;
            gap: 6px;
        }

        .print_preview_mobile_toggle i {
            transition: transform .2s ease;
        }

        .print_preview_mobile_toggle.is-open i {
            transform: rotate(180deg);
        }

        .print_preview_modal[hidden] {
            display: none !important;
        }

        .print_preview_modal {
            position: fixed;
            inset: 0;
            z-index: 2147483000 !important;
            isolation: isolate;
        }

        .print_preview_modal_backdrop {
            position: absolute;
            inset: 0;
            background: rgba(10, 10, 10, 0.7);
        }

        .print_preview_modal_dialog {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            width: min(1120px, calc(100vw - 48px));
            max-height: calc(100vh - 48px);
            margin: 24px auto;
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
        }

        .print_preview_modal_head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 14px 18px;
            border-bottom: 1px solid #ececec;
            background: #fff;
        }

        .print_preview_modal_title {
            font-size: 16px;
            font-weight: 700;
            color: #111;
        }

        .print_preview_modal_actions {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .print_preview_modal_close {
            height: 34px;
            padding: 0 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            background: #fff;
            font-size: 12px;
            color: #333;
            cursor: pointer;
        }

        .print_preview_modal_done {
            height: 34px;
            padding: 0 14px;
            border: 1px solid #111;
            border-radius: 8px;
            background: #111;
            font-size: 12px;
            color: #fff;
            cursor: pointer;
        }

        .print_preview_modal_body {
            overflow: auto;
            padding: 16px;
            background: #f7f7f7;
        }

        .print_preview_modal_body .print_preview_panel {
            border: 0;
            border-radius: 0;
            background: transparent;
            padding: 0;
        }

        .print_preview_modal_body .print_preview_side_title {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .print_preview_modal_body .print_preview_control {
            margin-bottom: 12px;
        }

        .print_preview_modal_body .print_preview_canvas_wrap {
            padding: 14px;
        }

        .print_preview_modal_body .print_preview_canvas_wrap canvas {
            max-width: min(92vw, 980px);
        }

        body.print-preview-modal-open {
            overflow: hidden;
        }

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

        @media (max-width: 767px) {
            .print_preview_modal_dialog {
                width: calc(100vw - 20px);
                max-height: calc(100vh - 20px);
                margin: 10px auto;
                border-radius: 12px;
            }

            .print_preview_modal_head {
                padding: 12px;
            }

            .print_preview_modal_body {
                padding: 10px;
            }

            .print_preview_modal_body .print_preview_canvas_wrap canvas {
                max-width: 100%;
            }
        }

        @media (max-width: 991.98px) {
            .sit_ov_from_custom .sit_title_custom {
                font-size: 22px;
                margin-bottom: 14px;
            }

            .sit_ov_from_custom .sit_price_area {
                margin-bottom: 16px;
            }

            .sit_ov_from_custom .sit_price_rate {
                font-size: 28px;
            }

            .sit_ov_from_custom .sit_price_final {
                font-size: 34px;
            }

            .sit_ov_from_custom .sit_price_original {
                font-size: 15px;
            }

            .sit_ov_from_custom .sit_price_coupon_btn {
                height: 34px;
                padding: 0 12px;
            }

            .sit_benefit_box {
                display: none;
            }

            .sit_delivery_info {
                margin-bottom: 22px !important;
            }

            .print_preview_mobile_toggle {
                display: inline-flex;
            }

            .print_preview_box {
                display: none;
            }

            .print_preview_box.is-open {
                display: block;
            }
        }
/* GLOW·KIKI — item.info.skin.php inline style 1 이전 */
        .sit-rel-section {
            margin-top: 28px;
        }

        .sit-rel-section .sit-rel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 22px;
        }

        .sit-rel-section .sit-rel-header h2 {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 0;
        }

        .sit-rel-section .sit-rel-nav {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .sit-rel-section .sit-rel-nav button {
            width: 40px;
            height: 40px;
            border: 1px solid #d9dde3;
            border-radius: 999px;
            background: #fff;
            color: #1f2937;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            line-height: 1;
            cursor: pointer;
            transition: border-color .2s ease, color .2s ease, opacity .2s ease;
        }

        .sit-rel-section .sit-rel-nav button:hover {
            border-color: #111827;
            color: #111827;
        }

        .sit-rel-section .sit-rel-nav button:disabled {
            opacity: .36;
            cursor: default;
        }

        .sit-rel-slider {
            --slides-per-view: 5;
            --rel-gap: 20px;
            overflow: hidden;
            position: relative;
        }

        .sit-rel-track {
            display: flex;
            gap: var(--rel-gap);
            transition: transform .32s ease;
            will-change: transform;
        }

        .sit-rel-track>.sit-rel-slide {
            flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--rel-gap)) / var(--slides-per-view));
            min-width: 0;
        }

        .sit-rel-track>.sct_noitem {
            width: 100%;
            padding: 34px 10px;
            text-align: center;
            color: #6b7280;
            border: 1px dashed #e5e7eb;
            border-radius: 12px;
        }

        .sit-rel-card {
            display: block;
        }

        .sit-rel-thumb {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 12px;
            background: #f3f4f6;
            aspect-ratio: 4 / 5;
        }

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

        .sit-rel-sale {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #c0392b;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            padding: 7px 8px;
            border-radius: 999px;
        }

        .sit-rel-body {
            padding: 12px 2px 0;
        }

        .sit-rel-brand {
            font-size: 12px;
            color: #9ca3af;
            margin: 0 0 5px;
        }

        .sit-rel-name {
            margin: 0 0 8px;
            font-size: 14px;
            line-height: 1.45;
            min-height: 2.9em;
            font-weight: 600;
        }

        .sit-rel-name a {
            color: #111827;
            text-decoration: none;
        }

        .sit-rel-name a:hover {
            color: #c0392b;
        }

        .sit-rel-original {
            margin: 0;
            font-size: 12px;
            color: #9ca3af;
            text-decoration: line-through;
            min-height: 1.2em;
        }

        .sit-rel-price-row {
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .sit-rel-price {
            font-size: 15px;
            font-weight: 800;
            color: #111827;
        }

        .sit-rel-soldout {
            margin-top: 4px;
            display: inline-block;
            font-size: 11px;
            line-height: 1;
            color: #dc2626;
            border: 1px solid #fecaca;
            background: #fff1f2;
            padding: 5px 7px;
            border-radius: 999px;
            font-weight: 700;
        }

        .sit-rel-section.sit-rel-no-scroll .sit-rel-nav {
            visibility: hidden;
        }

        @media (max-width: 1200px) {
            .sit-rel-slider {
                --slides-per-view: 4;
            }
        }

        @media (max-width: 992px) {
            .sit-rel-slider {
                --slides-per-view: 3;
                --rel-gap: 14px;
            }
        }

        @media (max-width: 768px) {
            .sit-rel-section .sit-rel-header h2 {
                font-size: 20px;
            }

            .sit-rel-slider {
                --slides-per-view: 3;
                --rel-gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .sit-rel-slider {
                --slides-per-view: 3;
                --rel-gap: 10px;
            }

            .sit-rel-section .sit-rel-nav button {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }
        }
/* GLOW·KIKI — item.info.skin.php inline style 2 이전 */
        .group_total {
            margin-top: 0;
        }

        /* 29CM Tab Design Upgrade */
        .area_tab {
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 40px;
            background: #fff;
        }

        .area_tab .inner {
            display: block;

            /* 탭 스타일 */
            .area_tab {
                margin-top: 40px;
                margin-bottom: 30px;
                border-bottom: 1px solid #e5e5e5;
            }

            .area_tab ul {
                display: flex;
                justify-content: flex-start;
                padding: 0;
                margin: 0;
                list-style: none;
                border: 0;
            }

            .area_tab ul li {
                flex: 1;
                text-align: center;
            }

            .area_tab ul li a,
            .area_tab ul li input[type="radio"]+label {
                display: block;
                width: 100%;
                padding: 15px 0;
                font-size: 15px;
                font-weight: 700;
                color: #999;
                text-decoration: none;
                cursor: pointer;
                background: #fff;
                border-bottom: 2px solid transparent;
            }

            .area_tab ul li.on a,
            .area_tab ul li input[type="radio"]:checked+label {
                color: #c0392b;
                /* 29CM Green */
                border-bottom: 2px solid #c0392b;
            }

            .area_tab ul li input[type="radio"] {
                display: none;
            }

            /* Active State: Green Top and Bottom Borders */
            .area_tab li a.active {
                color: #c0392b;
                border-top: 3px solid #c0392b;
                border-bottom: 3px solid #c0392b;
                font-weight: 700;
                background: #fff;
            }

            .area_tab li a:hover {
                color: #333;
            }

            /* Box Monitor Style Reset */
            .box_monitor01 {
                border: 0 !important;
                background: transparent !important;
                padding: 0 !important;
            }

            .box_monitor01 .inr {
                border: 0 !important;
            }
}
/* GLOW·KIKI — item.info.skin.php inline style 3 이전 */
        .box p {
            text-align: center !important;
            max-width: 100%;
            margin: 0 auto;
            display: block
        }

        /* Product detail content: force center alignment in detail/info tabs */
        #tab_page01 .box,
        #tab_page01 .box * {
            text-align: center !important;
        }

        #tab_page02 #sit_inf_open th,
        #tab_page02 #sit_inf_open td {
            text-align: center !important;
            vertical-align: middle;
        }
/* GLOW·KIKI — search.skin.php inline style 이전 (#gk-search 스코프) */
/* === GLOW·KIKI search skin (scoped #gk-search) === */
#gk-search {
  --bg: #FAFAFA; --ink: #0A0A0A; --ink-2:#1a1a1a;
  --muted:#8a8a8a; --line:#e6e6e6; --red:#E63946;
  --cream:#f4ebe0;
  --f-sans:"Pretendard Variable",Pretendard,"Apple SD Gothic Neo","Noto Sans KR",system-ui,-apple-system,Roboto,Arial,sans-serif;
  --f-mono:"JetBrains Mono","Menlo",monospace;
  background: var(--bg); color: var(--ink);
  font-family: var(--f-sans); margin:0;
}
#gk-search * { box-sizing:border-box; }
#gk-search .gk-mono { font-family:var(--f-mono); }
#gk-search .gk-upper { text-transform:uppercase; letter-spacing:.08em; }
#gk-search .gk-muted { color:var(--muted); }
#gk-search .gk-red { color:var(--red); }

/* TOP — 큰 검색 입력 */
#gk-search .gk-search-top {
  padding: 60px 28px 40px;
  border-bottom: 1px solid var(--line);
}
/* search-top modifier — 결과 메타 행 (border 제거 + 좁은 padding) */
#gk-search .gk-search-top.is-meta {
  border-bottom: none;
  padding: 0 28px 24px;
}
/* recent-empty 텍스트 (NO RECENT SEARCHES) */
#gk-search .gk-recent-empty {
  font-size: 11px;
}
/* search-empty 보조 메시지 */
#gk-search .gk-empty .gk-empty-note {
  margin-top: 8px;
}
#gk-search .gk-search-eyebrow {
  font-family:var(--f-mono); font-size:11px; color:var(--red);
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px;
}
#gk-search .gk-search-form-row {
  display:grid; grid-template-columns:1fr auto;
  gap:14px; align-items:end; max-width:1400px;
}
#gk-search #ssch_q {
  width:100%; border:none; border-bottom:3px solid var(--ink);
  font-weight:900; font-size:96px; letter-spacing:0; line-height:1;
  padding:0 0 16px 0; background:transparent;
  text-transform:uppercase; color:var(--ink);
  font-family:var(--f-sans);
}
#gk-search #ssch_q::placeholder { color:rgba(10,10,10,0.18); }
#gk-search .gk-btn-search {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:20px 32px;
  font-family:var(--f-mono); font-size:12px; font-weight:500;
  text-transform:uppercase; letter-spacing:.1em;
  background:var(--red); color:#fff;
  border:1px solid var(--red); cursor:pointer;
  transition: all .2s ease;
}
#gk-search .gk-btn-search:hover { background:var(--ink); border-color:var(--ink); }
#gk-search .gk-search-meta {
  margin-top:14px; font-family:var(--f-mono); font-size:11px;
  text-transform:uppercase; letter-spacing:.08em;
}
#gk-search .gk-search-meta b { color:var(--ink); font-weight:500; }

/* BODY — 사이드바 + 결과 */
#gk-search .gk-search-body {
  display:grid; grid-template-columns:280px 1fr; min-height:60vh;
}
#gk-search .gk-sidebar {
  border-right:1px solid var(--line);
  padding:32px 24px;
}
#gk-search .gk-side-title {
  font-family:var(--f-mono); font-size:11px; color:var(--red);
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px;
}
#gk-search .gk-side-title.next { margin-top:36px; margin-bottom:14px; }
#gk-search .gk-trend {
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:14px;
}
#gk-search .gk-trend li {
  display:grid; grid-template-columns:auto 1fr auto; gap:12px; align-items:center;
}
#gk-search .gk-trend b {
  font-family:var(--f-mono); font-size:14px; font-weight:700;
}
#gk-search .gk-trend li.top b { color:var(--red); }
#gk-search .gk-trend a { color:inherit; text-decoration:none; font-size:14px; font-weight:700; }
#gk-search .gk-trend a:hover { color:var(--red); }
#gk-search .gk-trend .arrow { font-family:var(--f-mono); font-size:10px; color:var(--muted); }

#gk-search .gk-recent-row { display:flex; flex-wrap:wrap; gap:6px; }
#gk-search .gk-chip {
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid var(--ink); padding:8px 14px;
  font-family:var(--f-mono); font-size:10px;
  text-transform:uppercase; letter-spacing:.06em;
  border-radius:999px; cursor:pointer; background:transparent;
  color:var(--ink);
}
#gk-search .gk-chip:hover { background:rgba(0,0,0,.04); }
#gk-search .gk-chip .x { color:var(--muted); margin-left:2px; }
#gk-search .gk-chip.active { background:var(--ink); color:#fff; }

#gk-search .ssch_option {
  display:flex; flex-direction:column; gap:0; padding:0;
}
#gk-search .ssch_option label {
  display:flex; align-items:center; gap:8px;
  font-family:var(--f-mono); font-size:12px;
  padding:8px 0; cursor:pointer; color:var(--ink);
}
#gk-search .ssch_option input[type="checkbox"] {
  width:14px; height:14px; accent-color:var(--red);
}
#gk-search .ssch_option .ssch_count { color:var(--muted); margin-left:4px; }
#gk-search .ssch_price {
  display:flex; align-items:center; gap:6px; margin-top:14px;
  font-family:var(--f-mono); font-size:11px; color:var(--muted);
}
#gk-search .ssch_price input {
  width:80px; height:36px; border:1px solid var(--line);
  padding:0 8px; font-family:var(--f-mono); font-size:12px;
  background:transparent; color:var(--ink); border-radius:0;
}
#gk-search .ssch_price input:focus { border-color:var(--red); outline:none; }

/* RESULTS */
#gk-search .gk-results-area { padding:32px 28px; }
#gk-search .gk-results-head {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:24px; padding-bottom:16px;
  border-bottom:1px solid var(--line); gap:16px; flex-wrap:wrap;
}
#gk-search .gk-results-head .lhs {
  font-family:var(--f-mono); font-size:11px;
  text-transform:uppercase; letter-spacing:.08em;
}
#gk-search .gk-results-head .lhs b.q { color:var(--red); }
#gk-search .gk-results-head .lhs .show { color:var(--muted); }
#gk-search .gk-sort-select {
  background:transparent; border:1px solid var(--ink);
  padding:8px 12px; font-family:var(--f-mono); font-size:12px;
  text-transform:uppercase; letter-spacing:.06em;
  color:var(--ink); cursor:pointer; border-radius:0;
}

/* 영카트 list output 스타일 정리 */
#gk-search #ssch_cate { display:none; } /* 카테고리 칩으로 대체 */
#gk-search .gk-cate-bar {
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px;
}
#gk-search .gk-cate-bar a { text-decoration:none; }

/* 결과 그리드 컨테이너: list.* 스킨이 출력하는 컨테이너에 의존
   sampletest cols-3 톤만 부여 */
#gk-search .gk-results-grid > * { font-family:var(--f-sans); }

/* 빈 결과 */
#gk-search .gk-empty {
  padding:80px 28px; text-align:center;
}
#gk-search .gk-empty .big {
  font-weight:900; font-size:64px; letter-spacing:0;
  text-transform:uppercase; line-height:.95; margin-bottom:14px;
}
#gk-search .gk-empty .big em { font-style:italic; color:var(--red); font-weight:400; }
#gk-search .gk-empty p {
  font-family:var(--f-mono); font-size:11px; color:var(--muted);
  letter-spacing:.08em; text-transform:uppercase;
}

/* 페이징 */
#gk-search .pg_wrap {
  margin-top:32px; padding-top:24px;
  border-top:1px solid var(--line);
  display:flex; justify-content:center; gap:6px;
  font-family:var(--f-mono); font-size:11px;
  text-transform:uppercase; letter-spacing:.06em;
}
#gk-search .pg_wrap .pg a,
#gk-search .pg_wrap .pg strong {
  display:inline-block; padding:6px 10px; min-width:32px; text-align:center;
  border:1px solid var(--line); color:var(--ink); text-decoration:none;
}
#gk-search .pg_wrap .pg strong { background:var(--ink); color:#fff; border-color:var(--ink); }
#gk-search .pg_wrap .pg a:hover { border-color:var(--ink); }

/* 관리자 버튼 */
#gk-search .sit_admin { padding: 14px 28px; border-bottom:1px solid var(--line); }
#gk-search .sit_admin .btn_admin {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 12px; border:1px solid var(--ink);
  font-family:var(--f-mono); font-size:11px; text-transform:uppercase;
  letter-spacing:.08em; color:var(--ink); text-decoration:none;
}

/* === 모바일 단일 반응형 === */
@media (max-width: 1024px) {
  #gk-search .gk-search-body { grid-template-columns:1fr; }
  #gk-search .gk-sidebar {
    border-right:none; border-bottom:1px solid var(--line);
    padding:24px 20px;
  }
  #gk-search #ssch_q { font-size:64px; }
}
@media (max-width: 640px) {
  #gk-search .gk-search-top { padding:32px 20px 24px; }
  #gk-search #ssch_q { font-size:38px; padding-bottom:10px; border-bottom-width:2px; }
  #gk-search .gk-search-form-row { grid-template-columns:1fr; gap:12px; }
  #gk-search .gk-btn-search { padding:14px 20px; font-size:11px; }
  #gk-search .gk-search-eyebrow { font-size:10px; margin-bottom:10px; }
  #gk-search .gk-search-meta { font-size:10px; }
  #gk-search .gk-results-area { padding:24px 16px 96px; }
  #gk-search .gk-sidebar { padding:20px 16px; }
  #gk-search .gk-side-title { font-size:10px; margin-bottom:14px; }
  #gk-search .gk-side-title.next { margin-top:28px; }
  #gk-search .gk-trend a { font-size:13px; }
  #gk-search .gk-results-head { flex-direction:column; align-items:flex-start; }
  #gk-search .gk-empty .big { font-size:40px; }
}

/* 하단 모바일 탭 영역 (shop.head 가 출력) 와 충돌 방지 — 결과 영역 하단 여백 */
@media (max-width: 768px) {
  #gk-search { padding-bottom: 64px; }
}
/* GLOW·KIKI — shop/cart.php inline style 1 이전 */
    /* ========================================
   Cart Page - 29CM Style Layout
   ======================================== */

    /* Container */
    .cart-wrapper {
        max-width: 1850px;
        margin: 0 auto;
        padding: 40px 20px 80px;
    }


    /* Top Notice */
    .cart-notice {
        background: #f8f9fa;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        padding: 15px 20px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-notice p {
        margin: 0;
        color: #333;
        font-size: 14px;
    }

    .cart-notice .highlight {
        color: #c0392b;
        font-weight: 600;
    }

    .cart-notice .btn-login {
        background: #fff;
        border: 1px solid #c0392b;
        color: #c0392b;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 13px;
        text-decoration: none;
    }

    /* Header with Steps */
    .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 20px;
    }

    .cart-header h1 {
        font-size: 28px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }

    .cart-header .sub-info {
        font-size: 12px;
        color: #999;
        margin-top: 5px;
    }

    /* Steps */
    .cart-steps {
        display: flex;
        gap: 30px;
        font-size: 14px;
    }

    .cart-steps .step {
        color: #999;
    }

    .cart-steps .step.active {
        color: #000;
        font-weight: 700;
    }

    .cart-steps .step-num {
        margin-right: 5px;
    }

    /* Two Column Layout */
    .cart-layout {
        display: flex;
        gap: 40px;
    }

    .cart-main {
        flex: 1;
    }

    .cart-sidebar {
        width: 320px;
        flex-shrink: 0;
    }

    /* Product List Header */
    .cart-list-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 2px solid #000;
    }

    .cart-list-header .select-all {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #000;
    }

    .cart-list-header .select-all input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #c0392b;
    }

    .cart-list-header .actions {
        display: flex;
        gap: 15px;
    }

    .cart-list-header .actions button,
    .cart-list-header .actions a {
        background: none;
        border: none;
        color: #666;
        font-size: 13px;
        cursor: pointer;
        text-decoration: none;
    }

    .cart-list-header .actions button:hover,
    .cart-list-header .actions a:hover {
        color: #000;
    }

    /* Column Headers */
    .cart-columns {
        display: grid;
        grid-template-columns: 50px 1fr 150px 150px 120px 120px;
        padding: 15px 0;
        border-bottom: 1px solid #e5e5e5;
        font-size: 13px;
        color: #999;
        text-align: center;
    }

    .cart-columns .col-product {
        text-align: left;
        padding-left: 15px;
    }

    /* Cart Item */
    .cart-item {
        display: grid;
        grid-template-columns: 50px 1fr 150px 150px 120px 120px;
        align-items: center;
        padding: 25px 0;
        border-bottom: 1px solid #eee;
    }

    .cart-item .item-check {
        display: flex;
        justify-content: center;
    }

    .cart-item .item-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #c0392b;
    }

    .cart-item .item-product {
        display: flex;
        gap: 15px;
    }

    .cart-item .item-img {
        width: 100px;
        height: 100px;
        border-radius: 8px;
        overflow: hidden;
        background: #f5f5f5;
    }

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

    .cart-item .item-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .cart-item .item-brand {
        font-size: 12px;
        color: #999;
    }

    .cart-item .item-name {
        font-size: 14px;
        color: #000;
        font-weight: 500;
        text-decoration: none;
        line-height: 1.4;
    }

    .cart-item .item-name:hover {
        text-decoration: underline;
    }

    .cart-item .item-option {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }

    .cart-item .item-option-edit {
        font-size: 12px;
        color: #c0392b;
        cursor: pointer;
        margin-top: 5px;
    }

    /* Quantity Control */
    .cart-item .item-qty {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .qty-control {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .qty-control button {
        width: 32px;
        height: 32px;
        border: none;
        background: #fff;
        cursor: pointer;
        font-size: 14px;
        color: #333;
    }

    .qty-control button:hover {
        background: #f5f5f5;
    }

    .qty-control input {
        width: 40px;
        height: 32px;
        border: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        text-align: center;
        font-size: 14px;
    }

    /* Price */
    .cart-item .item-price {
        text-align: center;
    }

    .cart-item .item-price .discount {
        color: #ff5722;
        font-weight: 700;
        font-size: 14px;
    }

    .cart-item .item-price .price {
        font-size: 15px;
        font-weight: 700;
        color: #000;
    }

    .cart-item .item-price .original {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
    }

    /* Delivery */
    .cart-item .item-delivery {
        text-align: center;
    }

    .cart-item .item-delivery .badge {
        display: inline-block;
        padding: 4px 10px;
        background: #e8f5e9;
        color: #c0392b;
        font-size: 12px;
        border-radius: 4px;
        font-weight: 500;
    }

    .cart-item .item-delivery .badge.paid {
        background: #333;
        color: #fff;
    }

    /* Actions */
    .cart-item .item-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .cart-item .item-actions .btn-buy {
        width: 90px;
        padding: 10px 0;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 13px;
        cursor: pointer;
    }

    .cart-item .item-actions .btn-buy:hover {
        background: #000;
    }

    .cart-item .item-actions .btn-gift {
        width: 90px;
        padding: 10px 0;
        background: #fff;
        color: #333;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 13px;
        cursor: pointer;
    }

    .cart-item .item-actions .btn-gift:hover {
        border-color: #333;
    }

    .cart-item .item-actions .btn-delete {
        background: none;
        border: none;
        color: #999;
        font-size: 18px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
    }

    /* Empty Cart */
    .cart-empty {
        text-align: center;
        padding: 80px 20px;
        color: #999;
    }

    .cart-empty p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cart-empty .btn-shop {
        display: inline-block;
        padding: 15px 40px;
        background: #000;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 15px;
    }

    /* ========================================
   Sidebar - Order Summary
   ======================================== */
    .order-summary {
        position: sticky;
        top: 120px;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        padding: 25px;
    }

    .order-summary h3 {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        margin: 0 0 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .order-summary .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .order-summary .summary-row .label {
        color: #666;
    }

    .order-summary .summary-row .value {
        color: #000;
    }

    .order-summary .summary-row .value.discount {
        color: #ff5722;
    }

    .order-summary .summary-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .order-summary .summary-total .label {
        font-size: 15px;
        font-weight: 600;
        color: #000;
    }

    .order-summary .summary-total .value {
        font-size: 24px;
        font-weight: 700;
        color: #000;
    }

    .order-summary .btn-order {
        display: block;
        width: 100%;
        padding: 18px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
    }

    .order-summary .btn-order:hover {
        background: #333;
    }

    .order-summary .order-action-buttons {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }

    .order-summary .order-action-buttons button {
        flex: 1;
    }

    .order-summary .btn-estimate {
        display: block;
        width: 100%;
        padding: 18px;
        background: #fff;
        color: #111;
        border: 1px solid #111;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
    }

    .order-summary .btn-estimate:hover {
        background: #f5f5f5;
    }

    /* Bottom Summary Bar */
    .cart-bottom-summary {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 20px 25px;
        margin-top: 30px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        font-size: 14px;
    }

    .cart-bottom-summary .summary-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cart-bottom-summary .summary-item .label {
        color: #666;
    }

    .cart-bottom-summary .summary-item .value {
        font-weight: 700;
        color: #000;
    }

    .cart-bottom-summary .summary-item .value.highlight {
        color: #ff5722;
    }

    .cart-bottom-summary .summary-item .value.total {
        font-size: 18px;
        color: #000;
    }

    .cart-bottom-summary .plus,
    .cart-bottom-summary .equals {
        color: #999;
    }

    /* ========================================
       Option Modification Modal
       ======================================== */
    #mod_option_frm {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 480px;
        max-width: 95vw;
        max-height: 80vh;
        overflow-y: auto;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 10001;
        padding: 30px;
    }

    #mod_option_frm h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0 0 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mod_option_frm .option_wr {
        margin-bottom: 20px;
    }

    #mod_option_frm .option_wr h3 {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin: 0 0 10px;
    }

    #mod_option_frm .option_wr select,
    #mod_option_frm select {
        width: 100%;
        height: 48px;
        padding: 0 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 14px;
        color: #333;
        background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 15px center;
        background-size: 14px;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        margin-bottom: 12px;
    }

    #mod_option_frm select:focus {
        outline: none;
        border-color: #c0392b;
    }

    #mod_option_frm #sit_sel_option {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        margin-top: 20px;
    }

    #mod_option_frm #sit_sel_option h3 {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin: 0 0 15px;
    }

    #mod_option_frm #sit_opt_added {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #mod_option_frm #sit_opt_added li {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    #mod_option_frm #sit_opt_added li:last-child {
        margin-bottom: 0;
    }

    #mod_option_frm .opt_name {
        flex: 1;
        min-width: 150px;
    }

    #mod_option_frm .sit_opt_subj {
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }

    #mod_option_frm .opt_count {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #mod_option_frm .btn_frmline {
        width: 36px;
        height: 36px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #333;
        transition: all 0.2s;
    }

    #mod_option_frm .btn_frmline:hover {
        border-color: #c0392b;
        color: #c0392b;
    }

    #mod_option_frm .num_input {
        width: 50px;
        height: 36px;
        border: 1px solid #ddd;
        border-radius: 8px;
        text-align: center;
        font-size: 14px;
    }

    #mod_option_frm .sit_opt_prc {
        font-size: 14px;
        color: #666;
        min-width: 70px;
        text-align: right;
    }

    #mod_option_frm .sit_opt_del {
        width: 28px;
        height: 28px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #999;
        transition: all 0.2s;
    }

    #mod_option_frm .sit_opt_del:hover {
        background: #ff5722;
        color: #fff;
    }

    #mod_option_frm #sit_tot_price {
        margin-top: 20px;
        padding: 15px 20px;
        background: #f0f0f0;
        border-radius: 10px;
        text-align: right;
        font-size: 16px;
        font-weight: 700;
    }

    #mod_option_frm .btn_confirm {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }

    #mod_option_frm .btn_submit {
        flex: 1;
        padding: 16px;
        background: #c0392b;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }

    #mod_option_frm .btn_submit:hover {
        background: #008c4a;
    }

    #mod_option_frm .btn_close {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 32px;
        height: 32px;
        border: none;
        background: transparent;
        font-size: 20px;
        color: #999;
        cursor: pointer;
    }

    #mod_option_frm .btn_close:hover {
        color: #333;
    }

    .mod_option_bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
    }

    /* Legacy default_shop.css modal rules override
       Keep specificity >= #sod_bsk_list #mod_option_frm to prevent layout break */
    #sod_bsk_list #mod_option_frm {
        top: 50%;
        left: 50%;
        width: min(480px, 95vw);
        max-width: 95vw;
        max-height: 80vh;
        margin: 0;
        transform: translate(-50%, -50%);
        border: 0;
        border-radius: 16px;
        padding: 30px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        background: #fff;
        z-index: 10001;
    }

    #sod_bsk_list .mod_option_bg {
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
    }

    #sod_bsk_list #mod_option_frm #sit_tot_price {
        float: none;
        display: block;
        width: 100%;
        margin: 20px 0 0;
        box-sizing: border-box;
    }

    #sod_bsk_list #mod_option_frm .btn_confirm {
        position: relative;
        float: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 25px 0 0;
        background: transparent;
        box-sizing: border-box;
    }

    #sod_bsk_list #mod_option_frm #sit_opt_added button,
    #sod_bsk_list #mod_option_frm #sit_opt_added .num_input,
    #sod_bsk_list #mod_option_frm #sit_opt_added .sit_opt_prc {
        float: none;
    }

    #sod_bsk_list #mod_option_frm .btn_confirm .btn_close {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 20px;
        color: #999;
    }

    #sod_bsk_list #mod_option_frm .btn_confirm .btn_submit {
        flex: 1 1 auto;
        width: 100%;
        min-height: 50px;
        height: 50px;
        margin: 0;
        padding: 0 16px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        box-sizing: border-box;
    }

    #sod_bsk_list #mod_option_frm .btn_confirm .btn_close:hover {
        background: transparent;
        color: #333;
    }

    @media (max-width: 767.98px) {
        #sod_bsk_list #mod_option_frm {
            width: calc(100vw - 24px);
            max-height: calc(100vh - 24px);
            padding: 20px 16px 16px;
            border-radius: 12px;
        }

        #sod_bsk_list #mod_option_frm h2 {
            margin-bottom: 16px;
            padding-bottom: 14px;
            padding-right: 36px;
            font-size: 18px;
        }

        #sod_bsk_list #mod_option_frm #sit_sel_option {
            padding: 14px;
        }

        #sod_bsk_list #mod_option_frm #sit_opt_added li {
            padding: 12px;
        }

        #sod_bsk_list #mod_option_frm .opt_name {
            min-width: 100%;
        }

        #sod_bsk_list #mod_option_frm .opt_count {
            width: 100%;
            justify-content: flex-start;
            flex-wrap: wrap;
            row-gap: 8px;
        }

        #sod_bsk_list #mod_option_frm .sit_opt_prc {
            margin-left: auto;
        }

        #sod_bsk_list #mod_option_frm .btn_confirm {
            flex-direction: column;
            gap: 8px;
        }

        #sod_bsk_list #mod_option_frm .btn_confirm .btn_submit {
            min-height: 46px;
            height: 46px;
            font-size: 15px;
        }
    }

    /* ========================================
       Rounded Corners for All Boxes
       ======================================== */
    .cart-notice {
        border-radius: 12px;
    }

    .cart-item {
        border-radius: 12px;
        background: #fff;
        margin-bottom: 10px;
        border: 1px solid #f0f0f0;
        padding: 25px 15px;
    }

    .cart-item:hover {
        border-color: #e5e5e5;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .cart-item .item-img {
        border-radius: 12px;
    }

    .qty-control {
        border-radius: 8px;
    }

    .qty-control button {
        border-radius: 6px;
    }

    .cart-item .item-delivery .badge {
        border-radius: 6px;
    }

    .cart-item .item-actions .btn-buy,
    .cart-item .item-actions .btn-gift {
        border-radius: 8px;
    }

    .cart-bottom-summary {
        border-radius: 12px;
    }

    .order-summary {
        border-radius: 16px;
    }

    .order-summary .btn-order {
        border-radius: 10px;
    }
/* GLOW·KIKI — shop/cart.php inline style 2 이전 */
    /* ========================================
   Recommended Products Section
   ======================================== */
    .recommend-section {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #eee;
    }

    .recommend-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .recommend-header h2 {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }

    .recommend-nav {
        display: flex;
        gap: 8px;
    }

    .recommend-nav button {
        width: 40px;
        height: 40px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #333;
        transition: all 0.2s;
    }

    .recommend-nav button:hover {
        border-color: #333;
    }

    .recommend-nav button:disabled {
        border-color: #e9e9e9;
        color: #c8c8c8;
        cursor: default;
    }

    .recommend-section.recommend-no-scroll .recommend-nav {
        visibility: hidden;
    }

    .recommend-products {
        --slides-per-view: 5;
        --recommend-gap: 20px;
        overflow: hidden;
        position: relative;
    }

    .recommend-track {
        display: flex;
        gap: var(--recommend-gap);
        transition: transform 0.32s ease;
        will-change: transform;
    }

    .recommend-item {
        flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--recommend-gap)) / var(--slides-per-view));
        min-width: 0;
        border-radius: 12px;
        overflow: hidden;
    }

    .recommend-item .item-link {
        text-decoration: none;
        color: inherit;
    }

    .recommend-item .item-img {
        position: relative;
        aspect-ratio: 4/5;
        background: #f5f5f5;
        border-radius: 12px;
        overflow: hidden;
    }

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

    .recommend-item .btn-wish {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        border: none;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #999;
        transition: all 0.2s;
    }

    .recommend-item .btn-wish:hover {
        color: #ff5722;
    }

    .recommend-item .item-info {
        padding: 12px 5px;
    }

    .recommend-item .item-brand {
        font-size: 12px;
        color: #999;
        margin-bottom: 4px;
    }

    .recommend-item .item-name {
        font-size: 14px;
        color: #333;
        line-height: 1.4;
        margin-bottom: 8px;
        height: 40px;
        overflow: hidden;
    }

    .recommend-item .item-original {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
    }

    .recommend-item .item-price-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .recommend-item .item-price-row .discount {
        font-size: 15px;
        font-weight: 700;
        color: #c0392b;
    }

    .recommend-item .item-price-row .price {
        font-size: 15px;
        font-weight: 700;
        color: #000;
    }

    /* ========================================
   Cart Info Section
   ======================================== */
    .cart-info-section {
        margin-top: 40px;
        padding: 30px;
        background: #f8f9fa;
        border-radius: 12px;
    }

    .cart-info-section h3 {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin: 0 0 15px;
    }

    .cart-info-section .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cart-info-section .info-list li {
        font-size: 13px;
        color: #666;
        line-height: 1.8;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

    .cart-info-section .info-list li i {
        color: #999;
        margin-top: 2px;
    }

    .cart-info-section .info-list .highlight {
        color: #c0392b;
    }

    /* ========================================
   Responsive Styles
   ======================================== */
    @media (max-width: 1200px) {
        .cart-layout {
            flex-direction: column;
        }

        .cart-sidebar {
            width: 100%;
            margin-top: 30px;
        }

        .order-summary {
            position: static;
        }

        .recommend-products { --slides-per-view: 4; }
    }

    @media (max-width: 992px) {
        .cart-columns {
            display: none;
        }

        .cart-item {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cart-item .item-check {
            position: absolute;
            top: 15px;
            left: 15px;
        }

        .cart-item .item-product {
            width: 100%;
            padding-left: 35px;
        }

        .cart-item .item-qty,
        .cart-item .item-price,
        .cart-item .item-delivery,
        .cart-item .item-actions {
            width: 100%;
            justify-content: flex-start;
            text-align: left;
        }

        .cart-item .item-actions {
            flex-direction: row;
            gap: 10px;
        }

        .cart-steps {
            display: none;
        }

        .recommend-products { --slides-per-view: 3; }
    }

    @media (max-width: 768px) {
        .cart-wrapper {
            padding: 20px 15px 60px;
        }

        .cart-header h1 {
            font-size: 22px;
        }

        .cart-notice {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .cart-list-header {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        .recommend-products {
            --slides-per-view: 3;
            --recommend-gap: 12px;
        }

        .cart-bottom-summary {
            flex-wrap: wrap;
            justify-content: center;
        }

        .order-summary {
            padding: 20px;
        }

        .order-summary .btn-order {
            padding: 15px;
            font-size: 15px;
        }

        .order-summary .btn-estimate {
            padding: 15px;
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .recommend-products {
            --slides-per-view: 3;
            --recommend-gap: 10px;
        }

        .order-summary .order-action-buttons {
            flex-direction: column;
        }

        .cart-item .item-product {
            flex-direction: column;
            gap: 10px;
        }

        .cart-item .item-img {
            width: 80px;
            height: 80px;
        }

        .recommend-header h2 {
            font-size: 18px;
        }

        .recommend-nav button {
            width: 32px;
            height: 32px;
        }
    }
/* GLOW·KIKI — newwin.inc.php popup style 이전 */
/* ── 오버레이 ──────────────────────────────────────── */
#hd_pop_overlay {
    position: fixed;
    inset: 0;
    z-index: 9800;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 20, 0.68);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 16px;
}

#hd_pop_overlay.hd_pop_fadein {
    animation: hd_overlay_in 0.3s ease forwards;
}

#hd_pop_overlay.hd_pop_fadeout {
    animation: hd_overlay_out 0.25s ease forwards;
}

/* ── 모달 컨테이너 ────────────────────────────────── */
.hd_pop_modal {
    position: relative;
    width: min(90vw, 540px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 60px rgba(0,0,0,0.28),
        0 0 0 1px rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.hd_pop_modal.hd_pop_modal_in {
    animation: hd_modal_in 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hd_pop_modal.hd_pop_modal_out {
    animation: hd_modal_out 0.22s ease forwards;
}

/* ── 닫기 버튼 (이미지 위 오버랩) ───────────────── */
.hd_pop_close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(10, 12, 20, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hd_pop_close:hover {
    background: rgba(10, 12, 20, 0.82);
    transform: scale(1.08);
}

/* ── 이미지 영역 ─────────────────────────────────── */
.hd_pop_img_wrap {
    position: relative;
    width: 100%;
    background: #0a0c14;
    line-height: 0;
}

.hd_pop_img_wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    object-position: center;
}

/* ── 푸터 ────────────────────────────────────────── */
.hd_pop_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #f0f2f5;
}

/* 체크박스 스타일 레이블 */
.hd_pop_reject_label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.hd_pop_reject_checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #c4cad4;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s ease, border-color 0.18s ease;
    position: relative;
}

.hd_pop_reject_checkbox::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid transparent;
    border-top: none;
    border-left: none;
    transform: rotate(43deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.hd_pop_reject_checkbox.is-checked {
    background: #1a1a2e;
    border-color: #1a1a2e;
}

.hd_pop_reject_checkbox.is-checked::after {
    border-color: #fff;
    opacity: 1;
}

.hd_pop_reject_text {
    font-size: 12.5px;
    color: #5a6272;
    line-height: 1;
    letter-spacing: 0;
}

/* 닫기 버튼 (푸터) */
.hd_pop_close_btn {
    height: 32px;
    padding: 0 16px;
    border: 1.5px solid #1a1a2e;
    border-radius: 8px;
    background: #fff;
    color: #1a1a2e;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    line-height: 1;
    flex-shrink: 0;
}

.hd_pop_close_btn:hover {
    background: #1a1a2e;
    color: #fff;
}

/* ── 애니메이션 ──────────────────────────────────── */
@keyframes hd_overlay_in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes hd_overlay_out {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes hd_modal_in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hd_modal_out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }
}

/* ── 모바일 ──────────────────────────────────────── */
@media (max-width: 600px) {
    #hd_pop_overlay {
        padding: 12px;
        align-items: center;
    }

    .hd_pop_modal {
        width: 92vw;
        border-radius: 14px;
    }

    .hd_pop_img_wrap img {
        max-height: 55vw;
    }

    .hd_pop_footer {
        padding: 10px 14px;
    }

    .hd_pop_reject_text {
        font-size: 12px;
    }

    .hd_pop_close_btn {
        height: 30px;
        font-size: 12px;
        padding: 0 13px;
    }
}
/* GLOW·KIKI — board basic list.skin.php inline style 이전 */
/* GLOW·KIKI board list — scoped */
#gk-board-list {
  --bg:#FAFAFA; --ink:#0A0A0A; --muted:#8a8a8a; --line:#e6e6e6; --red:#E63946;
  --f-sans:var(--gk-sans);
  --f-mono:"JetBrains Mono","Menlo",monospace;
  background:var(--bg); color:var(--ink); font-family:var(--f-sans);
}
#gk-board-list * { box-sizing:border-box; }

#gk-board-list .gk-board-breadcrumb {
  display:flex; align-items:center; gap:12px;
  padding:24px 28px; border-bottom:1px solid var(--line);
  background:var(--bg); color:var(--muted);
  font-family:var(--f-mono); font-size:11px; letter-spacing:.08em;
  text-transform:uppercase;
}
#gk-board-list .gk-board-breadcrumb a { color:inherit; text-decoration:none; }
#gk-board-list .gk-board-breadcrumb a:hover { color:var(--ink); }
#gk-board-list .gk-board-breadcrumb b { color:var(--ink); font-weight:500; }
#gk-board-list .gk-board-breadcrumb span { color:var(--line); }

#gk-board-list .gk-page-head {
  padding:56px 28px 64px; border-bottom:1px solid var(--line);
  display:grid; grid-template-columns:1fr auto;
  align-items:end; gap:32px;
}
#gk-board-list .gk-page-head .eyebrow {
  font-family:var(--f-mono); font-size:11px; color:var(--red);
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px;
}
#gk-board-list .gk-page-head h1 {
  max-width:1280px;
  font-weight:900; font-size:96px; line-height:.88;
  letter-spacing:0; text-transform:uppercase; margin:0;
}
#gk-board-list .gk-page-head h1 em {
  color:var(--red);
  font-family:Georgia, "Times New Roman", serif;
  font-style:italic;
  font-weight:400;
}
#gk-board-list .gk-page-head .meta {
  font-family:var(--f-mono); font-size:11px; letter-spacing:.06em;
  color:var(--muted); text-align:right; line-height:1.8; text-transform:uppercase;
}
#gk-board-list .gk-page-head .meta b { color:var(--ink); font-weight:500; }

#gk-board-list .gk-tools {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px; border-bottom:1px solid var(--line); gap:16px; flex-wrap:wrap;
}
#gk-board-list .gk-cate-bar { display:flex; gap:8px; flex-wrap:wrap; list-style:none; padding:0; margin:0; }
#gk-board-list .gk-cate-bar a, #gk-board-list .gk-cate-bar li a {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 14px; border:1px solid var(--ink); border-radius:999px;
  font-family:var(--f-mono); font-size:10px; letter-spacing:.06em;
  text-transform:uppercase; text-decoration:none; color:var(--ink); background:transparent;
}
#gk-board-list .gk-cate-bar a:hover { background:rgba(0,0,0,.04); }
#gk-board-list .gk-cate-bar a.is-active { background:var(--ink); color:#fff; }

#gk-board-list .gk-tools-right { display:flex; gap:8px; }
#gk-board-list .gk-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  padding:10px 16px; border:1px solid var(--ink); background:transparent;
  font-family:var(--f-mono); font-size:11px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ink); cursor:pointer; text-decoration:none;
}
#gk-board-list .gk-btn:hover { background:var(--ink); color:#fff; }
#gk-board-list .gk-btn.is-red { background:var(--red); color:#fff; border-color:var(--red); }
#gk-board-list .gk-btn.is-red:hover { background:var(--ink); border-color:var(--ink); }

#gk-board-list .gk-search-form {
  display:flex; gap:8px; padding:14px 28px;
  border-bottom:1px solid var(--line); background:#f4f4f4; align-items:center;
}
#gk-board-list .gk-search-form input,
#gk-board-list .gk-search-form select {
  height:36px; padding:0 12px; border:1px solid var(--line);
  font-family:var(--f-sans); font-size:13px; background:#fff;
}
#gk-board-list .gk-search-form input[type="text"] { flex:1; }

#gk-board-list .gk-list {
  list-style:none; padding:0; margin:0;
  border-top:1px solid var(--line);
}
#gk-board-list .gk-list li {
  border-bottom:1px solid var(--line);
  padding:22px 28px;
  display:grid; grid-template-columns: auto 1fr auto auto auto;
  gap:20px; align-items:baseline;
}
#gk-board-list .gk-list li.notice { background:#0A0A0A; color:#fff; }
#gk-board-list .gk-list li.notice .num,
#gk-board-list .gk-list li.notice .meta-row b { color:var(--red); }
#gk-board-list .gk-list li:hover { background:rgba(0,0,0,.02); }
#gk-board-list .gk-list .num {
  font-family:var(--f-mono); font-size:11px; letter-spacing:.08em;
  color:var(--muted); min-width:48px;
}
#gk-board-list .gk-list .body { min-width:0; }
#gk-board-list .gk-list .cat-pill {
  display:inline-block; font-family:var(--f-mono); font-size:9px;
  letter-spacing:.08em; text-transform:uppercase; color:var(--red);
  border:1px solid var(--red); padding:2px 6px; margin-right:8px;
  vertical-align:middle;
}
#gk-board-list .gk-list a.subj {
  font-weight:700; font-size:18px; line-height:1.3; letter-spacing:0;
  color:inherit; text-decoration:none;
}
#gk-board-list .gk-list a.subj:hover { color:var(--red); }
#gk-board-list .gk-list .meta-row {
  margin-top:6px; font-family:var(--f-mono); font-size:10px;
  letter-spacing:.06em; color:var(--muted); text-transform:uppercase;
  display:flex; gap:14px; flex-wrap:wrap;
}
#gk-board-list .gk-list .meta-row b { color:var(--ink); font-weight:500; }
#gk-board-list .gk-list .right-meta {
  font-family:var(--f-mono); font-size:10px; color:var(--muted);
  letter-spacing:.06em; text-transform:uppercase; white-space:nowrap;
}
#gk-board-list .gk-list .right-meta b { color:var(--ink); font-weight:500; }
#gk-board-list .gk-list .icons { display:flex; gap:8px; align-items:center; color:var(--muted); font-size:14px; }

#gk-board-list .gk-empty { padding:80px 28px; text-align:center; }
#gk-board-list .gk-empty .big {
  font-weight:900; font-size:56px; letter-spacing:0;
  text-transform:uppercase; line-height:.95; margin-bottom:14px;
}
#gk-board-list .gk-empty .big em { font-style:italic; color:var(--red); font-weight:400; }
#gk-board-list .gk-empty p {
  font-family:var(--f-mono); font-size:11px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase;
}

#gk-board-list .gk-paging {
  padding:32px 28px; display:flex; justify-content:center;
  border-top:1px solid var(--line);
}
#gk-board-list .gk-paging .pg_wrap { display:inline-flex; gap:6px; flex-wrap:wrap; justify-content:center; }
#gk-board-list .gk-paging .pg a,
#gk-board-list .gk-paging .pg strong {
  display:inline-block; padding:6px 10px; min-width:32px; text-align:center;
  border:1px solid var(--line); color:var(--ink); text-decoration:none;
  font-family:var(--f-mono); font-size:11px; letter-spacing:.06em;
}
#gk-board-list .gk-paging .pg strong { background:var(--ink); color:#fff; border-color:var(--ink); }
#gk-board-list .gk-paging .pg a:hover { border-color:var(--ink); }

#gk-board-list .gk-bottom-actions {
  display:flex; justify-content:flex-end; gap:8px;
  padding:16px 28px; border-top:1px solid var(--line);
}

@media (max-width:1024px) {
  #gk-board-list .gk-page-head h1 { font-size:56px; }
}
@media (max-width:640px) {
  #gk-board-list .gk-page-head { grid-template-columns:1fr; padding:28px 18px; gap:14px; }
  #gk-board-list .gk-page-head h1 { font-size:36px; }
  #gk-board-list .gk-page-head .meta { text-align:left; }
  #gk-board-list .gk-tools { padding:12px 18px; }
  #gk-board-list .gk-list li { grid-template-columns: 1fr; padding:16px 18px; gap:6px; }
  #gk-board-list .gk-list .num { min-width:auto; }
  #gk-board-list .gk-list a.subj { font-size:15px; }
  #gk-board-list .gk-list .right-meta { white-space:normal; }
  #gk-board-list .gk-paging { padding:20px 14px; }
  #gk-board-list .gk-search-form { padding:10px 18px; }
}

/* GLOW·KIKI — board basic 페이지 mobile margin override (글로벌 .gk-page-head 음수 margin 차단) */
@media (max-width: 767px) {
    #gk-board-list .gk-page-head {
        margin-left: 0;
        margin-right: 0;
        padding: 28px 18px;
        gap: 14px;
    }
}

/* GLOW·KIKI — board list helper utilities (inline-style 대체) */
.gk-btn.gk-btn-static { cursor: default; }
.gk-search-form.is-hidden { display: none; }
.gk-comment-cnt {
    font-family: var(--gk-mono);
    font-size: 10px;
    color: var(--gk-red);
    margin-left: 4px;
}
.gk-tag-new,
.gk-tag-hot { color: var(--gk-red); font-weight: 600; }
#gk-board-list.gk-board-list-wrap { width: 100%; max-width: 100%; }

/* GLOW·KIKI — board write page (gk-board-write 스코프) */
#gk-board-write.gk-board-write-wrap {
    background: var(--gk-bg);
    color: var(--gk-ink);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
#gk-board-write .gk-breadcrumb {
    padding: 14px 28px;
    border-bottom: 1px solid var(--gk-line);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-muted);
}
#gk-board-write .gk-breadcrumb a { color: inherit; text-decoration: none; }
#gk-board-write .gk-breadcrumb a:hover { color: var(--gk-ink); }
#gk-board-write .gk-breadcrumb span { color: var(--gk-line); }
#gk-board-write .gk-breadcrumb b { color: var(--gk-ink); font-weight: 500; }
#gk-board-write .gk-page-head {
    padding: 48px 28px;
    border-bottom: 1px solid var(--gk-line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
}
#gk-board-write .gk-page-head .eyebrow {
    font-family: var(--gk-mono); font-size: 11px; color: var(--gk-red);
    letter-spacing: 0; text-transform: uppercase; margin-bottom: 14px;
}
#gk-board-write .gk-page-head h1 {
    font-weight: 900; font-size: 64px; letter-spacing: 0; line-height: 0.92;
    text-transform: uppercase; margin: 0;
}
#gk-board-write .gk-page-head .meta {
    font-family: var(--gk-mono); font-size: 11px; letter-spacing: 0;
    text-transform: uppercase; color: var(--gk-muted); text-align: right;
}
#gk-board-write .gk-page-head .meta b { color: var(--gk-ink); font-weight: 500; }
#gk-board-write .gk-board-write-body { padding: 32px 28px 64px; max-width: 100%; }
#gk-board-write .gk-write-form { width: 100%; max-width: 100%; }
#gk-board-write .gk-write-form .frm_input {
    width: 100%; padding: 14px 16px; border: 1px solid var(--gk-ink);
    background: transparent; font-size: 14px; font-family: var(--gk-sans);
}
#gk-board-write .gk-write-form .full_input,
#gk-board-write .gk-write-form .form-control { width: 100% !important; }
#gk-board-write .gk-write-form .write_div { margin-bottom: 18px; }
#gk-board-write .gk-write-form .bo_v_option { display: flex; gap: 14px; flex-wrap: wrap; padding: 0; list-style: none; }
#gk-board-write .gk-write-form .btn_confirm { display: flex; gap: 8px; justify-content: flex-end; padding: 24px 0; flex-wrap: wrap; }
#gk-board-write .gk-write-form .btn_submit,
#gk-board-write .gk-write-form .btn_cancel,
#gk-board-write .gk-write-form .btn {
    padding: 14px 28px; font-family: var(--gk-mono); font-size: 11px;
    letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--gk-ink);
    background: transparent; color: var(--gk-ink); cursor: pointer; text-decoration: none;
}
#gk-board-write .gk-write-form .btn_submit { background: var(--gk-red); color: #fff; border-color: var(--gk-red); }
@media (max-width: 767px) {
    #gk-board-write .gk-page-head { grid-template-columns: 1fr; padding: 24px 16px; gap: 12px; margin: 0; }
    #gk-board-write .gk-page-head h1 { font-size: 36px; }
    #gk-board-write .gk-page-head .meta { text-align: left; }
    #gk-board-write .gk-board-write-body { padding: 18px 14px 80px; }
}

/* GLOW·KIKI — board write redesign override */
body.gk-board-write-active.has-bottom-nav { padding-bottom: 0; }
body.gk-board-write-active .gk-mobile-tabbar { display: none !important; }

#gk-board-write .gk-page-head {
    background: var(--gk-ink);
    color: #fff;
    align-items: end;
}
#gk-board-write .gk-page-head h1 {
    font-size: 76px;
    line-height: .9;
}
#gk-board-write .gk-page-head h1 em {
    color: var(--gk-red);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}
#gk-board-write .gk-page-head .meta { color: rgba(255,255,255,.6); }
#gk-board-write .gk-page-head .meta b { color: #fff; }
#gk-board-write .gk-board-write-body {
    padding: 0;
    background: #fff;
}
#gk-board-write .gk-write-form {
    display: block;
}
#gk-board-write .gk-write-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    padding: 48px 40px;
    border-bottom: 1px solid var(--gk-line);
}
#gk-board-write .gk-write-main {
    min-width: 0;
    max-width: 920px;
}
#gk-board-write .gk-write-field {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 24px 0;
    border-top: 1px solid var(--gk-line);
    margin: 0;
}
#gk-board-write .gk-write-main .gk-write-field:first-child {
    border-top-color: var(--gk-ink);
}
#gk-board-write .gk-write-content,
#gk-board-write .gk-write-file,
#gk-board-write .gk-write-options {
    grid-template-columns: 1fr;
    gap: 10px;
}
#gk-board-write .gk-write-field > label,
#gk-board-write .gk-write-label {
    display: block;
    padding-top: 10px;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: uppercase;
}
#gk-board-write .gk-write-field b { color: var(--gk-red); }
#gk-board-write .gk-write-field label span,
#gk-board-write .gk-write-label small {
    display: block;
    margin-top: 6px;
    color: var(--gk-muted);
    font-family: var(--gk-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: none;
}
#gk-board-write .gk-write-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
#gk-board-write .gk-write-form .frm_input,
#gk-board-write .gk-write-form .gk-write-input,
#gk-board-write .gk-write-form select,
#gk-board-write .gk-write-form textarea {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid var(--gk-line);
    border-radius: 0;
    background: #fff;
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    font-size: 15px;
    line-height: 1.6;
}
#gk-board-write .gk-write-form .frm_input:focus,
#gk-board-write .gk-write-form .gk-write-input:focus,
#gk-board-write .gk-write-form select:focus,
#gk-board-write .gk-write-form textarea:focus {
    border-color: var(--gk-red);
    outline: 0;
}
#gk-board-write .gk-write-form select {
    height: 50px;
    padding: 0 14px;
}
#gk-board-write #autosave_wrapper {
    position: relative;
    display: grid;
    gap: 8px;
}
#gk-board-write #wr_subject {
    min-height: 66px;
    border-color: var(--gk-ink);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
}
#gk-board-write .gk-autosave-btn {
    justify-self: start;
    padding: 8px 12px;
    border: 1px solid var(--gk-line);
    background: #fff;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gk-board-write #autosave_pop {
    display: none;
    z-index: 20;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(360px, 100%);
    max-height: 220px;
    overflow: auto;
    border: 1px solid var(--gk-ink);
    background: #fff;
    box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
#gk-board-write #autosave_pop ul {
    margin: 0;
    padding: 12px;
    list-style: none;
}
#gk-board-write #autosave_pop button {
    width: 100%;
    padding: 10px;
    border: 0;
    border-top: 1px solid var(--gk-line);
    background: #fff;
}
#gk-board-write .gk-write-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid var(--gk-line);
    border-bottom: 0;
    background: #f6f4ef;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gk-board-write .gk-write-toolbar small {
    margin-left: auto;
    font-size: 10px;
}
#gk-board-write .gk-editor-shell textarea,
#gk-board-write #wr_content {
    min-height: 320px;
    padding: 16px;
    resize: vertical;
}
#gk-board-write #char_count_desc,
#gk-board-write #char_count_wrap {
    margin: 0 0 8px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gk-board-write #char_count_wrap {
    display: flex;
    justify-content: flex-end;
    margin: 8px 0 0;
}
#gk-board-write .gk-write-options .bo_v_option,
#gk-board-write .gk-write-options .gk-write-option-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
#gk-board-write .gk-write-options .bo_v_option li,
#gk-board-write .gk-write-options .gk-write-option-list li {
    display: inline-flex;
    align-items: center;
}
#gk-board-write .gk-write-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 7px 0 0;
    accent-color: var(--gk-red);
}
#gk-board-write .gk-write-options label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--gk-line);
    background: #fff;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gk-board-write .gk-file-box {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed var(--gk-line);
    background: #f8f7f4;
    color: var(--gk-muted);
    cursor: pointer;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gk-board-write .gk-file-box span {
    color: var(--gk-red);
    font-size: 24px;
    line-height: 1;
}
#gk-board-write .gk-file-box input {
    max-width: 180px;
}
#gk-board-write .gk-write-file .frm_input,
#gk-board-write .gk-write-file .gk-write-input {
    margin-top: 8px;
}
#gk-board-write .file_del,
#gk-board-write .gk-file-delete {
    display: block;
    margin-top: 8px;
    color: var(--gk-muted);
    font-size: 12px;
}
#gk-board-write .gk-write-captcha #captcha {
    max-width: 100%;
}
#gk-board-write .gk-write-aside {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
}
#gk-board-write .gk-write-card {
    padding: 22px;
    border: 1px solid var(--gk-line);
    background: #fff;
}
#gk-board-write .gk-write-card.dark {
    border-color: var(--gk-ink);
    background: var(--gk-ink);
    color: #fff;
}
#gk-board-write .gk-write-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}
#gk-board-write .gk-write-card strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}
#gk-board-write .gk-write-card p,
#gk-board-write .gk-write-card li {
    color: inherit;
    font-size: 13px;
    line-height: 1.65;
}
#gk-board-write .gk-write-card p {
    margin: 14px 0 0;
    color: var(--gk-muted);
}
#gk-board-write .gk-write-card.dark p { color: rgba(255,255,255,.66); }
#gk-board-write .gk-write-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
}
#gk-board-write .gk-write-submitbar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px 40px 48px;
    background: #fff;
}
#gk-board-write .gk-write-cancel,
#gk-board-write .gk-write-submit {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid var(--gk-ink);
    background: #fff;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}
#gk-board-write .gk-write-submit {
    min-width: 180px;
    border-color: var(--gk-red);
    background: var(--gk-red);
    color: #fff;
}
#gk-board-write .gk-write-submit:disabled {
    opacity: .55;
    cursor: wait;
}

@media (max-width: 1023px) {
    #gk-board-write .gk-write-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #gk-board-write .gk-write-aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #gk-board-write .gk-breadcrumb {
        padding: 12px 16px;
    }
    #gk-board-write .gk-page-head {
        grid-template-columns: 1fr;
        padding: 28px 18px 24px;
        gap: 18px;
        margin: 0;
    }
    #gk-board-write .gk-page-head h1 {
        font-size: 44px;
    }
    #gk-board-write .gk-page-head .meta {
        text-align: left;
    }
    #gk-board-write .gk-write-grid {
        padding: 22px 16px;
    }
    #gk-board-write .gk-write-field {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
    }
    #gk-board-write .gk-write-field > label,
    #gk-board-write .gk-write-label {
        padding-top: 0;
    }
    #gk-board-write #wr_subject {
        min-height: 58px;
        font-size: 22px;
    }
    #gk-board-write .gk-editor-shell textarea,
    #gk-board-write #wr_content {
        min-height: 240px;
    }
    #gk-board-write .gk-write-toolbar {
        gap: 9px;
        overflow-x: auto;
        white-space: nowrap;
    }
    #gk-board-write .gk-write-toolbar small {
        display: none;
    }
    #gk-board-write .gk-write-info,
    #gk-board-write .gk-write-aside {
        grid-template-columns: 1fr;
    }
    #gk-board-write .gk-write-submitbar {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 8px;
        padding: 12px 16px 24px;
        background: var(--gk-ink);
    }
    #gk-board-write .gk-write-cancel {
        border-color: rgba(255,255,255,.55);
        background: transparent;
        color: #fff;
    }
    #gk-board-write .gk-write-submit {
        min-width: 0;
    }
}

/* GLOW·KIKI — board list mobile tools wrap */
@media (max-width: 767px) {
    #gk-board-list .gk-tools-right { flex-wrap: wrap; gap: 6px; }
    #gk-board-list .gk-tools-right .gk-btn { padding: 8px 12px; font-size: 10px; }
    #gk-board-list .gk-tools { padding: 12px 14px; }
    #gk-board-list .gk-cate-bar { width: 100%; }
}

/* GLOW·KIKI — board search form is-hidden override (id 스코프 우선) */
.gk-search-form.is-hidden,
#gk-board-list .gk-search-form.is-hidden { display: none !important; }

/* GLOW·KIKI — board view page (gk-board-view 스코프) */
#gk-board-view.gk-board-view-wrap {
    background: var(--gk-bg);
    color: var(--gk-ink);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
#gk-board-view .gk-breadcrumb {
    padding: 14px 28px;
    border-bottom: 1px solid var(--gk-line);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--gk-mono);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gk-muted);
}
#gk-board-view .gk-breadcrumb a { color: inherit; text-decoration: none; }
#gk-board-view .gk-breadcrumb a:hover { color: var(--gk-ink); }
#gk-board-view .gk-breadcrumb span { color: var(--gk-line); }
#gk-board-view .gk-breadcrumb b { color: var(--gk-ink); font-weight: 500; }
#gk-board-view .gk-page-head {
    padding: 48px 28px;
    border-bottom: 1px solid var(--gk-line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
}
#gk-board-view .gk-page-head .eyebrow {
    font-family: var(--gk-mono); font-size: 11px; color: var(--gk-red);
    text-transform: uppercase; margin-bottom: 14px;
}
#gk-board-view .gk-page-head h1 {
    font-weight: 900; font-size: 56px; line-height: 0.92; text-transform: uppercase; margin: 0;
}
#gk-board-view .gk-page-head .meta {
    font-family: var(--gk-mono); font-size: 11px; text-transform: uppercase; color: var(--gk-muted); text-align: right;
}
#gk-board-view .gk-page-head .meta b { color: var(--gk-ink); font-weight: 500; }
#gk-board-view .gk-board-view-body { padding: 32px 28px 64px; max-width: 100%; }
#gk-board-view .gk-board-view-article { width: 100%; max-width: 100%; }
@media (max-width: 767px) {
    #gk-board-view .gk-page-head {
        grid-template-columns: 1fr; padding: 24px 16px; gap: 12px; margin: 0;
    }
    #gk-board-view .gk-page-head h1 { font-size: 32px; }
    #gk-board-view .gk-page-head .meta { text-align: left; }
    #gk-board-view .gk-board-view-body { padding: 18px 14px 80px; }
}

/* GLOW·KIKI — product swatch (CSS custom property로 dynamic 색상 받기) */
.gk-swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--gk-line);
    background: var(--gk-swatch-color, var(--gk-line));
    vertical-align: middle;
}

/* ============================================
   GLOW·KIKI — Bootstrap grid replacement (item.form 페이지 PDP 2-column)
   ============================================ */
.sit_ov_from_custom .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

@media (min-width: 992px) {
    .sit_ov_from_custom .row {
        grid-template-columns: 1.4fr 1fr;
        gap: 40px;
    }
}

#sit_layout_left,
#sit_layout_right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

#sit_layout_right {
    align-self: flex-start;
}

/* Breadcrumb 정리 (item 페이지) */
#sct_location.is_unified_breadcrumb.is_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-bottom: 1px solid var(--gk-line);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    flex-wrap: wrap;
}

#sct_location.is_unified_breadcrumb .go_home {
    color: var(--gk-ink);
    text-decoration: none;
    font-size: 12px;
}

#sct_location.is_unified_breadcrumb .dividing-line {
    color: var(--gk-line);
    font-size: 11px;
}

#sct_location.is_unified_breadcrumb .shop_hover_selectbox.category1 {
    display: none !important;
}

/* shop_select_to_html 위젯 미초기화 시 아무것도 보이지 않게 */
#sct_location.is_unified_breadcrumb .shop_select_to_html {
    display: inline-flex;
    align-items: center;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html > .menulist,
#sct_location.is_unified_breadcrumb .shop_select_to_html > ul {
    display: none;
}

#sct_location.is_unified_breadcrumb .shop_select_to_html.is-open > .menulist,
#sct_location.is_unified_breadcrumb .shop_select_to_html.is-open > ul {
    display: block;
}

#sct_location.is_unified_breadcrumb .category_title {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--gk-ink);
    border-radius: 999px;
    font-size: 11px;
    font-family: var(--gk-mono);
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    text-decoration: none;
    color: var(--gk-ink);
}

#sct_location.is_unified_breadcrumb .breadcrumb-current {
    padding: 6px 12px;
    border: 1px solid var(--gk-red);
    border-radius: 999px;
    background: rgba(230, 57, 70, .06);
    color: var(--gk-red);
    font-weight: 500;
    font-size: 11px;
}

/* 제품 탭 (제품상세/상품정보/사용자정보) */
.area_tab.type02.fix_tab {
    border-bottom: 1px solid var(--gk-line);
    padding: 0 28px;
    background: var(--gk-bg);
}

.area_tab.type02.fix_tab .inner ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.area_tab.type02.fix_tab .inner ul li {
    list-style: none;
    flex-shrink: 0;
}

.area_tab.type02.fix_tab .inner ul li a {
    display: inline-block;
    padding: 18px 24px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.area_tab.type02.fix_tab .inner ul li a.active,
.area_tab.type02.fix_tab .inner ul li a:hover {
    color: var(--gk-ink);
    border-bottom-color: var(--gk-red);
}

/* 제품 이미지 placeholder (이미지 없을 때) */
.sit_ov_from_custom .product-image-wrap,
.sit_ov_from_custom #sit_pvi {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gk-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sit_ov_from_custom .product-image-wrap img,
.sit_ov_from_custom #sit_pvi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 제품 정보 우측 패널 padding */
#sit_layout_right > * {
    margin-bottom: 16px;
}

/* CTA 버튼 영역 (장바구니/구매하기) — 모바일 분리 */
#sit_btm_btn,
.sit_btm_btn,
.sit_btn_wrap {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 8px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .sit_ov_from_custom #sit_layout_left { padding-right: 0 !important; }
    .sit_ov_from_custom #sit_layout_right { padding-top: 24px; }
    .area_tab.type02.fix_tab { padding: 0 18px; }
    .area_tab.type02.fix_tab .inner ul { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .area_tab.type02.fix_tab .inner ul li a { padding: 14px 16px; font-size: 11px; white-space: nowrap; }
    #sct_location.is_unified_breadcrumb { padding: 12px 16px; gap: 6px; font-size: 10px; }
}

@media (max-width: 640px) {
    #sct_location.is_unified_breadcrumb .breadcrumb-current { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ============================================
   GLOW·KIKI — Account / mypage / modal / point / coupon (visible blocker 9~11)
   ============================================ */

/* --- mypage dashboard --- */
.mypage-wrap, #mypage-wrap, .mb_wrap, #mypage_dash {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 28px 80px;
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-sans);
}

.mypage-wrap .gk-page-head,
.mb_wrap .gk-page-head { padding: 24px 0 32px; border: 0; }

/* override mypage Bootstrap card / shadow tone */
.mypage-wrap .card,
.mypage-wrap .rounded,
.mb_wrap .card,
.mb_wrap .rounded,
#mypage_dash .card {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--gk-bg) !important;
    border: 1px solid var(--gk-line) !important;
}

.mypage-wrap .shadow,
.mypage-wrap .shadow-sm,
.mypage-wrap .shadow-lg,
.mb_wrap .shadow {
    box-shadow: none !important;
}

/* mypage list item */
.mypage-wrap .list-group-item,
.mb_wrap .list-group-item {
    border-radius: 0 !important;
    border-color: var(--gk-line) !important;
    background: var(--gk-bg) !important;
    padding: 14px 18px;
    font-size: 14px;
}

.mypage-wrap .btn,
.mb_wrap .btn,
#mypage_dash .btn {
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 18px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    color: var(--gk-ink);
}

.mypage-wrap .btn-primary,
.mb_wrap .btn-primary {
    background: var(--gk-ink) !important;
    color: #fff !important;
    border-color: var(--gk-ink) !important;
}

.mypage-wrap .btn-danger,
.mb_wrap .btn-danger {
    background: var(--gk-red) !important;
    color: #fff !important;
    border-color: var(--gk-red) !important;
}

/* --- Account modal (coupon/new_win/popup) --- */
#coupon, #point_w, #scrap_popin,
.new_win, .popup, .modal-content,
.gk-account-modal {
    background: var(--gk-bg) !important;
    border: 1px solid var(--gk-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--gk-sans);
    color: var(--gk-ink);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

#win_title, .new_win_con > h1, .modal-title, .popup_title,
.gk-account-modal-head h1, .gk-account-modal-head h2 {
    font-family: var(--gk-sans);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1;
    padding: 28px 28px 16px;
    margin: 0;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg) !important;
    color: var(--gk-ink);
}

.btn_close, .new_win_close, .modal-close,
.gk-account-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: 1px solid var(--gk-ink);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0;
    color: var(--gk-ink);
    text-decoration: none;
}

#coupon table, #point_w table, .new_win table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

#coupon table th, #point_w table th, .new_win table th {
    background: rgba(10,10,10,.04);
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--gk-line);
}

#coupon table td, #point_w table td, .new_win table td {
    padding: 14px;
    border-bottom: 1px solid var(--gk-line);
    font-size: 13px;
    color: var(--gk-ink);
}

/* --- Point ledger / mypage point list (gk-point-ledger) --- */
.gk-point-ledger,
#point_w .point_box,
.point_w_box {
    padding: 24px 28px;
}

.gk-point-ledger .total,
#point_w .point_total,
.point_total {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gk-muted);
    margin-bottom: 6px;
}

.gk-point-ledger .total b,
#point_w .point_total b,
.point_total b {
    display: block;
    margin-top: 6px;
    font-family: var(--gk-sans);
    font-weight: 900;
    font-size: 32px;
    color: var(--gk-ink);
    letter-spacing: 0;
}

/* --- Wishlist tone reset --- */
.wishlist-wrap, #wishlist {
    background: var(--gk-bg);
    color: var(--gk-ink);
    padding: 32px 28px 80px;
    font-family: var(--gk-sans);
}

.wishlist-wrap .card, .wishlist-wrap .rounded {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid var(--gk-line);
}

/* --- FAQ / QA / product_inquiry / 고객센터 공용 톤 --- */
#faq_w, #qa_l, #qalist_l, #bo_list, #ctt {
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-sans);
}

#faq_w .faq_lst,
.faq_lst {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--gk-line);
}

#faq_w .faq_lst li,
.faq_lst li {
    border-bottom: 1px solid var(--gk-line);
    padding: 0;
}

#faq_w .faq_lst h4,
.faq_lst h4 {
    margin: 0;
    padding: 18px 28px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    cursor: pointer;
    color: var(--gk-ink);
}

#faq_w .con_inner,
.faq_lst .con_inner {
    padding: 0 28px 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gk-ink-2);
}

/* QA list */
#qa_l, #qalist_l {
    padding: 32px 28px;
}

#qa_l .qa_subject, #qa_l h4,
#qalist_l .qa_subject, #qalist_l h4 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0;
}

/* product_inquiry table */
#bo_list .tbl_head01 table,
#bo_list table {
    width: 100%;
    border-collapse: collapse;
}

#bo_list .tbl_head01 thead th {
    background: rgba(10,10,10,.04);
    border-bottom: 1px solid var(--gk-line);
    padding: 12px 14px;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gk-muted);
}

#bo_list .tbl_head01 tbody td {
    padding: 14px;
    border-bottom: 1px solid var(--gk-line);
    font-size: 14px;
}

@media (max-width: 767px) {
    .mypage-wrap, #mypage_dash, .mb_wrap { padding: 18px 14px 80px; }
    #coupon, #point_w, .new_win { padding-bottom: 80px; }
    #win_title, .new_win_con > h1, .gk-account-modal-head h1 { padding: 18px 16px 12px; font-size: 22px; }
    .btn_close, .new_win_close, .gk-account-modal-close { top: 12px; right: 12px; }
    #coupon table, #point_w table, .new_win table { font-size: 12px; }
    #coupon table th, #coupon table td, #point_w table th, #point_w table td { padding: 10px 8px; }
    #qa_l, #qalist_l { padding: 18px 14px; }
    .gk-point-ledger { padding: 18px 14px; }
    /* product_inquiry / bo_list table → card on mobile */
    #bo_list .tbl_head01 thead { display: none; }
    #bo_list .tbl_head01 tbody tr { display: block; padding: 14px 16px; border-bottom: 1px solid var(--gk-line); }
    #bo_list .tbl_head01 tbody td { display: block; padding: 4px 0; border: 0; }
}

/* ============================================
   GLOW·KIKI — Account modals (memo / scrap / coupon / point / member_confirm)
   couponzone shop list, gk-account-popup tokens
   ============================================ */

/* common popup wrapper used by /bbs/memo.php, /bbs/scrap.php, /bbs/point.php, /shop/coupon.php */
body.popup,
body.new_win,
body.is-popup,
.gk-account-popup-body {
    background: var(--gk-bg) !important;
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    margin: 0;
    padding: 0;
}

#memo, #memo_form, #memo_view,
#scrap, #scrap_popin,
.gk-account-popup {
    background: var(--gk-bg) !important;
    border: 1px solid var(--gk-line);
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    color: var(--gk-ink);
    font-family: var(--gk-sans);
}

#memo h1, #memo_form h1, #memo_view h1,
#scrap h1, #scrap_popin h1 {
    font-family: var(--gk-sans);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1;
    padding: 24px 28px 14px;
    margin: 0;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
    color: var(--gk-ink);
}

/* memo / scrap inner */
#memo .memo_li, #memo_view .memo_view,
#scrap .scrap_li,
.gk-popup-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#memo .memo_li li,
#scrap .scrap_li li,
.gk-popup-list li {
    border-bottom: 1px solid var(--gk-line);
    padding: 16px 28px;
    font-size: 13px;
    color: var(--gk-ink);
}

#memo a, #memo_view a, #scrap a, #scrap_popin a {
    color: var(--gk-ink);
    text-decoration: none;
}

#memo a:hover, #memo_view a:hover, #scrap a:hover { color: var(--gk-red); }

/* memo write form */
#memo_form fieldset,
#memo_form .form_01 {
    padding: 24px 28px;
    border: 0;
}

#memo_form .frm_input,
#memo_form textarea,
#scrap_popin .frm_input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    font-family: var(--gk-sans);
    font-size: 14px;
    border-radius: 0;
}

#memo_form .btn_submit,
#memo .btn_admin, #scrap .btn_admin {
    padding: 12px 18px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--gk-ink);
    color: #fff;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
}

/* member_confirm (비밀번호 재확인) — same auth grid as login */
#mb_confirm, .mb_confirm,
#mb_password, .pwd_confirm {
    max-width: 480px;
    margin: 64px auto;
    padding: 32px 28px;
    border: 1px solid var(--gk-line);
    background: var(--gk-bg);
    font-family: var(--gk-sans);
    color: var(--gk-ink);
}

#mb_confirm h2, #mb_password h2 {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0;
    margin: 0 0 16px;
    text-transform: uppercase;
}

#mb_confirm .frm_input, #mb_password .frm_input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    margin-bottom: 12px;
    border-radius: 0;
    font-size: 14px;
    font-family: var(--gk-sans);
}

#mb_confirm .btn_submit, #mb_password .btn_submit {
    width: 100%;
    padding: 14px 16px;
    background: var(--gk-ink);
    color: #fff;
    border: 1px solid var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}

/* couponzone (shop) — list of coupons */
#sct_cz, #couponzone, .gk-couponzone-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 28px 80px;
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-sans);
}

#sct_cz .sct_cz_list,
#couponzone .coupon_list,
.gk-coupon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

#sct_cz .sct_cz_list li,
#couponzone .coupon_list li,
.gk-coupon-list li {
    border: 1px solid var(--gk-ink);
    padding: 24px;
    border-radius: 0;
    background: var(--gk-bg);
    box-shadow: none;
}

#sct_cz .sct_cz_subj,
#couponzone .coupon_name,
.gk-coupon-name {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--gk-ink);
}

#sct_cz .sct_cz_btn,
#couponzone .btn_download,
.gk-coupon-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--gk-red);
    color: #fff;
    border: 1px solid var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    cursor: pointer;
}

#sct_cz .sct_cz_period,
#couponzone .coupon_period,
.gk-coupon-period {
    font-family: var(--gk-mono);
    font-size: 11px;
    color: var(--gk-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    #sct_cz .sct_cz_list,
    #couponzone .coupon_list,
    .gk-coupon-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 640px) {
    #sct_cz, #couponzone, .gk-couponzone-wrap { padding: 18px 14px 80px; }
    #sct_cz .sct_cz_list,
    #couponzone .coupon_list,
    .gk-coupon-list { grid-template-columns: 1fr; }
    #memo h1, #memo_form h1, #memo_view h1,
    #scrap h1, #scrap_popin h1 { padding: 16px 16px 10px; font-size: 20px; }
    #memo .memo_li li, #scrap .scrap_li li, .gk-popup-list li { padding: 12px 16px; }
    #mb_confirm, .mb_confirm, #mb_password, .pwd_confirm { margin: 24px 14px; padding: 24px 18px; }
}

/* ============================================
   GLOW·KIKI — Global board/support tokens
   notice/free/qa/faq/product_inquiry list/view/write/search
   ============================================ */

/* Board list table (gnuboard tbl_head01 / tbl_wrap default) */
#bo_list .tbl_head01 table,
#bo_list .tbl_wrap table,
#qa_l table,
#qalist_l table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--gk-ink);
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
}

#bo_list .tbl_head01 thead,
#qa_l table thead,
#qalist_l table thead {
    background: rgba(10,10,10,.04);
}

#bo_list .tbl_head01 thead th,
#qa_l table thead th,
#qalist_l table thead th {
    padding: 14px 12px;
    font-family: var(--gk-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gk-muted);
    border-bottom: 1px solid var(--gk-line);
    text-align: center;
    border-radius: 0;
    background: transparent;
}

#bo_list .tbl_head01 tbody tr,
#qa_l table tbody tr,
#qalist_l table tbody tr {
    border-bottom: 1px solid var(--gk-line);
}

#bo_list .tbl_head01 tbody td,
#qa_l table tbody td,
#qalist_l table tbody td {
    padding: 16px 12px;
    border: 0;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-size: 13px;
    vertical-align: middle;
}

/* number cell */
#bo_list td.num,
#bo_list td:first-child {
    font-family: var(--gk-mono);
    font-size: 11px;
    color: var(--gk-muted);
    width: 60px;
    text-align: center;
}

/* subject cell */
#bo_list td.td_subject,
#bo_list .bo_tit,
#bo_list .bo_subject,
.bo_subject_a, .bo_tit a {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--gk-ink);
    text-decoration: none;
}

#bo_list .td_subject a:hover,
.bo_subject_a:hover { color: var(--gk-red); }

/* author / name cell */
#bo_list td.td_name,
#bo_list .sv_member,
.sv_guest, .sv_member, .sv_admin {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gk-ink);
    background: none !important;
    padding: 0 !important;
    border: 0 !important;
}

/* date cell */
#bo_list td.td_date,
#bo_list td.td_datetime,
.td_date, .td_datetime {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--gk-muted);
    width: 110px;
    text-align: center;
}

/* hit/views cell */
#bo_list td.td_num,
#bo_list td.td_hit,
.td_num, .td_hit {
    font-family: var(--gk-mono);
    font-size: 11px;
    color: var(--gk-muted);
    width: 80px;
    text-align: center;
}

/* category cell */
#bo_list td.td_chk,
#bo_list .bo_cate {
    width: 40px;
    text-align: center;
}

/* board bottom buttons (글쓰기/목록/검색) */
.bo_fx,
#bo_btn_top, #bo_btn_bottom,
.bo_btn_btm,
.btn_bo_user, .btn_bo_w {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 0;
}

.btn_bo_user li,
.btn_bo_w li {
    list-style: none;
}

.btn_bo_user a,
.btn_bo_user button,
.btn_bo_w a,
.btn_bo_w button,
#btn_save, #btn_cancel, #btn_submit, #btn_delete,
.btn_b01, .btn_b02, .btn_admin, .btn_b03 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    line-height: 1;
}

.btn_bo_user a:hover,
.btn_bo_w button:hover {
    background: var(--gk-ink);
    color: #fff;
}

#btn_submit, .btn_submit, .btn-primary {
    background: var(--gk-red) !important;
    color: #fff !important;
    border-color: var(--gk-red) !important;
}

/* board view meta */
#bo_v_atc #bo_v_info,
#bo_v_info, .bo_v_meta,
.gk-board-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 28px;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gk-muted);
}

#bo_v_info b, .bo_v_meta b { color: var(--gk-ink); font-weight: 500; }

#bo_v_atc { padding: 28px; line-height: 1.7; font-size: 14px; }

/* board view bottom buttons */
.bo_v_com {
    padding: 16px 0;
    text-align: right;
}

/* Pagination */
.pg_wrap, #qa_l .pg_wrap, #qalist_l .pg_wrap {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 24px 0;
    margin-top: 16px;
    flex-wrap: wrap;
}

.pg_wrap a, .pg_wrap strong {
    display: inline-block;
    min-width: 32px;
    padding: 6px 10px;
    text-align: center;
    border: 1px solid var(--gk-line);
    background: transparent;
    color: var(--gk-ink);
    text-decoration: none;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .04em;
    border-radius: 0;
}

.pg_wrap strong {
    background: var(--gk-ink);
    color: #fff;
    border-color: var(--gk-ink);
}

.pg_wrap a:hover {
    border-color: var(--gk-ink);
}

.pg_wrap .pg_current { background: var(--gk-ink); color: #fff; border-color: var(--gk-ink); }

/* Total count label */
#bo_list_total, .bo_list_total, .total_cnt {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gk-muted);
}

#bo_list_total span, .bo_list_total span, .total_cnt b { color: var(--gk-ink); font-weight: 600; }

/* Board search form */
#bo_sch, .bo_sch_form, #bo_search {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0;
    align-items: center;
    justify-content: flex-end;
}

#bo_sch .frm_input, .bo_sch_form .frm_input, #bo_search input[type="text"] {
    padding: 10px 14px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    font-family: var(--gk-sans);
    font-size: 13px;
    border-radius: 0;
}

#bo_sch select, .bo_sch_form select {
    padding: 10px 14px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 0;
}

/* Board categories */
#bo_cate, .bo_cate {
    padding: 16px 0;
    border-bottom: 1px solid var(--gk-line);
}

#bo_cate ul, .bo_cate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#bo_cate li a, .bo_cate li a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--gk-ink);
    border-radius: 999px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gk-ink);
    text-decoration: none;
    background: transparent;
}

#bo_cate li.bo_current a, .bo_cate li.bo_current a {
    background: var(--gk-ink);
    color: #fff;
}

/* Mobile: tables → card format */
@media (max-width: 767px) {
    #bo_list .tbl_head01 thead,
    #qa_l table thead, #qalist_l table thead { display: none; }
    #bo_list .tbl_head01 tbody tr,
    #qa_l table tbody tr, #qalist_l table tbody tr {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--gk-line);
    }
    #bo_list .tbl_head01 tbody td,
    #qa_l table tbody td, #qalist_l table tbody td {
        display: block;
        padding: 4px 0;
        border: 0;
        text-align: left;
    }
    #bo_list td.num, #bo_list td.td_num, #bo_list td.td_hit,
    #bo_list td.td_date, #bo_list td.td_datetime, .td_date, .td_datetime, .td_num, .td_hit {
        display: inline-block;
        width: auto;
        margin-right: 12px;
    }
    #bo_list .tbl_head01 td.td_subject {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .bo_fx, #bo_btn_top, #bo_btn_bottom, .bo_btn_btm,
    .btn_bo_user, .btn_bo_w { padding: 12px 0; }
    #bo_v_atc { padding: 18px 14px; }
    #bo_v_info, .bo_v_meta { padding: 12px 16px; gap: 10px; }
    .pg_wrap { padding: 16px 0; }
}
/* GLOW·KIKI — couponzone.10.skin.php inline style 이전 */
.couponzone_page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 18px 56px;
    box-sizing: border-box;
}

.couponzone_hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 24px;
    padding: 34px 38px;
    border: 1px solid #d6e5db;
    border-radius: 24px;
    background:
        radial-gradient(120% 140% at 100% 0%, rgba(20, 99, 56, 0.11) 0%, rgba(20, 99, 56, 0) 52%),
        linear-gradient(180deg, #f8fcf9 0%, #edf5ef 100%);
    box-shadow: 0 14px 30px rgba(18, 57, 36, 0.08);
}

.couponzone_hero:before,
.couponzone_hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(14, 87, 49, 0.08);
    pointer-events: none;
}

.couponzone_hero:before {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -120px;
}

.couponzone_hero:after {
    width: 140px;
    height: 140px;
    right: 180px;
    bottom: -72px;
}

.couponzone_hero .couponzone_eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #18653e;
}

.couponzone_hero h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    border: 0;
    padding: 0;
    background: transparent;
    color: #112319;
    font-size: 34px;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.couponzone_hero .couponzone_hero_desc {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    max-width: 600px;
    color: #496254;
    font-size: 14px;
    line-height: 1.7;
}

.couponzone_hero .couponzone_hero_link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    margin-top: 20px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid #0f7240;
    background: #0f7240;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.couponzone_hero .couponzone_hero_link:hover {
    background: #0b5f34;
    border-color: #0b5f34;
    color: #fff;
    transform: translateY(-1px);
}

.couponzone_section {
    margin: 0 0 24px;
    padding: 24px;
    border: 1px solid #e0e8e3;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 47, 31, 0.06);
}

.couponzone_list h2 {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #18281f;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.couponzone_list p {
    position: static;
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #5a6e62;
    font-size: 14px;
    line-height: 1.65;
}

.couponzone_list ul {
    margin: 18px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.couponzone_list ul li {
    width: auto;
    margin: 0;
    float: none;
    background: transparent;
}

.couponzone_list ul li .cp_inner {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe8e2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(13, 42, 28, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.couponzone_list ul li .cp_inner:hover {
    transform: translateY(-3px);
    border-color: #b8d0c0;
    box-shadow: 0 14px 28px rgba(13, 42, 28, 0.10);
}

.couponzone_list ul li .cp_inner:before,
.couponzone_list ul li .cp_inner:after {
    content: "";
    position: absolute;
    top: 156px;
    width: 18px;
    height: 18px;
    border: 1px solid #d9e4dd;
    border-radius: 50%;
    background: #f8faf8;
}

.couponzone_list ul li .cp_inner:before { left: -10px; }
.couponzone_list ul li .cp_inner:after { right: -10px; }

.couponzone_list ul li .coupon_img {
    position: relative;
    height: 176px;
    overflow: hidden;
    border-bottom: 1px dashed #cfded4;
    background: linear-gradient(160deg, #f6faf7 0%, #edf4ef 100%);
}

.couponzone_list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(70%);
}

.couponzone_list ul li .coupon_tit {
    position: absolute;
    inset: 0;
    height: 100%;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    white-space: normal;
}

.couponzone_list ul li .coupon_tit strong {
    display: block;
    width: 100%;
    color: #1a2b22;
    font-size: 17px;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
}

.couponzone_list ul li .coupon_tit .cp_evt,
.couponzone_list ul li .coupon_tit .cp_evt b {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #0e6b3c;
}

.couponzone_list ul li .cp_cnt {
    padding: 14px 14px 12px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.couponzone_list ul li .coupon_target {
    margin: 0;
    max-width: 64%;
}

.couponzone_list ul li .coupon_target > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    padding: 7px 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.couponzone_list ul li .coupon_target .cp_1 { background: #edf7f1; color: #1e6f45; border-color: #d2e7db; }
.couponzone_list ul li .coupon_target .cp_2 { background: #f8f3ea; color: #7b5d2f; border-color: #e9dcc6; }
.couponzone_list ul li .coupon_target .cp_3 { background: #edf4ef; color: #255f3c; border-color: #d6e3d9; }
.couponzone_list ul li .coupon_target .cp_4 { background: #eaf4ee; color: #226642; border-color: #d0e3d6; }

.couponzone_list ul li .coupon_date {
    float: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #6a7f72;
    white-space: nowrap;
}

.couponzone_list ul li .coupon_info {
    display: none;
    position: absolute;
    top: 36px;
    right: 0;
    min-width: 250px;
    border: 1px solid #c5d9cc;
    border-radius: 12px;
    background: #fff;
    padding: 14px;
    z-index: 16;
    box-shadow: 0 18px 30px rgba(10, 39, 24, 0.14);
}

.couponzone_list ul li .coupon_info h4 {
    margin: 0 0 8px;
    color: #1a2a21;
    font-size: 15px;
}

.couponzone_list ul li .coupon_info ul {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    display: block;
}

.couponzone_list ul li .coupon_info li {
    width: auto;
    margin: 0;
    float: none;
    font-size: 13px;
    color: #4b5e53;
    line-height: 1.55;
}

.couponzone_list ul li .coupon_info li a {
    text-decoration: underline;
    color: #0d6a3b;
}

.couponzone_list ul li .coupon_info .coupon_info_cls {
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 4px;
    border: 0;
    background: transparent;
    color: #7f9286;
    font-size: 14px;
}

.couponzone_list ul li .coupon_btn {
    margin-top: 10px;
    text-align: center;
}

.couponzone_list ul li .coupon_btn .btn02 {
    width: 100%;
    height: 44px;
    line-height: 30px;
    margin-top: 0;
    border: 1px solid #0f7240;
    border-radius: 12px;
    background: #0f7240;
    color: #fff;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease;
}

.couponzone_list ul li .coupon_btn .btn02:hover {
    background: #0b5f34;
    border-color: #0b5f34;
    color: #fff;
}

.couponzone_list ul li .coupon_btn .disabled,
.couponzone_list ul li .coupon_btn .disabled:hover {
    border-color: #bfc8c1;
    background: #bfc8c1;
    color: #fff;
}

#point_coupon .coupon_btn {
    margin-top: 0;
    margin-left: auto;
    min-width: 150px;
}

#point_coupon .coupon_btn .btn02 {
    height: 38px;
    line-height: 24px;
    border-radius: 10px;
    font-size: 12px;
}

.couponzone_list .no_coupon {
    position: static;
    margin-top: 16px;
    padding: 48px 20px;
    border: 1px dashed #c5d7cb;
    border-radius: 14px;
    background: #f8fbf9;
    color: #6d8175;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 1180px) {
    .couponzone_list ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .couponzone_page {
        padding: 10px 12px 40px;
    }

    .couponzone_hero {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .couponzone_hero h2 {
        font-size: 29px;
    }

    .couponzone_section {
        padding: 18px;
    }

    .couponzone_list h2 {
        font-size: 23px;
    }
}

@media (max-width: 680px) {
    .couponzone_page {
        padding: 8px 10px 32px;
    }

    .couponzone_hero {
        padding: 22px 16px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .couponzone_hero h2 {
        font-size: 24px;
    }

    .couponzone_hero .couponzone_hero_desc {
        font-size: 13px;
    }

    .couponzone_section {
        margin-bottom: 16px;
        padding: 14px;
        border-radius: 14px;
    }

    .couponzone_list h2 {
        font-size: 20px;
    }

    .couponzone_list p {
        font-size: 13px;
    }

    .couponzone_list ul {
        margin-top: 14px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px;
    }

    .couponzone_list ul li .coupon_img {
        height: 162px;
    }

    .couponzone_list ul li .cp_inner:before,
    .couponzone_list ul li .cp_inner:after {
        top: 142px;
    }

    #point_coupon .coupon_btn {
        min-width: 136px;
    }
}

/* ============================================
   GLOW·KIKI — Search overlay close button + content (URGENT mobile blocker)
   ============================================ */

/* Drawer/search panel: ensure close button is visible & 44x44 + above everything */
#gkSearchPanel,
#gkMenuPanel,
.gk-drawer,
.gk-search-panel {
    z-index: 9999 !important;
}

#gkSearchPanel .gk-drawer-close,
#gkMenuPanel .gk-drawer-close,
.gk-drawer .gk-drawer-close,
.gk-search-panel .gk-drawer-close,
.gk-account-modal-close,
.gk-overlay-close {
    position: relative;
    z-index: 10000;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--gk-ink);
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
}

#gkSearchPanel .gk-drawer-close:hover,
#gkMenuPanel .gk-drawer-close:hover {
    background: var(--gk-ink);
    color: #fff;
}

/* Menu overlay close must match the dark full-menu artboard: no white square. */
#gkMenuPanel .gk-drawer-head {
    position: relative;
    padding-right: 66px;
}

#gkMenuPanel .gk-drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0;
}

#gkMenuPanel .gk-drawer-close::before,
#gkMenuPanel .gk-drawer-close::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    height: 2px;
    background: currentColor;
    transform-origin: center;
}

#gkMenuPanel .gk-drawer-close::before {
    transform: translateY(-50%) rotate(45deg);
}

#gkMenuPanel .gk-drawer-close::after {
    transform: translateY(-50%) rotate(-45deg);
}

#gkMenuPanel .gk-drawer-close:hover,
#gkMenuPanel .gk-drawer-close:focus-visible {
    background: transparent;
    color: var(--gk-red);
    outline: 0;
}

/* Search panel content: RECENT / TRENDING / RECOMMENDED sections */
#gkSearchPanel .gk-search-panel-inner {
    max-width: 100%;
    padding: 24px 28px;
    overflow-y: auto;
}

#gkSearchPanel .gk-search-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

#gkSearchPanel .gk-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--gk-ink);
    padding-bottom: 12px;
}

#gkSearchPanel .gk-search-form input[type="text"] {
    border: 0;
    background: transparent;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 8px 0;
    font-family: var(--gk-sans);
    color: var(--gk-ink);
}

#gkSearchPanel .gk-search-form input[type="text"]::placeholder {
    color: rgba(10, 10, 10, .2);
}

#gkSearchPanel .gk-btn-primary {
    background: var(--gk-red);
    color: #fff;
    border: 1px solid var(--gk-red);
    padding: 14px 22px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}

/* RECENT chips section */
#gkSearchPanel .gk-search-section,
.gk-search-section {
    margin: 0 0 28px;
}

#gkSearchPanel .gk-search-section-title,
.gk-search-section-title {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gk-red);
    margin: 0 0 14px;
}

#gkSearchPanel .gk-search-section-title.is-split,
.gk-search-section-title.is-split {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

#gkSearchPanel .gk-search-section-meta,
.gk-search-section-meta {
    font-family: var(--gk-mono);
    font-size: 9px;
    color: var(--gk-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gk-svg-sprite {
    display: none;
}

.gk-hidden-text,
.gk-is-hidden {
    display: none !important;
}

#gkSearchPanel .gk-search-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
}

#gkSearchPanel .gk-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--gk-ink);
    border-radius: 999px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gk-ink);
    background: transparent;
}

#gkSearchPanel .gk-chip:hover {
    background: rgba(0,0,0,.04);
}

/* TRENDING ranking list */
.gk-trending-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.gk-trending-list li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gk-line);
}

.gk-trending-list li:last-child { border-bottom: 0; }

.gk-trending-list .rank {
    font-family: var(--gk-mono);
    font-size: 12px;
    color: var(--gk-red);
    font-weight: 700;
}

.gk-trending-list .word {
    color: var(--gk-ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.gk-trending-list .delta {
    font-family: var(--gk-mono);
    font-size: 10px;
    color: var(--gk-muted);
    letter-spacing: .04em;
}

.gk-trending-list .delta.up { color: var(--gk-red); }
.gk-trending-list .delta.down { color: #888; }

/* Mobile: full-screen + safe-area + close pinned top-right */
@media (max-width: 767px) {
    #gkSearchPanel,
    #gkMenuPanel,
    .gk-search-panel,
    .gk-drawer {
        position: fixed !important;
        inset: 0;
        max-width: 100vw;
        max-height: 100vh;
        background: var(--gk-bg);
    }

    #gkSearchPanel .gk-search-panel-inner {
        padding: 18px 16px max(80px, env(safe-area-inset-bottom));
        height: 100vh;
        overflow-y: auto;
    }

    #gkSearchPanel .gk-search-head {
        position: sticky;
        top: 0;
        background: var(--gk-bg);
        padding: 12px 0;
        z-index: 10;
        border-bottom: 1px solid var(--gk-line);
        margin: -18px -16px 18px;
        padding: 14px 16px;
    }

    #gkSearchPanel .gk-search-form input[type="text"] {
        font-size: 22px;
    }

    .gk-trending-list li {
        padding: 10px 0;
    }
}

/* search.php (full page) — close/cancel button on mobile */
@media (max-width: 767px) {
    #gk-search .gk-search-top {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--gk-bg);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--gk-line);
    }

    /* gatekeeper: legacy pseudo ✕ 제거. 실제 cancel 은 .m-search-bar .cancel 사용 */
    #gk-search .gk-search-top::after { content: none; }
}

/* GLOW·KIKI — Mobile search page sample layout (m-search-bar / m-search-section) */
.gk-mobile-only { display: none; }

@media (max-width: 767px) {
    .gk-mobile-only { display: block; }
    .gk-mobile-desktop-only { display: none !important; }

    .m-search-bar {
        display: flex; align-items: center; gap: 10px;
        padding: 12px 16px;
        border-bottom: 1px solid var(--gk-line);
        background: var(--gk-bg);
        position: sticky; top: 0; z-index: 200;
    }
    .m-search-bar .input-wrap {
        flex: 1; position: relative;
        background: var(--gk-cream);
        padding: 0;
        border: 1px solid var(--gk-line);
    }
    .m-search-bar .input-wrap::before {
        content: "⌕"; position: absolute;
        left: 12px; top: 50%; transform: translateY(-50%);
        font-size: 14px; color: var(--gk-muted);
        pointer-events: none;
    }
    .m-search-bar .input-wrap form { margin: 0; }
    .m-search-bar .input-wrap input {
        border: none; background: none; outline: none;
        width: 100%; font-family: var(--gk-sans); font-size: 13px;
        padding: 10px 14px 10px 36px;
        color: var(--gk-ink);
    }
    .m-search-bar .cancel {
        font-family: var(--gk-mono); font-size: 11px;
        text-transform: uppercase; letter-spacing: .08em;
        color: var(--gk-ink); text-decoration: none;
        min-width: 44px; min-height: 44px;
        display: inline-flex; align-items: center; justify-content: center;
    }

    .m-search-section { padding: 22px 16px; border-bottom: 1px solid var(--gk-line); }
    .m-search-head {
        display: flex; justify-content: space-between; align-items: baseline;
        margin-bottom: 14px;
    }
    .m-search-head h3 {
        font-family: var(--gk-mono); font-size: 10px;
        color: var(--gk-red); text-transform: uppercase; letter-spacing: .12em;
        margin: 0; font-weight: 500;
    }
    .m-search-head h3 b { color: var(--gk-ink); margin-right: 6px; }
    .m-search-head .clear {
        font-family: var(--gk-mono); font-size: 9px; color: var(--gk-muted);
        text-transform: uppercase; letter-spacing: .06em;
        text-decoration: none;
    }

    .m-search-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .m-search-tag {
        border: 1px solid var(--gk-line);
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 99px;
        text-decoration: none;
        color: var(--gk-ink);
        background: transparent;
        font-family: var(--gk-sans);
    }
    .m-search-tag.hot {
        background: var(--gk-red); color: #fff;
        border-color: var(--gk-red);
    }
    .m-search-tag .rank {
        color: var(--gk-red); font-family: var(--gk-mono);
        font-weight: 700; margin-right: 6px; font-size: 10px;
    }
    .m-search-tag.hot .rank { color: #fff; }
    .m-search-empty {
        font-family: var(--gk-mono); font-size: 10px;
        color: var(--gk-muted); text-transform: uppercase; letter-spacing: .06em;
    }

    .m-search-trend {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
    }
    .m-search-trend-row {
        display: flex; align-items: center; gap: 8px;
        font-size: 12px; padding: 4px 0;
        text-decoration: none; color: var(--gk-ink);
    }
    .m-search-trend-row .rk {
        font-family: var(--gk-sans); font-weight: 900;
        font-size: 14px; color: var(--gk-red); width: 16px;
    }
    .m-search-trend-row .arrow {
        font-family: var(--gk-mono); font-size: 9px;
        color: var(--gk-muted); margin-left: auto;
    }
    .m-search-trend-row .arrow.up { color: var(--gk-red); }
    .m-search-trend-row .arrow.down { color: #888; }

    /* On mobile hide desktop top search section */
    #gk-search > .gk-search-top { display: none; }
    /* Push results below mobile sections */
    #gk-search .gk-search-body { padding-top: 0; }
    /* Hide sidebar on mobile (already in original CSS but reinforce) */
    #gk-search .gk-sidebar { display: none; }
}

/* Desktop: hide mobile-only sections */
@media (min-width: 768px) {
    .m-search-bar, .m-search-section { display: none; }
}

/* GLOW·KIKI — Mobile search: discovery sections fill first viewport, results push below tabbar */
@media (max-width: 767px) {
    /* Add spacer between RECOMMENDED and results so first viewport stops at discovery */
    #gk-search .m-search-section:last-of-type {
        padding-bottom: 28px;
    }
    /* Visual separator before results section on mobile */
    #gk-search .gk-search-body {
        padding-top: 24px;
        border-top: 8px solid rgba(10,10,10,.04);
        margin-top: 16px;
    }
    /* RESULTS FOR area gets clear visual gap from discovery */
    #gk-search .gk-results-head {
        margin-top: 8px;
    }
    /* Bottom padding ensures content not hidden by mobile tabbar (64px height) */
    #gk-search .gk-grid-wrap,
    #gk-search { padding-bottom: 80px; }

    /* Header search overlay form input/button spacing on mobile */
    #gkSearchPanel .gk-search-form {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 16px;
    }
    #gkSearchPanel .gk-search-form input[type="text"] {
        font-size: 22px;
        width: 100%;
    }
    #gkSearchPanel .gk-btn-primary {
        width: 100%;
        padding: 14px 18px;
        font-size: 12px;
    }
    /* Overlay sections compact on mobile */
    #gkSearchPanel .gk-search-section { margin-bottom: 22px; }
    #gkSearchPanel .gk-search-keywords { gap: 6px; }
    #gkSearchPanel .gk-trending-list li {
        grid-template-columns: 28px 1fr auto;
        gap: 8px;
        padding: 8px 0;
    }
}

/* GLOW·KIKI — Mobile search discovery wrapper: fill first viewport */
@media (max-width: 767px) {
    .m-search-discovery {
        min-height: calc(100vh - 64px); /* 64px = bottom tabbar */
        display: flex;
        flex-direction: column;
        background: var(--gk-bg);
    }
    .m-search-discovery .m-search-section:last-of-type {
        flex: 1;
    }
    /* desktop search.html layout 보호: discovery wrapper 비활성 */
}
@media (min-width: 768px) {
    .m-search-discovery { display: contents; }
}

/* GLOW·KIKI — m-search-tag close icon: pure CSS X via gradient (a11y invisible) */
.m-search-tag.has-clear::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    background:
      linear-gradient(45deg, transparent 45%, var(--gk-muted) 45%, var(--gk-muted) 55%, transparent 55%),
      linear-gradient(-45deg, transparent 45%, var(--gk-muted) 45%, var(--gk-muted) 55%, transparent 55%);
    vertical-align: middle;
}

/* GLOW·KIKI — final guard: no pseudo close on search top (a11y safe) */
#gk-search .gk-search-top::after,
#gk-search .gk-search-top::before { content: none !important; display: none !important; }

/* GLOW·KIKI — faq page wrap */
#gk-faq.gk-faq-wrap {
    background: var(--gk-bg);
    color: var(--gk-ink);
    width: 100%; max-width: 100%;
}
#gk-faq,
#gk-faq *,
#gk-faq *::before,
#gk-faq *::after {
    box-sizing: border-box;
}
#gk-faq .gk-breadcrumb {
    padding: 14px 28px; border-bottom: 1px solid var(--gk-line);
    display: flex; gap: 8px;
    font-family: var(--gk-mono); font-size: 10px;
    text-transform: uppercase; color: var(--gk-muted);
}
#gk-faq .gk-breadcrumb a { color: inherit; text-decoration: none; }
#gk-faq .gk-breadcrumb b { color: var(--gk-ink); font-weight: 500; }
#gk-faq .gk-page-head {
    padding: 48px 28px; border-bottom: 1px solid var(--gk-line);
}
#gk-faq .gk-page-head .eyebrow {
    font-family: var(--gk-mono); font-size: 11px; color: var(--gk-red);
    text-transform: uppercase; margin-bottom: 14px;
}
#gk-faq .gk-page-head h1 {
    font-weight: 900; font-size: 56px; line-height: .92;
    text-transform: uppercase; margin: 0;
}
#gk-faq .gk-page-head p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--gk-muted);
    font-size: 14px;
    line-height: 1.7;
}
#gk-faq .gk-faq-media,
#gk-faq .gk-faq-html,
#gk-faq .gk-faq-tools,
#gk-faq .gk-faq-list,
#gk-faq .gk-faq-paging,
#gk-faq .gk-admin-link {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}
#gk-faq .gk-faq-media {
    padding-top: 28px;
}
#gk-faq .gk-faq-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
#gk-faq .gk-faq-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--gk-line);
}
#gk-faq .gk-faq-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border: 1px solid var(--gk-ink);
    background: #fff;
}
#gk-faq .gk-faq-search input {
    min-width: 0;
    height: 52px;
    border: 0;
    background: transparent;
    padding: 0 16px;
    color: var(--gk-ink);
    font-size: 14px;
}
#gk-faq .gk-faq-search button {
    min-width: 128px;
    border: 0;
    border-left: 1px solid var(--gk-ink);
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
}
#gk-faq .gk-faq-cates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}
#gk-faq .gk-faq-cates a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--gk-line);
    border-radius: 999px;
    color: var(--gk-ink);
    text-decoration: none;
    font-size: 12px;
}
#gk-faq .gk-faq-cates a.is-active {
    background: var(--gk-red);
    border-color: var(--gk-red);
    color: #fff;
}
#gk-faq .gk-faq-list {
    padding-top: 42px;
    padding-bottom: 70px;
}
#gk-faq .gk-section-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--gk-red);
}
#gk-faq .gk-section-label b {
    color: var(--gk-ink);
}
#gk-faq .gk-faq-list ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
#gk-faq .gk-faq-list li {
    border-bottom: 1px solid var(--gk-line);
}
#gk-faq .gk-faq-list details {
    width: 100%;
}
#gk-faq .gk-faq-list summary {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    gap: 16px;
    align-items: center;
    min-height: 76px;
    cursor: pointer;
    list-style: none;
}
#gk-faq .gk-faq-list summary::-webkit-details-marker {
    display: none;
}
#gk-faq .gk-faq-list .num {
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-weight: 700;
}
#gk-faq .gk-faq-list summary strong {
    min-width: 0;
    color: var(--gk-ink);
    font-size: 19px;
    line-height: 1.45;
}
#gk-faq .gk-faq-list summary i {
    font-style: normal;
    font-family: var(--gk-mono);
    color: var(--gk-muted);
    text-align: right;
}
#gk-faq .gk-faq-list details[open] summary i {
    color: var(--gk-red);
    transform: rotate(45deg);
}
#gk-faq .gk-faq-list .answer {
    padding: 0 24px 30px 70px;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}
#gk-faq .gk-empty {
    padding: 54px 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    text-transform: uppercase;
    letter-spacing: .08em;
}
#gk-faq .gk-empty strong {
    display: block;
    color: var(--gk-ink);
    font-size: 22px;
    margin-bottom: 10px;
}
#gk-faq .gk-empty p {
    margin: 0;
    font-size: 11px;
}
#gk-faq .gk-admin-link {
    padding-bottom: 48px;
}
#gk-faq .gk-admin-link a {
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
}

/* GLOW·KIKI — member popup pages (point / coupon / memo / scrap) */
.gk-popup-page {
    box-sizing: border-box;
    width: 100%;
    max-width: 760px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 34px 24px 44px;
    background: var(--gk-bg);
    color: var(--gk-ink);
}
.gk-popup-page *,
.gk-popup-page *::before,
.gk-popup-page *::after {
    box-sizing: border-box;
}
.gk-popup-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gk-ink);
}
.gk-popup-head p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 12px;
    letter-spacing: .14em;
}
.gk-popup-head h1 {
    min-width: 0;
    margin: 0;
    font-size: 44px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}
.gk-popup-close,
.gk-popup-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    background: transparent;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-decoration: none;
}
.gk-popup-summary {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gk-line);
}
.gk-popup-summary span,
.gk-popup-list-head span,
.gk-popup-totals span,
.gk-popup-note {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.gk-popup-summary strong {
    color: var(--gk-red);
    font-size: 42px;
    line-height: 1;
}
.gk-popup-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 22px 0 4px;
}
.gk-popup-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--gk-line);
    border-radius: 999px;
    color: var(--gk-ink);
    text-decoration: none;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
}
.gk-popup-tabs a.is-active {
    background: var(--gk-red);
    border-color: var(--gk-red);
    color: #fff;
}
.gk-popup-list {
    padding-top: 28px;
}
.gk-popup-list-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gk-ink);
}
.gk-popup-list-head b {
    font-family: var(--gk-mono);
    font-size: 12px;
}
.gk-popup-list ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
.gk-popup-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 72px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gk-line);
}
.gk-popup-list li strong {
    display: block;
    min-width: 0;
    color: var(--gk-ink);
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.gk-popup-list li strong a,
.gk-popup-list li div > a {
    color: inherit;
    text-decoration: none;
}
.gk-popup-list li span,
.gk-popup-list li div > a {
    display: block;
    margin-top: 5px;
    color: var(--gk-muted);
    font-size: 12px;
    line-height: 1.45;
}
.gk-popup-list li b {
    font-family: var(--gk-mono);
    white-space: nowrap;
}
.gk-popup-list .plus,
.gk-popup-totals .plus {
    color: var(--gk-red);
}
.gk-popup-list .minus,
.gk-popup-totals .minus {
    color: var(--gk-muted);
}
.gk-popup-empty {
    padding: 46px 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.gk-popup-totals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    border: 1px solid var(--gk-line);
}
.gk-popup-totals div {
    padding: 18px;
}
.gk-popup-totals div + div {
    border-left: 1px solid var(--gk-line);
}
.gk-popup-totals b {
    display: block;
    margin-top: 8px;
    font-size: 22px;
}
.gk-popup-paging,
.gk-popup-page .pg_wrap,
.gk-popup-page .pg {
    margin-top: 24px;
}
.gk-popup-note {
    margin: 26px 0 0;
}
body:has(.gk-popup-page) {
    background: var(--gk-bg);
}

/* GLOW·KIKI — coupon zone */
#gk-couponzone {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    background: var(--gk-bg);
    color: var(--gk-ink);
}
#gk-couponzone *,
#gk-couponzone *::before,
#gk-couponzone *::after {
    box-sizing: border-box;
}
.gk-couponzone-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    padding: 64px 28px 44px;
    border-bottom: 1px solid var(--gk-ink);
}
.gk-couponzone-hero p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .15em;
}
.gk-couponzone-hero h1 {
    margin: 0;
    font-size: 82px;
    line-height: .85;
    font-weight: 900;
}
.gk-couponzone-hero h1 em {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}
.gk-couponzone-hero a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    text-decoration: none;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .12em;
}
.gk-coupon-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 28px;
}
.gk-coupon-section + .gk-coupon-section {
    border-top: 1px solid var(--gk-line);
}
.gk-coupon-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
}
.gk-coupon-section-head span {
    color: var(--gk-red);
}
.gk-coupon-section ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.gk-coupon-card {
    min-height: 260px;
    border: 1px solid var(--gk-ink);
    background: #fff;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
}
.gk-coupon-ticket-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px dashed var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gk-coupon-ticket-head b {
    color: var(--gk-red);
}
.gk-coupon-ticket-head em {
    font-style: normal;
    color: var(--gk-muted);
}
.gk-coupon-face {
    position: relative;
    min-height: 150px;
    padding: 22px;
    overflow: hidden;
    background: var(--gk-red);
    color: #fff;
}
.gk-coupon-face::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -38px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
}
.gk-coupon-face .eyebrow {
    display: block;
    margin-bottom: 16px;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .14em;
}
.gk-coupon-face strong {
    display: block;
    max-width: 360px;
    font-size: 26px;
    line-height: 1.05;
    font-weight: 900;
}
.gk-coupon-face b {
    position: absolute;
    right: 22px;
    bottom: 18px;
    z-index: 1;
    font-size: 42px;
    line-height: 1;
}
.gk-coupon-card.dark {
    background: var(--gk-ink);
    color: #fff;
}
.gk-coupon-card.dark .gk-coupon-ticket-head,
.gk-coupon-card.dark .gk-coupon-meta,
.gk-coupon-card.dark .gk-coupon-download {
    border-color: rgba(255,255,255,.18);
}
.gk-coupon-card.dark .gk-coupon-face {
    background: var(--gk-ink);
}
.gk-coupon-card.dark .gk-coupon-ticket-head em,
.gk-coupon-card.dark .gk-coupon-meta {
    color: rgba(255,255,255,.58);
}
.gk-coupon-card.red {
    border-color: var(--gk-red);
}
.gk-coupon-card.red .gk-coupon-ticket-head,
.gk-coupon-card.red .gk-coupon-face,
.gk-coupon-card.red .gk-coupon-download {
    background: var(--gk-red);
    color: #fff;
    border-color: rgba(255,255,255,.24);
}
.gk-coupon-card.red .gk-coupon-ticket-head b,
.gk-coupon-card.red .gk-coupon-ticket-head em {
    color: rgba(255,255,255,.8);
}
.gk-coupon-card.red .gk-coupon-face .eyebrow,
.gk-coupon-card.red .gk-coupon-face b {
    color: #fff;
}
.gk-coupon-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 18px 22px;
    border-top: 1px solid var(--gk-ink);
    color: var(--gk-muted);
    font-size: 12px;
}
.gk-coupon-download {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-top: 1px solid var(--gk-ink);
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
}
.gk-coupon-download:disabled {
    opacity: .45;
}
.gk-coupon-empty {
    padding: 42px 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    letter-spacing: .12em;
}
@media (max-width: 767px) {
    #gk-faq .gk-page-head { padding: 24px 16px; margin-left: 0 !important; margin-right: 0 !important; }
    #gk-faq .gk-page-head h1 { font-size: 32px; }
    #gk-faq .gk-breadcrumb { padding: 12px 16px; }
    #gk-faq .gk-faq-media,
    #gk-faq .gk-faq-html,
    #gk-faq .gk-faq-tools,
    #gk-faq .gk-faq-list,
    #gk-faq .gk-faq-paging,
    #gk-faq .gk-admin-link {
        padding-left: 16px;
        padding-right: 16px;
    }
    #gk-faq .gk-faq-tools {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 24px;
    }
    #gk-faq .gk-faq-search {
        grid-template-columns: 1fr;
    }
    #gk-faq .gk-faq-search button {
        min-width: 0;
        height: 48px;
        border-left: 0;
        border-top: 1px solid var(--gk-ink);
    }
    #gk-faq .gk-faq-cates {
        justify-content: flex-start;
    }
    #gk-faq .gk-faq-list {
        padding-top: 28px;
        padding-bottom: 92px;
    }
    #gk-faq .gk-faq-list summary {
        grid-template-columns: 38px minmax(0, 1fr) 20px;
        gap: 10px;
        min-height: 68px;
    }
    #gk-faq .gk-faq-list summary strong {
        font-size: 15px;
    }
    #gk-faq .gk-faq-list .answer {
        padding: 0 0 24px 48px;
        font-size: 13px;
    }
    .gk-popup-page {
        max-width: 100%;
        padding: 26px 18px 38px;
    }
    .gk-popup-head h1 {
        font-size: 34px;
    }
    .gk-popup-list li {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .gk-popup-action {
        justify-self: start;
    }
    .gk-couponzone-hero {
        grid-template-columns: 1fr;
        padding: 34px 16px 28px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .gk-couponzone-hero h1 {
        font-size: 48px;
    }
    .gk-couponzone-hero a {
        justify-self: start;
    }
    .gk-coupon-section {
        padding: 32px 16px;
    }
    .gk-coupon-section ul {
        grid-template-columns: 1fr;
    }
    .gk-coupon-card {
        min-height: 240px;
    }
    .gk-coupon-face strong {
        font-size: 22px;
    }
    .gk-coupon-face b {
        font-size: 34px;
    }
}

/* GLOW·KIKI — global override: kill legacy text-center py-13 / detail_none / page-title overflow */
.text-center.py-13,
.text-center.py-13.detail_none,
.detail_none,
.page-title {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .text-center.py-13, .text-center.py-13.detail_none, .detail_none {
        padding: 18px 16px;
    }
    .order-inquiry-table { display: block; overflow-x: auto; max-width: 100%; }
    .order-inquiry-table table { min-width: 100%; }
    .order-inquiry-table thead { display: none; }
    .order-inquiry-table tbody tr { display: block; padding: 14px 16px; border-bottom: 1px solid var(--gk-line); }
    .order-inquiry-table tbody td { display: block; padding: 4px 0; border: 0; text-align: left; font-size: 13px; }
}

/* Board view edit/delete buttons — ensure visibility */
#bo_v_act, .bo_v_act, .bo_v_btn,
#bo_v .btn_admin, #bo_v_atc + .bo_v_btn {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    padding: 16px 28px;
    border-top: 1px solid var(--gk-line);
}

#bo_v_act a, #bo_v_act button,
.bo_v_act a, .bo_v_act button,
.bo_v_btn a, .bo_v_btn button {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 16px !important;
    border: 1px solid var(--gk-ink);
    background: transparent;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    line-height: 1;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
}

/* GLOW.KIKI — board view redesign */
#gk-board-view.gk-board-view-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--gk-bg);
    color: var(--gk-ink);
}

#gk-board-view #bo_v {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#gk-board-view,
#gk-board-view * {
    box-sizing: border-box;
}

#gk-board-view .gk-article-hero {
    padding: 52px 40px 46px;
    border-bottom: 1px solid var(--gk-line);
    background: #f7f7f5;
}

#gk-board-view .gk-article-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gk-muted);
}

#gk-board-view .gk-article-crumb a,
#gk-board-view .gk-article-crumb b {
    color: var(--gk-ink);
    text-decoration: none;
}

#gk-board-view .gk-article-crumb b {
    color: var(--gk-red);
    font-weight: 600;
}

#gk-board-view .gk-article-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
    align-items: end;
}

#gk-board-view .gk-article-eyebrow {
    margin: 0 0 16px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gk-red);
}

#gk-board-view .gk-article-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: 72px;
    line-height: .95;
    font-weight: 900;
    letter-spacing: 0;
    word-break: keep-all;
}

#gk-board-view .gk-article-head-meta {
    border: 1px solid var(--gk-ink);
    background: #fff;
}

#gk-board-view .gk-article-head-meta div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gk-line);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#gk-board-view .gk-article-head-meta div:last-child {
    border-bottom: 0;
}

#gk-board-view .gk-article-head-meta span {
    color: var(--gk-muted);
}

#gk-board-view .gk-article-head-meta b {
    color: var(--gk-ink);
    font-weight: 600;
    text-align: right;
}

#gk-board-view .gk-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    padding: 52px 40px 64px;
    border-bottom: 1px solid var(--gk-line);
}

#gk-board-view #bo_v_atc.gk-article-content {
    min-height: 0 !important;
    padding: 0 !important;
    font-size: 16px;
    line-height: 1.78;
}

#gk-board-view #bo_v_con.gk-article-prose {
    max-width: 900px;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible;
    color: #222;
    font-size: 16px;
    line-height: 1.85;
    word-break: keep-all;
}

#gk-board-view #bo_v_con.gk-article-prose p {
    margin: 0 0 18px;
}

#gk-board-view #bo_v_con.gk-article-prose .lead {
    font-size: 20px;
    line-height: 1.65;
    font-weight: 600;
    color: var(--gk-ink);
}

#gk-board-view #bo_v_con.gk-article-prose ul,
#gk-board-view #bo_v_con.gk-article-prose ol {
    margin: 0 0 24px;
    padding-left: 24px;
    line-height: 1.75;
}

#gk-board-view #bo_v_con.gk-article-prose li {
    margin-bottom: 6px;
}

#gk-board-view #bo_v_con.gk-article-prose blockquote {
    margin: 30px 0;
    padding: 14px 0 14px 18px;
    border-left: 3px solid var(--gk-red);
    color: var(--gk-ink);
    font-size: 18px;
    font-style: italic;
    line-height: 1.65;
}

#gk-board-view #bo_v_con.gk-article-prose .ph {
    position: relative;
    min-height: 280px;
    margin: 30px 0;
    border: 1px solid var(--gk-line);
    background:
        repeating-linear-gradient(135deg, rgba(10,10,10,.04) 0 1px, transparent 1px 18px),
        linear-gradient(135deg, #f6eee4 0%, #efe1d0 100%);
}

#gk-board-view #bo_v_con.gk-article-prose .ph .lab {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    background: #fff;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

#gk-board-view #bo_v_con.gk-article-prose img,
#gk-board-view #bo_v_con.gk-article-prose table,
#gk-board-view #bo_v_con.gk-article-prose iframe {
    max-width: 100% !important;
}

#gk-board-view #bo_v_con.gk-article-prose h2,
#gk-board-view #bo_v_con.gk-article-prose h3 {
    margin: 34px 0 14px;
    font-weight: 900;
    letter-spacing: 0;
}

#gk-board-view .gk-article-signature {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--gk-line);
    color: var(--gk-muted);
    font-size: 13px;
}

#gk-board-view #bo_v_act.gk-article-reaction {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin: 34px 0 0;
    padding: 0 !important;
    border: 0 !important;
    text-align: left;
}

#gk-board-view #bo_v_act.gk-article-reaction a,
#gk-board-view #bo_v_act.gk-article-reaction span {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    padding: 12px 16px !important;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    color: var(--gk-ink);
    background: transparent;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

#gk-board-view .gk-article-files,
#gk-board-view .gk-article-links {
    margin-top: 34px;
    border-top: 1px solid var(--gk-line);
    padding-top: 20px;
}

#gk-board-view .gk-article-files h2,
#gk-board-view .gk-article-links h2,
#gk-board-view .gk-article-box h2 {
    margin: 0 0 14px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gk-red);
}

#gk-board-view .gk-article-files ul,
#gk-board-view .gk-article-links ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#gk-board-view .gk-article-files li,
#gk-board-view .gk-article-links li {
    margin: 0;
    border: 1px solid var(--gk-line) !important;
    background: transparent !important;
}

#gk-board-view .gk-article-files a,
#gk-board-view .gk-article-links a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    color: var(--gk-ink);
    text-decoration: none;
}

#gk-board-view .gk-article-files span,
#gk-board-view .gk-article-links span {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

#gk-board-view .gk-article-aside {
    display: grid;
    align-content: start;
    gap: 14px;
}

#gk-board-view .gk-article-box {
    border: 1px solid var(--gk-ink);
    background: #fff;
    padding: 20px;
}

#gk-board-view .gk-article-box dl {
    display: grid;
    gap: 0;
    margin: 0;
}

#gk-board-view .gk-article-box dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gk-line);
}

#gk-board-view .gk-article-box dl div:last-child {
    border-bottom: 0;
}

#gk-board-view .gk-article-box dt,
#gk-board-view .gk-article-box dd {
    margin: 0;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#gk-board-view .gk-article-box dt {
    color: var(--gk-muted);
}

#gk-board-view .gk-article-box dd {
    color: var(--gk-ink);
    font-weight: 600;
    text-align: right;
}

#gk-board-view .gk-article-box.is-dark {
    background: var(--gk-ink);
    color: #fff;
}

#gk-board-view .gk-article-box.is-dark h2 {
    color: var(--gk-red);
}

#gk-board-view .gk-post-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

#gk-board-view .gk-post-actions a {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    padding: 9px 10px !important;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-decoration: none;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
}

#gk-board-view .gk-article-box.is-red {
    background: var(--gk-red);
    border-color: var(--gk-red);
    color: #fff;
}

#gk-board-view .gk-article-box.is-red h2 {
    color: rgba(255,255,255,.8);
}

#gk-board-view .gk-article-box.is-red p {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    line-height: 1.55;
}

#gk-board-view .gk-article-box.is-red a {
    display: flex;
    justify-content: center;
    padding: 12px 14px;
    background: #fff;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-decoration: none;
}

#gk-board-view .gk-article-pn {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--gk-ink);
}

#gk-board-view .gk-article-pn a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 116px;
    padding: 26px 40px;
    border-right: 1px solid var(--gk-line);
    color: var(--gk-ink);
    text-decoration: none;
}

#gk-board-view .gk-article-pn a:last-child {
    border-right: 0;
    text-align: right;
}

#gk-board-view .gk-article-pn span {
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--gk-muted);
}

#gk-board-view .gk-article-pn b {
    font-size: 16px;
    line-height: 1.35;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    #gk-board-view .gk-article-head-grid,
    #gk-board-view .gk-article-layout {
        grid-template-columns: 1fr;
    }

    #gk-board-view .gk-article-hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 767px) {
    #gk-board-view .gk-article-hero {
        padding: 22px 16px 24px;
    }

    #gk-board-view .gk-article-crumb {
        margin-bottom: 18px;
        font-size: 9px;
    }

    #gk-board-view .gk-article-head-grid {
        gap: 22px;
    }

    #gk-board-view .gk-article-hero h1 {
        font-size: 34px;
        line-height: 1;
    }

    #gk-board-view .gk-article-head-meta div {
        padding: 11px 12px;
        font-size: 10px;
    }

    #gk-board-view .gk-article-layout {
        padding: 24px 16px 90px;
        gap: 28px;
    }

    #gk-board-view #bo_v_con.gk-article-prose {
        font-size: 14px;
        line-height: 1.78;
    }

    #gk-board-view #bo_v_con.gk-article-prose .lead {
        font-size: 16px;
    }

    #gk-board-view #bo_v_con.gk-article-prose .ph {
        min-height: 190px;
    }

    #gk-board-view .gk-post-actions {
        grid-template-columns: 1fr 1fr;
    }

    #gk-board-view .gk-article-pn {
        grid-template-columns: 1fr;
    }

    #gk-board-view .gk-article-pn a {
        min-height: 0;
        padding: 18px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--gk-line);
        text-align: left !important;
    }
}
/* GLOW·KIKI — mypage.php inline style 이전 */
.mypage-dashboard {
    background: #f5f7fb;
    padding-bottom: 40px;
}

.mypage-dashboard * {
    box-sizing: border-box;
}

.mypage-dashboard .container.container-xxl {
    max-width: 1320px;
}

.mypage-dashboard #smb_my {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
}

.mypage-dashboard #smb_my_ov {
    float: none;
    width: auto;
    margin: 0;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.mypage-dashboard .mypage-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.mypage-dashboard .mypage-overview {
    padding: 28px;
}

.mypage-dashboard .overview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.mypage-dashboard .overview-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mypage-dashboard .overview-user .my_ov_name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.mypage-dashboard .overview-user .my_ov_name img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #d1d5db;
}

.mypage-dashboard .overview-user-meta {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
}

.mypage-dashboard .overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mypage-dashboard .overview-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mypage-dashboard .overview-actions a:hover {
    border-color: #c0392b;
    color: #c0392b;
}

.mypage-dashboard .overview-actions .btn-admin {
    border-color: #d13f4a;
    background: #d13f4a;
    color: #fff;
}

.mypage-dashboard .overview-actions .btn-admin:hover {
    border-color: #b12530;
    background: #b12530;
    color: #fff;
}

.mypage-dashboard #smb_private {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mypage-dashboard #smb_private li {
    margin: 0;
}

.mypage-dashboard #smb_private a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 96px;
    padding: 16px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #eceff3;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mypage-dashboard #smb_private a:hover {
    border-color: #c0392b;
    background: #f4fbf4;
}

.mypage-dashboard #smb_private .metric-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #e9f5e9;
    color: #c0392b;
    font-size: 14px;
}

.mypage-dashboard #smb_private .metric-icon i {
    line-height: 1;
}

.mypage-dashboard #smb_private .metric-label {
    font-size: 13px;
    color: #6b7280;
}

.mypage-dashboard #smb_private strong {
    float: none;
    max-width: none;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    padding: 0;
    border-radius: 0;
    background: none !important;
    margin-top: 4px;
    font-size: 24px;
    line-height: 1;
    color: #111827;
    font-weight: 700;
}

.mypage-dashboard #smb_private li a:hover:after {
    content: none;
}

.mypage-dashboard #smb_private li i {
    width: auto;
    margin: 0;
    color: inherit;
}

.mypage-dashboard .mypage-main-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.mypage-dashboard .mypage-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mypage-dashboard .side-card {
    padding: 22px;
}

.mypage-dashboard .side-card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.mypage-dashboard .account-info-list {
    margin: 0;
    padding: 0;
}

.mypage-dashboard .account-info-list div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}

.mypage-dashboard .account-info-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mypage-dashboard .account-info-list dt {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.mypage-dashboard .account-info-list dd {
    margin: 0;
    color: #1f2937;
    font-size: 13px;
    word-break: break-word;
}

.mypage-dashboard .quick-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mypage-dashboard .quick-menu-list li {
    margin: 0;
    border-bottom: 1px solid #f0f2f5;
}

.mypage-dashboard .quick-menu-list li:last-child {
    border-bottom: 0;
}

.mypage-dashboard .quick-menu-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 6px 0;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.mypage-dashboard .quick-menu-list a:hover {
    color: #c0392b;
}

.mypage-dashboard .quick-menu-list .menu-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    background: #f3f4f6;
    flex-shrink: 0;
}

.mypage-dashboard .quick-menu-list .menu-label {
    flex: 1;
    min-width: 0;
}

.mypage-dashboard .quick-menu-list .menu-arrow {
    color: #9ca3af;
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
}

.mypage-dashboard .quick-menu-list a:hover .menu-arrow {
    color: #c0392b;
}

.mypage-dashboard .withdrawal-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mypage-dashboard .withdrawal-btn:hover {
    border-color: #f2b8bd;
    color: #d13f4a;
    background: #fff7f8;
}

.mypage-dashboard #smb_my_list {
    float: none;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mypage-dashboard #smb_my_od,
.mypage-dashboard #smb_my_wish {
    margin: 0;
    padding: 22px;
}

.mypage-dashboard .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.mypage-dashboard .section-head h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #111827;
}

.mypage-dashboard .section-head .smb_my_more {
    margin: 0;
}

.mypage-dashboard .smb_my_more {
    position: static;
    top: auto;
    right: auto;
}

.mypage-dashboard .smb_my_more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    background: none;
    height: auto;
}

.mypage-dashboard .smb_my_more a:hover {
    border-color: #c0392b;
    color: #c0392b;
}

.mypage-dashboard .mypage-order-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mypage-dashboard .mypage-order-table .tbl_head03 {
    margin: 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.mypage-dashboard .mypage-order-table .tbl_head03 table {
    width: 100%;
    min-width: 680px;
    border-bottom: 0;
    margin: 0;
}

.mypage-dashboard .mypage-order-table .tbl_head03 thead th {
    border-top: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    color: #334155;
    font-size: 13px;
    padding: 14px 8px;
    letter-spacing: 0;
}

.mypage-dashboard .mypage-order-table .tbl_head03 td {
    border-left: 0;
    border-top: 1px solid #edf0f4;
    padding: 14px 10px;
    font-size: 13px;
    color: #1f2937;
}

.mypage-dashboard .mypage-order-table .tbl_head03 td a {
    font-weight: 700;
    color: #111827;
}

.mypage-dashboard .mypage-order-table .tbl_head03 td a:hover {
    color: #c0392b;
}

.mypage-dashboard #smb_my_wish form {
    margin: 0;
}

.mypage-dashboard #smb_my_wish ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mypage-dashboard #smb_my_wish li {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.mypage-dashboard #smb_my_wish li.empty_li {
    grid-column: 1 / -1;
    min-height: 140px;
    border: 1px dashed #ced4dc;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
}

.mypage-dashboard #smb_my_wish .wish-media {
    background: #f8fafc;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.mypage-dashboard #smb_my_wish .wish-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.mypage-dashboard #smb_my_wish .wish-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.mypage-dashboard #smb_my_wish li:hover .wish-media img {
    transform: scale(1.04);
}

.mypage-dashboard #smb_my_wish .wish-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    min-height: 168px;
}

.mypage-dashboard #smb_my_wish .wish-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 24px;
}

.mypage-dashboard #smb_my_wish .wish-soldout {
    font-size: 12px;
    font-weight: 700;
    color: #ef4444;
}

.mypage-dashboard #smb_my_wish .smb_my_chk {
    display: flex;
    align-items: center;
    float: none;
    margin: 0;
    color: #ef4444;
    font-size: 12px;
}

.mypage-dashboard #smb_my_wish .wish_del {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    top: auto;
    right: auto;
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    color: #94a3b8;
    text-decoration: none;
    background: #fff;
}

.mypage-dashboard #smb_my_wish .wish_del:hover {
    border-color: #cbd5e1;
    color: #475569;
    background: #f8fafc;
}

.mypage-dashboard #smb_my_wish .smb_my_tit {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    min-height: 40px;
}

.mypage-dashboard #smb_my_wish .smb_my_tit a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

.mypage-dashboard #smb_my_wish .smb_my_tit a:hover {
    color: #c0392b;
}

.mypage-dashboard #smb_my_wish .smb_my_price {
    margin: auto 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.mypage-dashboard #smb_my_wish .smb_my_date {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.mypage-dashboard #smb_ws_act {
    margin: 16px 0 0;
    display: flex;
    gap: 10px;
}

.mypage-dashboard #smb_ws_act .btn01,
.mypage-dashboard #smb_ws_act .btn02 {
    flex: 1;
    min-height: 46px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.mypage-dashboard #smb_ws_act .btn01 {
    border: 1px solid #bfc8d4;
    background: #fff;
    color: #334155;
}

.mypage-dashboard #smb_ws_act .btn02 {
    border: 1px solid #c0392b;
    background: #c0392b;
    color: #fff;
}

.mypage-dashboard #smb_ws_act .btn01:hover {
    border-color: #94a3b8;
}

.mypage-dashboard #smb_ws_act .btn02:hover {
    border-color: #3e8f3d;
    background: #3e8f3d;
}

@media (max-width: 1199.98px) {
    .mypage-dashboard #smb_private {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mypage-dashboard #smb_my_wish ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .mypage-dashboard .mypage-main-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mypage-dashboard .overview-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .mypage-dashboard #smb_my_wish ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .mypage-dashboard .container.container-xxl {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .mypage-dashboard .mypage-overview,
    .mypage-dashboard #smb_my_od,
    .mypage-dashboard #smb_my_wish,
    .mypage-dashboard .side-card {
        padding: 16px;
        border-radius: 12px;
    }

    .mypage-dashboard .overview-user .my_ov_name {
        font-size: 19px;
    }

    .mypage-dashboard #smb_private {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mypage-dashboard #smb_private a {
        min-height: 88px;
        padding: 12px;
    }

    .mypage-dashboard #smb_private strong {
        font-size: 20px;
    }

    .mypage-dashboard #smb_my_wish ul {
        grid-template-columns: 1fr;
    }

    .mypage-dashboard #smb_ws_act {
        flex-direction: column;
    }

    .mypage-dashboard #smb_ws_act .btn01,
    .mypage-dashboard #smb_ws_act .btn02 {
        width: 100%;
    }

    .mypage-dashboard .mypage-order-table,
    .mypage-dashboard .mypage-order-table .tbl_head03 {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .mypage-dashboard .mypage-order-table .tbl_head03 table,
    .mypage-dashboard .mypage-order-table .order-inquiry-table {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .mypage-dashboard .mypage-order-table .tbl_head03 thead {
        display: none;
    }

    .mypage-dashboard .mypage-order-table .tbl_head03 tbody,
    .mypage-dashboard .mypage-order-table .tbl_head03 tr,
    .mypage-dashboard .mypage-order-table .tbl_head03 td {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .mypage-dashboard .mypage-order-table .tbl_head03 tr {
        padding: 14px 12px;
        border-bottom: 1px solid #edf0f4;
    }

    .mypage-dashboard .mypage-order-table .tbl_head03 td {
        padding: 5px 0;
        border: 0;
        text-align: left;
        word-break: break-word;
    }
}
/* GLOW·KIKI — point.skin.php inline style 이전 */
    /* ====== 이 화면 전용 보조 스타일(부트스트랩 보완) ====== */
    /* 카드 그리드 간격 */
    .point-grid { gap: 16px; }
    /* 금액 뱃지 크기 통일 */
    .badge-amount { font-size: 0.95rem; }
    /* 만료 텍스트 효과 */
    .text-expired { color: #dc3545 !important; font-weight: 600; }
    /* 모바일에서 카드 내부 행간 */
    .point-card small { line-height: 1.35; }

    /* 좁은 화면에서 보유포인트 카드의 숫자 크게 */
    @media (max-width: 576px) {
        .point-balance { font-size: 1.35rem; }
    }

/* ============================================
   GLOW·KIKI — popup pages (point/coupon/memo/scrap)
   gk-popup-* token system
   ============================================ */
.gk-popup-page {
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
}

.gk-popup-head {
    padding: 28px 28px 18px;
    border-bottom: 1px solid var(--gk-line);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
    background: var(--gk-bg);
    position: relative;
}

.gk-popup-head p {
    grid-column: 1 / -1;
    margin: 0 0 6px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gk-red);
}

.gk-popup-head h1 {
    margin: 0;
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gk-ink);
}

.gk-popup-close {
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--gk-ink);
    background: transparent;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
}

.gk-popup-close:hover { background: var(--gk-ink); color: #fff; }

.gk-popup-back {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    background: var(--gk-bg);
    color: var(--gk-ink);
    cursor: pointer;
    font-family: var(--gk-mono);
    font-size: 18px;
    line-height: 1;
}

.gk-popup-back:hover,
.gk-popup-back:focus-visible {
    background: var(--gk-ink);
    color: #fff;
    outline: 0;
}

.gk-popup-list {
    padding: 24px 28px 80px;
}

.gk-popup-list-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0 14px;
    border-bottom: 1px solid var(--gk-line);
    margin-bottom: 12px;
}

.gk-popup-list-head span {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gk-muted);
}

.gk-popup-list-head b {
    font-family: var(--gk-sans);
    font-size: 22px;
    font-weight: 900;
    color: var(--gk-ink);
}

.gk-popup-list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gk-popup-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gk-line);
}

.gk-popup-list li > div {
    min-width: 0;
}

.gk-popup-list li strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 14px;
}

.gk-popup-list li strong a {
    color: var(--gk-ink);
    text-decoration: none;
}

.gk-popup-list li strong a:hover { color: var(--gk-red); }

.gk-popup-list li > div > a {
    display: inline-block;
    margin-right: 10px;
    font-family: var(--gk-mono);
    font-size: 10px;
    color: var(--gk-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
}

.gk-popup-list li > div > span {
    font-family: var(--gk-mono);
    font-size: 10px;
    color: var(--gk-muted);
    letter-spacing: .06em;
}

.gk-popup-action {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border-radius: 0;
}

.gk-popup-action:hover { background: var(--gk-ink); color: #fff; }

.gk-popup-empty {
    padding: 56px 0;
    text-align: center;
    font-family: var(--gk-mono);
    font-size: 11px;
    color: var(--gk-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 767px) {
    .gk-popup-head { padding: 18px 16px 12px; }
    .gk-popup-back {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }
    .gk-popup-head h1 { font-size: 24px; }
    .gk-popup-list { padding: 16px 16px 100px; }
    .gk-popup-list li { grid-template-columns: 1fr; gap: 8px; }
    .gk-popup-action { align-self: flex-start; }
}

/* GLOW·KIKI — gk-popup extensions: point summary/totals + memo tabs/state */
.gk-popup-summary {
    padding: 24px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: rgba(10,10,10,.02);
}
.gk-popup-summary span {
    display: block;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gk-muted);
    margin-bottom: 6px;
}
.gk-popup-summary strong {
    font-family: var(--gk-sans);
    font-weight: 900;
    font-size: 40px;
    letter-spacing: 0;
    color: var(--gk-ink);
    line-height: 1;
}

.gk-popup-totals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--gk-line);
    padding: 24px 28px 80px;
    gap: 24px;
}
.gk-popup-totals > div span {
    display: block;
    font-family: var(--gk-mono);
    font-size: 10px;
    color: var(--gk-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.gk-popup-totals > div b {
    display: block;
    font-family: var(--gk-sans);
    font-size: 22px;
    font-weight: 900;
    color: var(--gk-ink);
}
.gk-popup-list b.plus, .gk-popup-totals b.plus { color: var(--gk-ink); }
.gk-popup-list b.minus, .gk-popup-totals b.minus { color: var(--gk-red); }
.gk-popup-list li b { font-family: var(--gk-sans); font-weight: 700; font-size: 16px; }

.gk-popup-tabs {
    display: flex;
    gap: 6px;
    padding: 14px 28px;
    border-bottom: 1px solid var(--gk-line);
}
.gk-popup-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid var(--gk-ink);
    border-radius: 999px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gk-ink);
    text-decoration: none;
}
.gk-popup-tabs a.is-active { background: var(--gk-ink); color: #fff; }
.gk-popup-tabs a b { font-weight: 600; opacity: .7; }

.gk-popup-list li.is-new strong { color: var(--gk-red); }
.gk-popup-list li.is-read strong { opacity: .65; }

.gk-popup-detail {
    padding: 24px 28px;
}

.gk-popup-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--gk-line);
}

.gk-popup-meta > div {
    min-width: 0;
}

.gk-popup-meta dt {
    margin: 0 0 6px;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--gk-muted);
    text-transform: uppercase;
}

.gk-popup-meta dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    word-break: keep-all;
}

.gk-popup-message {
    min-height: 180px;
    padding: 28px;
    border: 1px solid var(--gk-line);
    background: rgba(10,10,10,.02);
    font-size: 15px;
    line-height: 1.75;
    word-break: keep-all;
}

.gk-popup-message p {
    margin: 0 0 1em;
}

.gk-popup-message p:last-child {
    margin-bottom: 0;
}

.gk-popup-nav-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.gk-popup-nav-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.gk-popup-nav-actions a:hover {
    background: var(--gk-ink);
    color: #fff;
}

.gk-popup-form {
    padding: 24px 28px 80px;
}

.gk-popup-field {
    margin-bottom: 20px;
}

.gk-popup-field label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--gk-ink);
    text-transform: uppercase;
}

.gk-popup-field input,
.gk-popup-field textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    background: var(--gk-bg);
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    font-size: 15px;
    letter-spacing: 0;
    outline: none;
}

.gk-popup-field input {
    height: 52px;
    padding: 0 14px;
}

.gk-popup-field textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

.gk-popup-field p {
    margin: 8px 0 0;
    color: var(--gk-muted);
    font-size: 12px;
    line-height: 1.5;
}

.gk-popup-captcha {
    margin: 20px 0;
    max-width: 100%;
    overflow: hidden;
}

.gk-popup-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.gk-popup-submit button,
.gk-confirm-form button {
    min-width: 180px;
    height: 52px;
    border: 1px solid var(--gk-ink);
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-popup-submit button:disabled,
.gk-confirm-form button:disabled {
    opacity: .45;
}

.gk-confirm-page {
    padding: 48px 0 80px;
}

.gk-confirm-form {
    display: grid;
    gap: 14px;
}

.gk-confirm-id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-line);
}

.gk-confirm-id span,
.gk-confirm-form label {
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--gk-muted);
    text-transform: uppercase;
}

.gk-confirm-id b {
    font-size: 14px;
    text-transform: uppercase;
}

.gk-confirm-form input[type="password"] {
    width: 100%;
    height: 54px;
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    padding: 0 14px;
    font-size: 15px;
    background: var(--gk-bg);
    color: var(--gk-ink);
}

@media (max-width: 767px) {
    .gk-popup-summary { padding: 18px 16px; }
    .gk-popup-summary strong { font-size: 32px; }
    .gk-popup-totals { padding: 18px 16px 100px; }
    .gk-popup-tabs { padding: 12px 16px; flex-wrap: wrap; }
    .gk-popup-detail,
    .gk-popup-form {
        padding: 18px 16px 100px;
    }
    .gk-popup-meta {
        grid-template-columns: 1fr;
    }
    .gk-popup-message {
        padding: 18px;
        min-height: 160px;
    }
    .gk-popup-submit {
        justify-content: stretch;
    }
    .gk-popup-submit button,
    .gk-confirm-form button {
        width: 100%;
    }
    .gk-confirm-page {
        padding: 24px 0 80px;
    }
}

/* GLOW·KIKI — Product image placeholder (sampletest cream stripe) */
.gk-product-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gk-cream);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gk-product-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(10,10,10,0.04) 22px 23px);
    pointer-events: none;
}
.gk-product-image-placeholder .gk-placeholder-num {
    font-weight: 900;
    font-size: 200px;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(10,10,10,0.1);
    z-index: 1;
}

@media (max-width: 767px) {
    .gk-product-image-placeholder .gk-placeholder-num { font-size: 140px; }
}

/* PDP 새창 alert 카피 정리: 공유/선물 시각 정렬만 (실제 alert 텍스트는 코드에 그대로) */
.btn_gift {
    background: transparent;
    border: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    padding: 10px 16px;
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
}
.btn_gift:hover { background: var(--gk-ink); color: #fff; }

/* GLOW·KIKI — front design should not expose admin shortcut squares */
.sct_admin,
.sit_admin,
.sev_admin {
    display: none !important;
}

/* PDP desktop sticky order bar was a legacy add-on and conflicts with the sample layout */
#quick_order_bar {
    display: none !important;
}

.btn_group_black .gk-btn-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gk-sans);
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

/* GLOW·KIKI — Product Detail / reviews / QNA */
.gk-pdp-detail {
    width: 100%;
    max-width: 100%;
    color: var(--gk-ink);
    background: var(--gk-bg);
}

.gk-pd-anchor {
    position: sticky;
    top: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--gk-ink);
    border-bottom: 1px solid var(--gk-ink);
    background: var(--gk-bg);
}

.gk-pd-anchor a {
    display: block;
    padding: 18px 14px;
    border-right: 1px solid var(--gk-line);
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.gk-pd-anchor a:last-child { border-right: 0; }
.gk-pd-anchor a b { color: var(--gk-red); margin-right: 6px; }
.gk-pd-anchor a.on,
.gk-pd-anchor a:hover {
    background: var(--gk-ink);
    color: #fff;
}

.gk-pd-section {
    padding: 80px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
    scroll-margin-top: 72px;
}

.gk-pd-section.is-white { background: #fff; }
.gk-pd-section.is-cream { background: var(--gk-cream); }

.gk-pd-eyebrow {
    margin-bottom: 16px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gk-pd-eyebrow b {
    color: var(--gk-ink);
    font-weight: 700;
    margin-right: 8px;
}

.gk-pd-section h2 {
    margin: 0 0 24px;
    font-size: clamp(44px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .86;
    text-transform: uppercase;
}

.gk-pd-section h2 em,
.gk-pd-fabric h3 em {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}

.gk-pd-lead {
    max-width: 720px;
    margin: 0;
    color: #303030;
    font-size: 16px;
    line-height: 1.75;
}

.gk-pd-hero-shot {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 420px;
    margin-top: 48px;
    padding: 32px;
    border: 1px solid var(--gk-line);
    background: linear-gradient(180deg, var(--gk-cream-2), var(--gk-cream));
    overflow: hidden;
}

.gk-pd-hero-shot::after,
.gk-pd-fabric .swatch::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(10,10,10,.045) 20px 21px);
    pointer-events: none;
}

.gk-pd-hero-shot .lab,
.gk-pd-fabric .swatch span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 9px 14px;
    border: 1px solid var(--gk-ink);
    background: #fff;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-pd-hero-shot .num {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 1;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gk-pd-hero-shot .num b,
.gk-pd-fabric .swatch b { color: var(--gk-red); }

.gk-pd-callouts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 48px;
    border: 1px solid var(--gk-line);
    background: var(--gk-line);
}

.gk-pd-callouts .c {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    gap: 14px;
    padding: 30px 24px;
    background: var(--gk-bg);
}

.gk-pd-callouts .ic {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 12px;
    font-weight: 800;
}

.gk-pd-callouts .red .ic { background: var(--gk-red); }
.gk-pd-callouts .h {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}
.gk-pd-callouts .h em { color: var(--gk-red); font-style: italic; font-weight: 400; }
.gk-pd-callouts .p { color: #444; font-size: 13px; line-height: 1.6; }
.gk-pd-callouts .x {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--gk-line);
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gk-pd-body {
    max-width: 860px;
    margin-top: 48px;
    color: #242424;
    font-size: 15px;
    line-height: 1.8;
}
.gk-pd-body img,
.gk-pd-copy img { max-width: 100%; height: auto; }

.gk-pd-fabric,
.gk-pd-shipping,
.gk-pd-user-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 48px;
}

.gk-pd-fabric {
    border: 1px solid var(--gk-ink);
}

.gk-pd-fabric .swatch {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background: var(--gk-cream-2);
    overflow: hidden;
}

.gk-pd-fabric .info {
    padding: 44px 40px;
    background: #fff;
}

.gk-pd-fabric h3 {
    margin: 0 0 24px;
    font-size: 46px;
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
}

.gk-pd-fabric dl { margin: 0; }
.gk-pd-fabric dl div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding: 15px 0;
    border-top: 1px solid var(--gk-line);
}
.gk-pd-fabric dl div:last-child { border-bottom: 1px solid var(--gk-line); }
.gk-pd-fabric dt,
.gk-pd-spec .k {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gk-pd-fabric dd {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.55;
}

.gk-pd-spec {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 48px;
    border: 1px solid var(--gk-ink);
    background: var(--gk-line);
}
.gk-pd-spec .gk-pd-spec-row,
.gk-pd-spec .row /* legacy alias — 기존 데이터 호환 */ {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--gk-bg);
}
.gk-pd-spec .k { color: var(--gk-red); }
.gk-pd-spec .v {
    color: var(--gk-ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.gk-pd-shipping {
    gap: 32px;
}
.gk-pd-shipping section {
    padding: 40px;
    border: 1px solid rgba(10,10,10,.16);
    background: rgba(255,255,255,.42);
}
.gk-pd-shipping h3 {
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}
.gk-pd-copy {
    color: #333;
    font-size: 14px;
    line-height: 1.75;
}

.gk-pd-user-grid {
    gap: 24px;
}
.gk-pd-panel {
    min-width: 0;
    border: 1px solid var(--gk-line);
    background: var(--gk-bg);
}
.gk-pd-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gk-line);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gk-pd-panel-head span { color: var(--gk-red); }
.gk-pd-panel-head b { color: var(--gk-ink); }

.gk-review-list,
.gk-qa-list {
    padding: 20px;
}
.gk-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.gk-list-head span {
    display: block;
    margin-bottom: 8px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gk-list-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}
.gk-list-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.gk-list-actions a,
.sit_use_cmd a,
.sit_qa_cmd a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    background: transparent;
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}
.gk-list-actions a:hover,
.sit_use_cmd a:hover,
.sit_qa_cmd a:hover {
    background: var(--gk-ink);
    color: #fff;
}

.gk-review-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-line);
    margin-bottom: 12px;
}
.gk-review-score b {
    color: var(--gk-red);
    font-size: 28px;
    font-weight: 900;
}
.gk-review-score span {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
}

.gk-review-cards,
.gk-qa-cards {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.gk-review-cards li,
.gk-qa-cards li {
    border: 1px solid var(--gk-line);
    background: #fff;
}
.sit_use_li_title,
.sit_qa_li_title {
    display: grid;
    width: 100%;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 0;
    background: transparent;
    color: var(--gk-ink);
    text-align: left;
    cursor: pointer;
}
.sit_use_li_title .score,
.sit_qa_li_title > span {
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sit_use_li_title strong,
.sit_qa_li_title strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 800;
}
.sit_use_li_title > span:last-child,
.sit_qa_li_title em {
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .06em;
}
.sit_use_con,
.sit_qa_con {
    display: none;
    padding: 0 16px 16px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
}
.sit_use_p,
.sit_qa_p {
    padding-top: 14px;
    border-top: 1px solid var(--gk-line);
}
.sit_use_cmd,
.sit_qa_cmd {
    display: flex;
    gap: 6px;
    margin-top: 14px;
}
.sit_use_reply,
.sit_qa_qaa {
    margin-top: 14px;
    padding: 14px;
    background: var(--gk-cream);
}
.sit_qa_qaq,
.sit_qa_qaa {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
}
.sit_qa_qaq b,
.sit_qa_qaa b {
    color: var(--gk-red);
    font-family: var(--gk-mono);
}
.sit_empty {
    margin: 0;
    padding: 48px 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

#sit_use_list + .pg_wrap,
#sit_qa_list + .pg_wrap {
    padding: 0 20px 20px;
}

@media (max-width: 991px) {
    .gk-pd-anchor {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-x: hidden;
    }
    .gk-pd-anchor a {
        min-width: 0;
        padding: 14px 12px;
        white-space: normal;
    }
    .gk-pd-section {
        padding: 48px 18px;
    }
    .gk-pd-callouts,
    .gk-pd-fabric,
    .gk-pd-shipping,
    .gk-pd-user-grid,
    .gk-pd-spec {
        grid-template-columns: 1fr;
    }
    .gk-pd-hero-shot,
    .gk-pd-fabric .swatch {
        min-height: 300px;
    }
    .gk-pd-shipping {
        gap: 16px;
    }
    .gk-pd-shipping section,
    .gk-pd-fabric .info {
        padding: 28px 22px;
    }
    .sit_use_li_title,
    .sit_qa_li_title {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .gk-list-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .gk-list-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .gk-pd-section {
        padding: 38px 16px;
    }
    .gk-pd-section h2 {
        font-size: 42px;
    }
    .gk-pd-hero-shot {
        margin-left: -16px;
        margin-right: -16px;
        border-left: 0;
        border-right: 0;
    }
    .gk-review-list,
    .gk-qa-list {
        padding: 16px;
    }
}

/* GLOW KIKI cart / checkout */
body.gk-cart-active,
body.gk-checkout-active {
    background: var(--gk-bg) !important;
}

body.gk-cart-active.has-bottom-nav,
body.gk-checkout-active.has-bottom-nav {
    padding-bottom: 0;
}

body.gk-cart-active .gk-mobile-tabbar,
body.gk-checkout-active .gk-mobile-tabbar {
    display: none !important;
}

#gk-cart,
#gk-cart * {
    letter-spacing: 0;
}

#gk-cart {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--gk-bg);
}

.gk-cart-mobile-head,
.gk-checkout-mobile-head {
    display: none;
}

.gk-checkout-steps,
.gk-cart-title-mo {
    display: none;
}

.gk-cart-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: 68px 28px 42px;
    border-bottom: 1px solid var(--gk-line);
    background: #fff;
}

.gk-eyebrow {
    margin: 0 0 14px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.gk-cart-hero h1,
.gk-cart-summary h2,
body.gk-checkout-active .page-header-title {
    margin: 0;
    color: var(--gk-ink);
    font-size: 76px;
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
}

.gk-cart-hero h1 em,
.gk-cart-summary h2 em,
body.gk-checkout-active .page-header-title em {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}

.gk-cart-meta {
    display: grid;
    gap: 6px;
    min-width: 220px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    line-height: 1.45;
    text-transform: uppercase;
    text-align: right;
}

.gk-cart-meta b {
    color: var(--gk-ink);
}

.gk-cart-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--gk-line);
    background: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

.gk-cart-progress span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gk-muted);
}

.gk-cart-progress b {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.gk-cart-progress .is-active {
    color: var(--gk-red);
}

.gk-cart-progress em {
    margin-left: auto;
    color: var(--gk-red);
    font-style: normal;
}

.gk-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    min-height: 62vh;
}

.gk-cart-items {
    min-width: 0;
    padding: 32px 28px 80px;
    border-right: 1px solid var(--gk-line);
}

.gk-cart-toolbar {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

.gk-cart-toolbar label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--gk-ink);
}

.gk-cart-toolbar input,
.gk-cart-check input {
    accent-color: var(--gk-red);
}

.gk-cart-toolbar div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gk-cart-toolbar button,
.gk-cart-actions button,
.gk-cart-option-link {
    appearance: none;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}

.gk-cart-toolbar button:hover,
.gk-cart-actions button:hover,
.gk-cart-option-link:hover {
    color: var(--gk-red);
}

.gk-cart-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gk-cart-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: stretch;
    padding: 24px 0;
    border-bottom: 1px solid var(--gk-line);
}

.gk-cart-check {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.gk-cart-check span {
    display: none;
}

.gk-cart-thumb {
    position: relative;
    display: block;
    min-height: 212px;
    overflow: hidden;
    background: var(--gk-cream);
    color: var(--gk-ink);
    aspect-ratio: 3 / 4;
}

.gk-cart-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(10, 10, 10, 0.045) 12px 13px);
}

.gk-cart-thumb .code {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: #fff;
    font-family: var(--gk-mono);
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.gk-cart-thumb strong {
    position: absolute;
    z-index: 1;
    right: 8px;
    bottom: 4px;
    color: rgba(10, 10, 10, 0.11);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.gk-cart-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
}

.gk-cart-id {
    margin: 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.gk-cart-name {
    color: var(--gk-ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gk-cart-options {
    display: grid;
    gap: 5px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
}

.gk-cart-option-link {
    align-self: flex-start;
    margin-top: 2px;
    color: var(--gk-red);
}

.gk-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
}

.gk-cart-price {
    display: grid;
    min-width: 132px;
    align-content: start;
    justify-items: end;
    gap: 6px;
    text-align: right;
}

.gk-cart-price strong {
    color: var(--gk-red);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.gk-cart-price s,
.gk-cart-price em {
    color: var(--gk-muted);
    font-size: 12px;
    font-style: normal;
}

.gk-cart-price .sale {
    display: inline-flex;
    padding: 5px 8px;
    background: var(--gk-red);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 10px;
    line-height: 1;
}

.gk-cart-continue,
.gk-cart-line-btn {
    display: inline-flex;
    margin-top: 24px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gk-ink);
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

.gk-cart-empty {
    padding: 72px 0;
}

.gk-cart-empty h2 {
    margin: 0;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.gk-cart-empty h2 em {
    color: var(--gk-red);
    font-style: italic;
    font-weight: 400;
}

.gk-cart-summary {
    position: sticky;
    top: 104px;
    align-self: start;
    padding: 32px 28px;
    background: var(--gk-bg);
}

.gk-cart-summary h2 {
    margin-bottom: 24px;
    font-size: 36px;
}

.gk-cart-summary dl {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-line);
}

.gk-cart-summary dl div,
.gk-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    font-size: 13px;
}

.gk-cart-summary dt {
    color: var(--gk-muted);
    font-weight: 400;
}

.gk-cart-summary dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.gk-cart-total {
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

.gk-cart-total strong {
    color: var(--gk-ink);
    font-family: var(--gk-sans);
    font-size: 32px;
    font-weight: 900;
}

.gk-cart-promo {
    margin: 20px 0;
}

.gk-cart-promo label {
    display: block;
    margin-bottom: 8px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.gk-cart-promo div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
}

.gk-cart-promo input {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--gk-ink);
    background: #fff;
    padding: 12px;
    color: var(--gk-ink);
}

.gk-cart-promo button,
.gk-cart-checkout,
.gk-cart-sticky button {
    border: 1px solid var(--gk-ink);
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

.gk-cart-promo button {
    padding: 0 18px;
}

.gk-cart-checkout {
    width: 100%;
    min-height: 54px;
    background: var(--gk-red);
    border-color: var(--gk-red);
    font-weight: 800;
}

.gk-cart-safe {
    margin: 18px 0 0;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
}

.gk-cart-sticky {
    display: none;
}

body.gk-checkout-active .page-header-section {
    margin: 0;
    padding: 64px 28px 44px;
    background: #fff;
    border-bottom: 1px solid var(--gk-line);
}

body.gk-checkout-active .page-header-inner {
    max-width: 1440px;
    padding: 0;
}

body.gk-checkout-active .page-breadcrumb ul {
    gap: 8px;
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

body.gk-checkout-active .page-breadcrumb ul li,
body.gk-checkout-active .page-breadcrumb ul li a,
body.gk-checkout-active .page-breadcrumb ul li.active {
    color: var(--gk-muted);
}

body.gk-checkout-active .page-breadcrumb ul li::after {
    color: var(--gk-line);
}

body.gk-checkout-active .page-header-title {
    font-size: 68px;
}

body.gk-checkout-active .orderform-section {
    padding: 0;
    background: var(--gk-bg);
}

body.gk-checkout-active .orderform-section > .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

body.gk-checkout-active #forderform > .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    gap: 0;
    margin: 0;
}

body.gk-checkout-active #forderform > .row > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}

body.gk-checkout-active .order-form-left {
    padding: 28px;
    border-right: 1px solid var(--gk-line);
}

body.gk-checkout-active .order-summary-box {
    position: sticky;
    top: 96px;
    margin: 0;
    padding: 28px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--gk-bg);
}

body.gk-checkout-active .form-section,
body.gk-checkout-active .login-prompt {
    margin: 0 0 22px;
    border: 1px solid var(--gk-line);
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    overflow: hidden;
}

body.gk-checkout-active .section-header,
body.gk-checkout-active .summary-header,
body.gk-checkout-active .payment-section h4,
body.gk-checkout-active .point-section h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--gk-line);
    background: #fff;
}

body.gk-checkout-active .section-header h3,
body.gk-checkout-active .summary-header h3,
body.gk-checkout-active .payment-section h4,
body.gk-checkout-active .point-section h5 {
    margin: 0;
    color: var(--gk-ink);
    font-size: 16px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
}

body.gk-checkout-active .payment-section h4,
body.gk-checkout-active .point-section h5 {
    justify-content: flex-start !important;
}

body.gk-checkout-active .summary-header .item-count {
    display: inline-flex;
    min-width: 0;
    min-height: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gk-red);
    color: #fff;
    padding: 4px 9px;
    font-family: var(--gk-mono);
    font-size: 10px;
    line-height: 1;
}

body.gk-checkout-active .section-number {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gk-red);
    border-radius: 50%;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
}

body.gk-checkout-active .section-content,
body.gk-checkout-active .payment-section,
body.gk-checkout-active .point-section,
body.gk-checkout-active .agree-section {
    padding: 18px;
}

body.gk-checkout-active .form-group {
    margin-bottom: 14px;
}

body.gk-checkout-active .form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 10px;
    text-transform: uppercase;
}

body.gk-checkout-active .form-control,
body.gk-checkout-active .m-co-input,
body.gk-checkout-active select,
body.gk-checkout-active textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--gk-ink) !important;
    box-shadow: none !important;
}

body.gk-checkout-active .zip-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

body.gk-checkout-active .btn-address-search,
body.gk-checkout-active .btn-address-list,
body.gk-checkout-active .btn-use-all,
body.gk-checkout-active .cp_btn {
    border: 1px solid var(--gk-ink);
    border-radius: 0;
    background: var(--gk-ink);
    color: #fff;
    font-family: var(--gk-mono);
    font-size: 10px;
    text-transform: uppercase;
}

body.gk-checkout-active .delivery-options,
body.gk-checkout-active .payment-options {
    display: grid;
    gap: 8px;
}

body.gk-checkout-active .delivery-option,
body.gk-checkout-active .delivery-option-check,
body.gk-checkout-active .payment-option,
body.gk-checkout-active .agree-item,
body.gk-checkout-active .agree-all {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    border: 1px solid var(--gk-line);
    border-radius: 0;
    background: #fff;
    padding: 13px 14px;
    color: var(--gk-ink);
}

body.gk-checkout-active .delivery-option .option-box,
body.gk-checkout-active .delivery-option-check span {
    display: flex !important;
    width: 100%;
    min-height: 0 !important;
    align-items: center;
    gap: 10px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    color: var(--gk-ink) !important;
    font-size: 13px;
    font-weight: 800;
}

body.gk-checkout-active .delivery-option .option-box i {
    display: none !important;
}

body.gk-checkout-active .payment-option {
    position: relative;
    width: 100%;
    min-height: 0;
}

body.gk-checkout-active .payment-option > input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.gk-checkout-active .payment-option .option-content {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    min-height: 0 !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 12px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

body.gk-checkout-active .payment-option .option-icon {
    position: relative;
    display: inline-flex !important;
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 50% !important;
    background: #fff !important;
}

body.gk-checkout-active .payment-option .option-icon i,
body.gk-checkout-active .payment-option .option-icon::before {
    display: none !important;
}

body.gk-checkout-active .payment-option > input[type="radio"]:checked + .option-content .option-icon::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--gk-red);
}

body.gk-checkout-active .payment-option .option-name {
    color: var(--gk-ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

body.gk-checkout-active .payment-option:has(input[type="radio"]:checked) {
    border-color: var(--gk-ink);
}

body.gk-checkout-active .delivery-option input,
body.gk-checkout-active .delivery-option-check input,
body.gk-checkout-active .payment-option input,
body.gk-checkout-active .agree-item input,
body.gk-checkout-active .agree-all input {
    accent-color: var(--gk-red);
}

body.gk-checkout-active .order-items {
    display: grid;
    gap: 12px;
}

body.gk-checkout-active .order-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--gk-line);
}

body.gk-checkout-active .item-image {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--gk-cream);
}

body.gk-checkout-active .item-image .no-image {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, var(--gk-cream) 0 12px, var(--gk-cream-2) 12px 13px);
}

body.gk-checkout-active .item-image .no-image i {
    display: none;
}

body.gk-checkout-active .item-info {
    min-width: 0;
}

body.gk-checkout-active .item-name {
    display: block;
    color: var(--gk-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

body.gk-checkout-active .item-options,
body.gk-checkout-active .item-qty-price {
    display: block;
    margin-top: 5px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    line-height: 1.45;
}

body.gk-checkout-active .price-summary {
    margin-top: 18px;
    padding: 16px;
    border-top: 1px solid var(--gk-line);
    border-bottom: 1px solid var(--gk-ink);
}

body.gk-checkout-active .price-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 0;
    color: var(--gk-muted);
}

body.gk-checkout-active .price-row.total {
    align-items: center;
    color: var(--gk-ink);
    font-weight: 900;
}

body.gk-checkout-active .total-price {
    color: var(--gk-red);
    font-size: 28px;
    font-weight: 900;
}

body.gk-checkout-active .agree-section,
body.gk-checkout-active .payment-section,
body.gk-checkout-active .point-section {
    margin-top: 18px;
    border: 1px solid var(--gk-line);
    background: #fff;
}

body.gk-checkout-active .agree-section {
    padding: 0 !important;
    overflow: hidden;
}

body.gk-checkout-active .agree-all,
body.gk-checkout-active .agree-item {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--gk-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--gk-ink) !important;
}

body.gk-checkout-active .agree-all {
    min-height: 58px !important;
}

body.gk-checkout-active .agree-item {
    min-height: 54px !important;
}

body.gk-checkout-active .agree-item:last-child {
    border-bottom: 0 !important;
}

body.gk-checkout-active .agree-items {
    margin: 0 !important;
    padding: 0 !important;
}

body.gk-checkout-active .agree-all input[type="checkbox"],
body.gk-checkout-active .agree-item input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: var(--gk-red);
}

body.gk-checkout-active .agree-all span,
body.gk-checkout-active .agree-item span {
    display: block !important;
    min-width: 0;
    color: var(--gk-ink) !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere;
}

body.gk-checkout-active .agree-all span {
    font-size: 14px !important;
    font-weight: 900 !important;
}

body.gk-checkout-active .agree-item span {
    font-size: 13px !important;
    font-weight: 800 !important;
}

body.gk-checkout-active .agree-item em {
    color: var(--gk-red) !important;
    font-style: normal !important;
}

body.gk-checkout-active .order-submit {
    margin-top: 18px;
}

body.gk-checkout-active #display_pay_button input,
body.gk-checkout-active #display_pay_button button,
body.gk-checkout-active .btn_submit {
    width: 100%;
    min-height: 56px;
    border: 1px solid var(--gk-red) !important;
    border-radius: 0 !important;
    background: var(--gk-red) !important;
    color: #fff !important;
    font-family: var(--gk-mono);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

body.gk-checkout-active .order-notice {
    margin-top: 14px;
    color: var(--gk-muted);
    font-family: var(--gk-mono);
    font-size: 10px;
    text-align: center;
}

@media (max-width: 960px) {
    .gk-cart-hero {
        grid-template-columns: 1fr;
        padding: 48px 22px 32px;
    }

    .gk-cart-meta {
        text-align: left;
    }

    .gk-cart-layout,
    body.gk-checkout-active #forderform > .row {
        grid-template-columns: 1fr;
    }

    .gk-cart-items,
    body.gk-checkout-active .order-form-left {
        border-right: 0;
    }

    .gk-cart-summary,
    body.gk-checkout-active .order-summary-box {
        position: static;
    }
}

@media (max-width: 767px) {
    body.gk-cart-active .gk-site-header,
    body.gk-checkout-active .gk-site-header {
        display: none;
    }

    .gk-cart-mobile-head,
    .gk-checkout-mobile-head {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) 58px;
        align-items: center;
        min-height: 54px;
        border-bottom: 1px solid var(--gk-line);
        background: #fff;
        color: var(--gk-ink);
        font-family: var(--gk-mono);
        font-size: 11px;
        text-transform: uppercase;
    }

    .gk-cart-mobile-head a,
    .gk-checkout-mobile-head a,
    .gk-cart-mobile-head button,
    .gk-checkout-mobile-head em {
        display: inline-flex;
        width: 100%;
        height: 54px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--gk-ink);
        font: inherit;
        font-style: normal;
    }

    .gk-cart-mobile-head span,
    .gk-checkout-mobile-head span {
        text-align: center;
    }

    .gk-cart-mobile-head b,
    .gk-checkout-mobile-head b {
        color: var(--gk-red);
    }

    .gk-cart-hero {
        padding: 18px 16px;
    }

    .gk-cart-hero h1 {
        font-size: 34px;
    }

    .gk-cart-title-pc {
        display: none;
    }

    .gk-cart-title-mo {
        display: inline;
    }

    .gk-cart-meta,
    .gk-cart-progress em {
        display: none;
    }

    .gk-cart-progress {
        padding: 14px 16px;
        gap: 8px;
        font-size: 9px;
    }

    .gk-cart-progress span {
        flex: 1;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--gk-line);
    }

    .gk-cart-progress .is-active {
        border-color: var(--gk-red);
    }

    .gk-cart-progress b {
        width: auto;
        height: auto;
        border: 0;
    }

    .gk-cart-items {
        padding: 0;
    }

    .gk-cart-toolbar {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .gk-cart-toolbar div {
        display: none;
    }

    .gk-cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .gk-cart-check {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .gk-cart-thumb {
        grid-column: 1;
        min-height: 112px;
    }

    .gk-cart-thumb .code {
        top: 6px;
        left: 6px;
        padding: 3px 5px;
        font-size: 8px;
    }

    .gk-cart-thumb strong {
        font-size: 36px;
    }

    .gk-cart-info {
        grid-column: 2;
        min-height: 112px;
        gap: 4px;
    }

    .gk-cart-id {
        font-size: 9px;
    }

    .gk-cart-name {
        font-size: 13px;
    }

    .gk-cart-options {
        font-size: 10px;
    }

    .gk-cart-option-link {
        display: none;
    }

    .gk-cart-actions {
        display: none;
    }

    .gk-cart-price {
        grid-column: 2;
        min-width: 0;
        justify-items: start;
        text-align: left;
        align-self: end;
    }

    .gk-cart-price strong {
        font-size: 14px;
    }

    .gk-cart-price em {
        display: none;
    }

    .gk-cart-continue {
        display: none;
    }

    .gk-cart-summary {
        padding: 20px 16px 118px;
        border-top: 1px solid var(--gk-line);
        background: var(--gk-cream-2);
    }

    .gk-cart-summary h2 {
        display: none;
    }

    .gk-cart-total strong {
        font-size: 18px;
    }

    .gk-cart-checkout {
        display: none;
    }

    .gk-cart-sticky {
        position: fixed;
        z-index: 1000;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--gk-line);
        background: #fff;
    }

    .gk-cart-sticky button {
        display: flex;
        width: 100%;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        gap: 16px;
        background: var(--gk-red);
        border-color: var(--gk-red);
    }

    body.gk-checkout-active .page-header-section {
        display: none;
    }

    .gk-checkout-steps {
        display: flex;
        gap: 4px;
        padding: 16px;
        border-bottom: 1px solid var(--gk-line);
        background: #fff;
    }

    .gk-checkout-steps span {
        flex: 1;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--gk-line);
        color: var(--gk-muted);
        font-family: var(--gk-mono);
        font-size: 9px;
        text-transform: uppercase;
    }

    .gk-checkout-steps .done {
        border-color: var(--gk-ink);
        color: var(--gk-ink);
    }

    .gk-checkout-steps .on {
        border-color: var(--gk-red);
        color: var(--gk-ink);
    }

    .gk-checkout-steps b {
        margin-right: 4px;
        font-size: 11px;
        font-weight: 900;
    }

    body.gk-checkout-active .orderform-section {
        background: var(--gk-bg);
    }

    body.gk-checkout-active .login-prompt {
        margin: 16px;
    }

    body.gk-checkout-active .order-form-left,
    body.gk-checkout-active .order-summary-box {
        padding: 0;
    }

    body.gk-checkout-active .order-form-left {
        display: flex;
        flex-direction: column;
    }

    body.gk-checkout-active .order-form-left > .form-section:nth-of-type(1) {
        order: 2;
    }

    body.gk-checkout-active .order-form-left > .form-section:nth-of-type(2) {
        order: 1;
    }

    body.gk-checkout-active .order-form-left > .form-section:nth-of-type(3) {
        order: 3;
    }

    body.gk-checkout-active .form-section,
    body.gk-checkout-active .payment-section,
    body.gk-checkout-active .point-section,
    body.gk-checkout-active .agree-section {
        margin: 0;
        border-width: 0 0 1px;
    }

    body.gk-checkout-active .section-header,
    body.gk-checkout-active .summary-header,
    body.gk-checkout-active .payment-section h4,
    body.gk-checkout-active .point-section h5 {
        padding: 18px 16px 12px;
        justify-content: flex-start;
        border-bottom: 0;
    }

    body.gk-checkout-active .summary-header {
        justify-content: space-between;
    }

    body.gk-checkout-active .section-number {
        display: none;
    }

    body.gk-checkout-active .section-header h3,
    body.gk-checkout-active .summary-header h3,
    body.gk-checkout-active .payment-section h4,
    body.gk-checkout-active .point-section h5 {
        font-size: 16px;
    }

    body.gk-checkout-active .section-content,
    body.gk-checkout-active .payment-section,
    body.gk-checkout-active .point-section,
    body.gk-checkout-active .agree-section {
        padding: 16px;
    }

    body.gk-checkout-active .zip-row {
        grid-template-columns: 1fr;
    }

    body.gk-checkout-active .order-item {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    body.gk-checkout-active .order-item .cp_btn {
        grid-column: 2;
        width: max-content;
    }

    body.gk-checkout-active .order-submit,
    body.gk-checkout-active .order-notice {
        padding: 0 16px;
    }

    body.gk-checkout-active #display_pay_button {
        position: sticky;
        bottom: 0;
        z-index: 900;
        margin: 0 -16px;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--gk-line);
        background: #fff;
    }
}

@media (max-width: 380px) {
    .gk-cart-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
        padding: 14px 12px;
    }

    .gk-cart-thumb {
        min-height: 104px;
    }
}

/* GLOW.KIKI gatekeeper: checkout/mypage breadcrumb, board attachments, shop popup forms */
body.gk-checkout-active .page-header-section .gk-checkout-breadcrumb {
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gk-muted);
}

body.gk-checkout-active .gk-checkout-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

body.gk-checkout-active .gk-checkout-breadcrumb a:hover {
    color: var(--gk-ink);
}

body.gk-checkout-active .gk-checkout-breadcrumb span {
    color: var(--gk-line);
}

.gk-mypage-dashboard.mypage-dashboard {
    background: var(--gk-bg);
}

.gk-mypage-head.page-title {
    margin: 0 0 28px !important;
    padding: 0;
    background: var(--gk-bg);
}

.gk-mypage-breadcrumb.gk-breadcrumb {
    justify-content: flex-start;
}

.gk-mypage-page-head {
    background: #fff;
}

.gk-mypage-page-head .eyebrow,
.gk-mypage-page-head .meta {
    font-family: var(--gk-mono);
    font-size: 11px;
    color: var(--gk-muted);
    text-transform: uppercase;
}

.gk-mypage-page-head .eyebrow {
    margin-bottom: 14px;
    color: var(--gk-red);
}

.gk-mypage-page-head h1 {
    margin: 0;
    color: var(--gk-ink);
    font-size: clamp(44px, 8vw, 92px);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
}

.gk-mypage-page-head h1 em {
    color: var(--gk-red);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.gk-mypage-page-head .meta {
    display: grid;
    gap: 6px;
    text-align: right;
}

.gk-mypage-page-head .meta b {
    color: var(--gk-ink);
    font-weight: 700;
}

#gk-board-write .gk-file-box {
    position: relative;
    flex-direction: column;
    min-height: 112px;
    overflow: hidden;
    text-align: center;
}

#gk-board-write .gk-file-box input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    opacity: 0;
    cursor: pointer;
}

#gk-board-write .gk-file-box .gk-file-name {
    display: block;
    max-width: 100%;
    color: var(--gk-muted);
    font-style: normal;
    font-size: 10px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.gk-shop-popup-active {
    min-width: 0 !important;
    margin: 0;
    background: var(--gk-bg) !important;
    color: var(--gk-ink);
    overflow-x: hidden;
}

body.gk-shop-popup-active .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.gk-shop-write-popup {
    width: min(100%, 820px);
    min-height: 100vh;
    margin: 0 auto !important;
    border-width: 0 1px !important;
    background: var(--gk-bg) !important;
}

.gk-shop-write-popup .gk-popup-head {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 16px;
    align-items: start;
    padding: 28px;
    border-bottom: 1px solid var(--gk-line);
    background: var(--gk-bg);
}

.gk-shop-write-popup .gk-popup-head .eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--gk-red);
    font-family: var(--gk-mono);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.gk-shop-write-popup #win_title {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: var(--gk-ink);
    font-size: clamp(42px, 9vw, 82px);
    font-weight: 900;
    line-height: .88;
    text-transform: uppercase;
}

.gk-shop-write-popup #win_title em {
    color: var(--gk-red);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.gk-shop-write-popup .gk-popup-close {
    display: inline-flex;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    flex: 0 0 52px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--gk-ink);
    background: #fff;
    color: var(--gk-ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.gk-shop-write-popup .gk-popup-body {
    padding: 24px 28px 0;
}

.gk-shop-write-popup .gk-popup-fields {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gk-shop-write-popup .gk-popup-field {
    min-width: 0;
    margin: 0;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--gk-line);
}

.gk-shop-write-popup .gk-popup-label {
    display: block;
    margin: 0 0 10px;
    color: var(--gk-ink);
    font-family: var(--gk-mono);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.gk-shop-write-popup .gk-popup-label b {
    color: var(--gk-red);
}

.gk-shop-write-popup .gk-popup-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gk-shop-write-popup input[type="text"],
.gk-shop-write-popup input[type="email"],
.gk-shop-write-popup input[type="tel"],
.gk-shop-write-popup select,
.gk-shop-write-popup textarea,
.gk-shop-write-popup .frm_input,
.gk-shop-write-popup .full_input {
    width: 100% !important;
    max-width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--gk-ink) !important;
    font-size: 15px;
}

.gk-shop-write-popup .gk-plain-textarea {
    display: block;
    min-height: 220px;
    padding: 14px 16px;
    line-height: 1.65;
    resize: vertical;
}

.gk-shop-write-popup iframe,
.gk-shop-write-popup .cke_chrome,
.gk-shop-write-popup .cke_inner,
.gk-shop-write-popup .cke_contents {
    max-width: 100% !important;
}

.gk-shop-write-popup .frm_info {
    display: block;
    margin-top: 7px;
    color: var(--gk-muted);
    font-size: 12px;
    line-height: 1.5;
}

.gk-shop-write-popup .gk-popup-secret {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gk-shop-write-popup .gk-popup-secret .gk-popup-label {
    margin: 0 auto 0 0;
}

.gk-shop-write-popup .gk-popup-secret label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    width: auto !important;
    min-height: 0;
    padding: 0 !important;
    font-family: var(--gk-mono);
    font-size: 11px;
}

.gk-shop-write-popup .gk-popup-secret input[type="checkbox"] {
    position: static !important;
    display: inline-block !important;
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    outline: 0;
    overflow: visible !important;
    z-index: auto !important;
    accent-color: var(--gk-red);
    cursor: pointer;
}

.gk-shop-write-popup .gk-popup-secret label span {
    display: none !important;
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body.gk-shop-popup-active #sit_use_write_star {
    display: flex !important;
    flex-wrap: wrap;
    gap: 4px !important;
    padding: 8px !important;
    border: 1px solid var(--gk-line);
    background: #fff;
}

body.gk-shop-popup-active #sit_use_write_star > li {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    min-height: 34px;
    align-items: center;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    background: transparent !important;
}

body.gk-shop-popup-active #sit_use_write_star label {
    display: inline-flex !important;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 !important;
    padding: 0 8px;
    border: 1px solid var(--gk-line);
    border-radius: 999px;
    color: var(--gk-muted);
    background: #fff;
    font-family: var(--gk-mono);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

body.gk-shop-popup-active #sit_use_write_star label::before {
    content: "★";
    color: var(--gk-red);
    font-size: 11px;
}

body.gk-shop-popup-active #sit_use_write_star img {
    display: none !important;
}

body.gk-shop-popup-active #sit_use_write_star > li:has(input[type="radio"]:checked) {
    box-shadow: none !important;
}

body.gk-shop-popup-active #sit_use_write_star > li:has(input[type="radio"]:checked) label,
body.gk-shop-popup-active #sit_use_write_star input[type="radio"]:checked + label {
    border-color: var(--gk-red) !important;
    background: var(--gk-red) !important;
    color: #fff !important;
}

body.gk-shop-popup-active #sit_use_write_star > li:has(input[type="radio"]:checked) label::before,
body.gk-shop-popup-active #sit_use_write_star input[type="radio"]:checked + label::before {
    color: #fff;
}

.gk-shop-write-popup .win_btn {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 24px -28px 0;
    padding: 12px 28px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--gk-line);
    background: #fff;
}

.gk-shop-write-popup .win_btn .btn_submit,
.gk-shop-write-popup .win_btn .btn_close {
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--gk-ink) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--gk-ink) !important;
    font-family: var(--gk-mono);
    font-size: 11px;
    text-transform: uppercase;
}

.gk-shop-write-popup .win_btn .btn_submit {
    border-color: var(--gk-red) !important;
    background: var(--gk-red) !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .gk-mypage-page-head {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 16px;
    }

    .gk-mypage-page-head .meta {
        text-align: left;
    }

    .gk-mypage-breadcrumb.gk-breadcrumb {
        padding: 12px 16px;
    }

    #gk-board-write .gk-file-box {
        min-height: 96px;
    }

    .gk-shop-write-popup {
        width: 100%;
        border-width: 0 !important;
    }

    .gk-shop-write-popup .gk-popup-head {
        grid-template-columns: minmax(0, 1fr) 46px;
        padding: 22px 16px;
    }

    .gk-shop-write-popup .gk-popup-close {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
        flex-basis: 46px;
    }

    .gk-shop-write-popup .gk-popup-body {
        padding: 18px 16px 0;
    }

    .gk-shop-write-popup .gk-popup-two {
        grid-template-columns: 1fr;
    }

    body.gk-shop-popup-active #sit_use_write_star {
        flex-wrap: wrap;
    }

    body.gk-shop-popup-active #sit_use_write_star label {
        min-height: 34px;
        padding: 0 10px;
        font-size: 10px;
    }

    .gk-shop-write-popup .win_btn {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* GLOW.KIKI gatekeeper: list bottom rhythm must not depend on pagination */
#sct.gk-list-layout #sct_sortlst {
    padding-bottom: 0 !important;
}

#sct.gk-list-layout .gk-list-main {
    padding-bottom: clamp(80px, 6vw, 112px);
}

#sct.gk-list-layout .gk-product-grid {
    margin-bottom: clamp(56px, 5vw, 88px);
}

#sct.gk-list-layout .pg_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

#sct.gk-list-layout .pg_wrap .pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

#sct.gk-list-layout .pg_wrap .pg_page,
#sct.gk-list-layout .pg_wrap .pg_current {
    min-width: 42px;
    height: 42px;
}

#sct.gk-list-layout .pg_wrap .pg_start,
#sct.gk-list-layout .pg_wrap .pg_end,
#sct.gk-list-layout .pg_wrap .pg_prev,
#sct.gk-list-layout .pg_wrap .pg_next {
    display: none !important;
}

#sct.gk-list-layout .pg_wrap .sound_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 767px) {
    #sct.gk-list-layout #sct_sortlst {
        padding-bottom: 0 !important;
    }

    #sct.gk-list-layout .gk-list-main {
        padding-bottom: 88px !important;
    }

    #sct.gk-list-layout .gk-product-grid {
        margin-bottom: 48px;
    }

    #sct.gk-list-layout .pg_wrap .pg_page,
    #sct.gk-list-layout .pg_wrap .pg_current {
        min-width: 38px;
        height: 38px;
    }
}

/* GLOW.KIKI final override: desktop search proportions after legacy blocks */
@media (min-width: 768px) {
    #gk-search #gk-search-detail-form > .gk-search-top {
        padding: 44px 28px 28px !important;
    }

    #gk-search #gk-search-detail-form > .gk-search-top[style] {
        padding: 0 28px 22px !important;
    }

    #gk-search .gk-search-form-row {
        grid-template-columns: minmax(0, 1fr) 180px !important;
        align-items: stretch !important;
        gap: 14px !important;
        width: 100%;
        max-width: none !important;
    }

    #gk-search .gk-search-form-row > div {
        min-width: 0;
    }

    #gk-search #ssch_q {
        height: 72px !important;
        border: 1px solid var(--ink) !important;
        padding: 0 24px !important;
        font-size: 42px !important;
        line-height: 1 !important;
        text-transform: none !important;
    }

    #gk-search .gk-btn-search {
        width: 180px !important;
        height: 72px !important;
        padding: 0 !important;
        background: var(--ink) !important;
        border-color: var(--ink) !important;
        color: #fff !important;
    }

    #gk-search .gk-search-body {
        grid-template-columns: 280px minmax(0, 1fr) !important;
        align-items: start !important;
        border-top: 1px solid var(--line);
        min-height: 520px;
    }

    #gk-search .gk-sidebar {
        min-height: 0 !important;
        padding: 32px 28px 72px !important;
        align-self: start !important;
    }

    #gk-search .gk-results-area {
        min-width: 0;
        padding: 32px 28px 72px !important;
    }

    #gk-search .gk-results-head {
        min-height: 66px;
        margin-bottom: 0 !important;
        padding-bottom: 20px !important;
    }

    #gk-search .gk-results-grid {
        min-height: 360px;
        padding-top: 32px;
    }

    #gk-search .gk-empty {
        display: flex;
        min-height: 300px;
        padding: 72px 28px !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid var(--line);
        background: #fff;
    }

    #gk-search .gk-empty .big {
        font-size: 56px !important;
    }
}

@media (min-width: 1400px) {
    #gk-search #ssch_q {
        height: 78px !important;
        font-size: 52px !important;
    }

    #gk-search .gk-btn-search {
        height: 78px !important;
    }
}

@media (max-width: 767px) {
    #gk-search #gk-search-detail-form > .gk-search-top {
        display: none !important;
    }
}
