@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    --sitmt-ink: #1a1a1a;
    --sitmt-brown: #3f2a1a;
    --sitmt-orange: #f26b1d;
    --sitmt-orange-dark: #d1550f;
    --sitmt-navy: #f26b1d;
    --sitmt-sand: #f7f1e8;
    --sitmt-cream: #ffffff;
    --sitmt-line: #e8e2d6;
    --sitmt-gold: #f26b1d;
    --sitmt-mint: #f7ede2;
    --sitmt-shadow: 0 22px 55px rgba(26, 20, 14, 0.10);
}

html,
body {
    background: #fbf8f3;
    overflow-x: clip;
}

body,
button,
input,
select,
textarea {
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    color: var(--sitmt-ink);
}

img {
    max-width: 100%;
}

body.sitmt-overlay-open {
    overflow: hidden;
}
[hidden] {
    display: none !important;
}

.sitmt-drawer[hidden],
.sitmt-search-panel[hidden] {
    display: none !important;
}

/* ── RESET: override old theme fixed-width rules ─────────────── */
#hd,
#wrapper,
#ft,
#container,
#container_wr,
#ft_wr,
#hd_wrapper,
#hd_pop,
#gnb .gnb_wrap,
#tnb .inner {
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
}

#wrapper {
    background: transparent !important;
    z-index: auto !important;
}

#container {
    min-height: 0 !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
}

#container::after {
    display: none !important;
}
/* ────────────────────────────────────────────────────────────── */

.sitmt-skip {
    position: absolute;
    left: -9999px;
    top: auto;
}

.sitmt-skip:focus {
    left: 16px;
    top: 16px;
    z-index: 2000;
    padding: 12px 16px;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--sitmt-shadow);
}

.sitmt-topband {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    padding: 8px 20px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.sitmt-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: var(--sitmt-orange);
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.sitmt-header__inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 88px;
}

.sitmt-brand {
    display: inline-flex;
    align-items: center;
    max-width: 220px;
}

.sitmt-brand img {
    display: block;
    width: auto;
    max-height: 64px;
    object-fit: contain;
}

.sitmt-nav ul {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sitmt-nav li {
    position: relative;
}

.sitmt-nav li:hover .sitmt-nav__sub {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sitmt-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.sitmt-nav__sub {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--sitmt-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.sitmt-nav__sub a {
    display: block;
    min-height: auto;
    padding: 8px 0;
    font-size: 14px;
}

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

.sitmt-icon-btn,
.sitmt-icon-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.sitmt-icon-btn:hover,
.sitmt-icon-link:hover {
    background: #fff;
    color: var(--sitmt-orange);
}

.sitmt-member-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #111111;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.sitmt-cart-link {
    position: relative;
}

.sitmt-cart-badge {
    position: absolute;
    right: -4px;
    top: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #111111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.sitmt-drawer-toggle {
    display: none;
}

.sitmt-search-panel {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 18px;
}

.sitmt-search-panel form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--sitmt-shadow);
}

.sitmt-search-panel input {
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--sitmt-line);
    border-radius: 14px;
    background: #fffdfa;
}

.sitmt-search-panel button,
.sitmt-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    background: var(--sitmt-ink);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.sitmt-button {
    background: var(--sitmt-orange);
    letter-spacing: 0.02em;
    transition: background 0.2s ease;
}

.sitmt-button:hover {
    background: var(--sitmt-orange-dark);
}

.sitmt-nav a:hover {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.sitmt-drawer {
    position: fixed;
    inset: 0;
    z-index: 1400;
}

.sitmt-drawer__panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(420px, calc(100% - 36px));
    padding: 22px;
    background: #fff;
    box-shadow: var(--sitmt-shadow);
    overflow-y: auto;
    z-index: 2;
}

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

.sitmt-drawer__head img {
    max-width: 180px;
    max-height: 42px;
    object-fit: contain;
}

.sitmt-drawer__nav ul {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.sitmt-drawer__nav > ul > li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(26, 20, 14, 0.08);
}

.sitmt-drawer__nav a {
    color: var(--sitmt-ink);
    text-decoration: none;
    font-weight: 600;
}

.sitmt-drawer__nav li ul {
    margin: 12px 0 0 0;
}

.sitmt-drawer__nav li ul li {
    padding-top: 10px;
}

.sitmt-drawer__nav li ul a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(26, 20, 14, 0.76);
}

.sitmt-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 18, 28, 0.48);
    z-index: 1;
}

.sitmt-wrapper {
    padding-bottom: 48px;
}

.sitmt-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.sitmt-container.is-index {
    width: min(1340px, calc(100% - 32px));
}

.sitmt-subhero {
    width: min(1280px, calc(100% - 32px));
    margin: 24px auto 0;
    padding: 26px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2013 100%);
    color: #fff;
}

.sitmt-subhero__eyebrow {
    color: rgba(255, 255, 255, 0.9);
}
.sitmt-subhero__eyebrow,
.sitmt-eyebrow {
    margin: 0 0 12px;
    color: var(--sitmt-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.sitmt-subhero h1,
.sitmt-slide__content h2,
.sitmt-section h3,
.sitmt-story__copy h3 {
    margin: 0;
    letter-spacing: -0.04em;
}

.sitmt-subhero h1 {
    font-size: clamp(28px, 3vw, 40px);
}

.sitmt-subhero p:last-child {
    margin: 10px 0 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

/* ── Scroll reveal (CONCEPT-style fadeInUp/fadeInDown) ───────── */
@keyframes sitmtFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes sitmtFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

body.sitmt-anim [data-sitmt-reveal] {
    opacity: 0;
}

body.sitmt-anim [data-sitmt-reveal].is-revealed {
    opacity: 1;
}

body.sitmt-anim [data-sitmt-reveal="up"].is-revealed {
    animation: sitmtFadeInUp 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) both;
}

body.sitmt-anim [data-sitmt-reveal="down"].is-revealed {
    animation: sitmtFadeInDown 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) both;
}

@media (prefers-reduced-motion: reduce) {
    body.sitmt-anim [data-sitmt-reveal] {
        opacity: 1;
        animation: none !important;
    }
}

/* ── Hero: full-bleed slider, image fits viewport width ──────── */
.sitmt-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.sitmt-hero__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1680 / 780;
    overflow: hidden;
    background: #111111;
}

.sitmt-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.sitmt-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.sitmt-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sitmt-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        76deg,
        rgba(17, 17, 17, 0.52) 0%,
        rgba(17, 17, 17, 0.22) 42%,
        rgba(17, 17, 17, 0) 70%
    );
}

.sitmt-slide__content {
    position: absolute;
    left: clamp(20px, 6vw, 96px);
    bottom: clamp(46px, 10%, 110px);
    z-index: 1;
    max-width: 560px;
    color: #fff;
}

.sitmt-slide__content .sitmt-eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.sitmt-slide__content h2 {
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: 1.04;
}

.sitmt-slide__content p:last-of-type {
    margin: 16px 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.7;
}

.sitmt-slide.is-active .sitmt-eyebrow {
    animation: sitmtFadeInDown 0.9s ease both 0.15s;
}

.sitmt-slide.is-active h2 {
    animation: sitmtFadeInUp 0.9s ease both 0.3s;
}

.sitmt-slide.is-active p:last-of-type,
.sitmt-slide.is-active .sitmt-button {
    animation: sitmtFadeInUp 0.9s ease both 0.45s;
}

.sitmt-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.18);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.sitmt-hero__arrow:hover {
    background: #fff;
    color: var(--sitmt-ink);
}

.sitmt-hero__arrow--prev {
    left: clamp(14px, 3vw, 40px);
}

.sitmt-hero__arrow--next {
    right: clamp(14px, 3vw, 40px);
}

.sitmt-hero__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sitmt-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.sitmt-dot.is-active {
    width: 34px;
    background: #fff;
}

/* ── Centered section titles (CONCEPT index_title_area) ──────── */
.sitmt-title-area {
    padding: clamp(48px, 7vw, 88px) 20px 30px;
    text-align: center;
}

.sitmt-title-area .sitmt-title-eyebrow {
    margin: 0 0 12px;
    color: var(--sitmt-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.sitmt-title-area h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -0.03em;
}

.sitmt-title-area .sitmt-title-sub {
    display: block;
    margin-top: 12px;
    color: rgba(26, 20, 14, 0.45);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* ── Home sections: flat + compact ───────────────────────────── */
.sitmt-section {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sitmt-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 22px;
}

.sitmt-section__head a {
    color: var(--sitmt-ink);
    font-weight: 700;
    text-decoration: none;
}

.sitmt-section h3 {
    font-size: clamp(28px, 3vw, 40px);
}

.sitmt-more {
    margin-top: 30px;
    text-align: center;
}

.sitmt-more a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 30px;
    border: 1px solid var(--sitmt-ink);
    border-radius: 999px;
    color: var(--sitmt-ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sitmt-more a:hover {
    background: var(--sitmt-ink);
    color: #fff;
}

/* ── Intro highlight cards (3 boxes under hero) ──────────────── */
.sitmt-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(36px, 5vw, 64px);
}

.sitmt-intro-card {
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
    border: 1px solid var(--sitmt-line);
    border-radius: 10px;
    background: #fff;
}

.sitmt-intro-card__image {
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

.sitmt-intro-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.sitmt-intro-card:hover .sitmt-intro-card__image img {
    transform: scale(1.06);
}

.sitmt-intro-card__text {
    flex: 1;
    padding: 20px 22px 24px;
}

.sitmt-intro-card__text h3 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.sitmt-intro-card__text p {
    margin: 0 0 14px;
    color: rgba(26, 20, 14, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.sitmt-intro-card__text a {
    color: var(--sitmt-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--sitmt-orange);
    padding-bottom: 2px;
}

/* ── Story band (legacy home markup) ─────────────────────────── */
.sitmt-story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
    margin: clamp(36px, 5vw, 64px) 0;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--sitmt-line);
    border-radius: 10px;
    background: #fff;
}

.sitmt-story__copy .sitmt-eyebrow {
    color: var(--sitmt-orange);
}

.sitmt-story__copy h3 {
    margin: 0 0 12px;
    font-size: clamp(24px, 2.6vw, 34px);
    letter-spacing: -0.02em;
}

.sitmt-story__copy p:last-child {
    margin: 0;
    color: rgba(26, 20, 14, 0.72);
    line-height: 1.8;
}

.sitmt-story__points {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sitmt-story__points li {
    position: relative;
    padding-left: 20px;
    color: rgba(26, 20, 14, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.sitmt-story__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sitmt-orange);
}

.sitmt-section + .sitmt-section {
    margin-top: clamp(48px, 7vw, 88px);
}

/* ── Category banners (CONCEPT banner_area) ──────────────────── */
.sitmt-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sitmt-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 5 / 6;
    text-decoration: none;
}

.sitmt-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.sitmt-banner:hover img {
    transform: scale(1.06);
}

.sitmt-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 46%, rgba(17, 17, 17, 0.62) 100%);
}

.sitmt-banner__label {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    color: #fff;
}

.sitmt-banner__label .sitmt-eyebrow {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.sitmt-banner__label strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.sitmt-banner__label span {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 3px;
}

/* ── Parallax band (CONCEPT parallax-container) ──────────────── */
.sitmt-parallax {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.sitmt-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.5);
}

.sitmt-parallax__inner {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
    padding: clamp(72px, 10vw, 130px) 24px;
    color: #fff;
    text-align: center;
}

.sitmt-parallax__inner .sitmt-eyebrow {
    color: var(--sitmt-orange);
}

.sitmt-parallax__inner h3 {
    margin: 0;
    font-size: clamp(26px, 3.4vw, 44px);
    letter-spacing: -0.02em;
}

.sitmt-parallax__inner p {
    margin: 16px auto 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

/* ── Brand points strip ──────────────────────────────────────── */
.sitmt-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 30px 0;
    border-top: 1px solid var(--sitmt-line);
    border-bottom: 1px solid var(--sitmt-line);
    list-style: none;
}

.sitmt-points li {
    position: relative;
    padding-left: 20px;
    color: rgba(26, 20, 14, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.sitmt-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sitmt-orange);
}

/* ── Product cards: compact CONCEPT grid ─────────────────────── */
.sct.sct_10 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sct_li {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.sct_img {
    position: relative;
    padding: 0;
    border: 1px solid var(--sitmt-orange);
    border-radius: 10px 10px 0 0;
    background: #fff;
    overflow: hidden;
}

.sct_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 9px 9px 0 0;
    transition: transform 0.6s ease;
}

.sct_li:hover .sct_img img {
    transform: scale(1.05);
}

.sct_ct_wrap {
    padding: 14px 4px 0;
    text-align: center;
}

.sct_txt a,
.sct_txt {
    color: var(--sitmt-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.sct_basic {
    display: none;
}

.sct_bottom {
    display: grid;
    gap: 6px;
    margin-top: 8px;
}

.sct_cost {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    color: var(--sitmt-ink);
    font-size: 16px;
    font-weight: 700;
}

.sct_dict {
    color: rgba(26, 20, 14, 0.36);
    font-size: 13px;
    text-decoration: line-through;
}

.sct_btn,
.sct_op_btn,
.cart-layer,
.sit_icon_li {
    display: none !important;
}

.sct_noitem {
    margin: 0;
    padding: 42px 18px;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    color: rgba(26, 20, 14, 0.6);
}

#sit_ov_wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

#sit_pvi,
#sit_ov,
#sit_rel,
#sit_info {
    border-radius: 28px;
}

#sit_pvi_big,
#sit_ov,
#sit_rel,
#sit_info {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--sitmt-shadow);
}

#sit_pvi_big {
    padding: 18px;
    float: none;
    position: relative;
    text-align: center;
}

#sit_pvi {
    float: none;
}

/* spv gallery: show active slide image (override skin's display:none) */
#sit_pvi_big .spv-main {
    position: relative;
}

#sit_pvi_big .spv-slide {
    display: none;
}

#sit_pvi_big .spv-slide.active {
    display: block;
}

#sit_pvi_big a.spv-img-link {
    display: block;
}

#sit_pvi_big a.spv-zoom {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 26px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sitmt-ink);
    box-shadow: 0 6px 18px rgba(26, 20, 14, 0.16);
    z-index: 3;
}

#sit_pvi_big .spv-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sitmt-ink);
    box-shadow: 0 6px 18px rgba(26, 20, 14, 0.16);
    cursor: pointer;
    z-index: 3;
}

#sit_pvi_big .spv-prev {
    left: 26px;
}

#sit_pvi_big .spv-next {
    right: 26px;
}

#sit_pvi_big .spv-counter {
    position: absolute;
    left: 26px;
    bottom: 26px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(26, 20, 14, 0.72);
    color: #fff;
    font-size: 12px;
    z-index: 3;
}

#sit_pvi_big img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.spv-thumbs {
    list-style: none;
}

.spv-thumb-btn {
    width: 100%;
    padding: 0;
    border: 1px solid var(--sitmt-line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.spv-thumb-item.selected .spv-thumb-btn {
    border-color: var(--sitmt-orange);
}

.spv-thumb-btn img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 13px;
}

#sit_pvi_thumb {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}

#sit_pvi_thumb li {
    width: auto;
    margin: 0;
}

#sit_pvi_thumb img {
    border-radius: 14px;
}

#sit_ov {
    padding: 26px;
}

#sit_title {
    font-size: clamp(30px, 3vw, 42px);
}

#sit_desc {
    margin-top: 14px;
    color: rgba(26, 20, 14, 0.74);
    line-height: 1.8;
}

.sit_info,
.sit_option,
#sit_sel_option {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: #f9f5ee;
}

.sit_ov_tbl th,
.sit_ov_tbl td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 20, 14, 0.08);
}

.tr_price strong {
    font-size: 28px;
}

#sit_info {
    margin-top: 28px;
    padding: 28px;
}

#sit_tab .tab_tit {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

#sit_tab .tab_tit button {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(26, 20, 14, 0.1);
    border-radius: 999px;
    background: #f6f2ea;
    color: var(--sitmt-ink);
    font-weight: 700;
}

#sit_tab .tab_tit button.selected {
    background: var(--sitmt-ink);
    color: #fff;
}

#sit_inf_explan {
    line-height: 1.8;
    text-align: center;
}

.sit_buy.fix {
    margin-top: 24px;
    position: static;
}

.sum_section {
    padding-top: 16px;
}

.sit_order_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sit_btn_cart,
.sit_btn_buy {
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    font-weight: 700;
}

.sit_btn_cart {
    background: #ece7de;
    color: var(--sitmt-ink);
}

.sit_btn_buy {
    background: var(--sitmt-orange);
    color: #fff;
}

.sitmt-footer {
    margin-top: 36px;
    padding: 30px 0 40px;
}

.sitmt-footer__top {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.95fr;
    gap: 0;
    padding: 40px 44px;
    border-radius: 24px;
    background: var(--sitmt-orange);
    color: rgba(26, 20, 14, 0.88);
    box-shadow: inset 0 0 0 1px rgba(26, 20, 14, 0.16);
}

.sitmt-footer__brand,
.sitmt-footer__links,
.sitmt-footer__info {
    padding: 0 28px;
}

.sitmt-footer__brand {
    padding-left: 0;
}

.sitmt-footer__info {
    padding-right: 0;
}

.sitmt-footer__links,
.sitmt-footer__info {
    border-left: 1px solid rgba(26, 20, 14, 0.18);
}

.sitmt-footer__brand img {
    max-width: 190px;
    margin-bottom: 16px;
    filter: none;
}

.sitmt-footer__brand p {
    color: rgba(26, 20, 14, 0.78);
    font-size: 13px;
    line-height: 1.75;
}

.sitmt-footer__links,
.sitmt-footer__info {
    display: grid;
    gap: 12px;
    align-content: start;
}

.sitmt-footer__links a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.sitmt-footer__links a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sitmt-footer__info strong {
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.sitmt-footer__info span {
    color: rgba(26, 20, 14, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

.sitmt-footer__bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 18px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: rgba(26, 20, 14, 0.6);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.sitmt-top-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--sitmt-ink);
    color: #fff;
}

@media (max-width: 1100px) {
    .sitmt-nav {
        display: none;
    }

    .sitmt-drawer-toggle {
        display: inline-flex;
    }

    .sitmt-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .sct.sct_10,
    .sitmt-points,
    .sitmt-footer__top,
    #sit_ov_wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sitmt-parallax {
        background-attachment: scroll;
    }

    .sitmt-footer__top {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 32px 28px;
    }

    .sitmt-footer__brand,
    .sitmt-footer__links,
    .sitmt-footer__info {
        padding: 0;
        border-left: 0;
    }

    .sitmt-footer__links,
    .sitmt-footer__info {
        padding-top: 22px;
        border-top: 1px solid rgba(26, 20, 14, 0.18);
    }
}

@media (max-width: 767px) {
    .sitmt-topband {
        letter-spacing: 0.16em;
        font-size: 11px;
    }

    .sitmt-header__inner,
    .sitmt-container,
    .sitmt-container.is-index,
    .sitmt-subhero,
    .sitmt-search-panel,
    .sitmt-footer__top,
    .sitmt-footer__bottom {
        width: min(100% - 20px, 100%);
    }

    .sitmt-header__inner {
        gap: 12px;
        min-height: 74px;
    }

    .sitmt-brand {
        max-width: 160px;
    }

    .sitmt-member-link {
        display: none;
    }

    .sitmt-search-panel form,
    .sitmt-points,
    .sitmt-footer__top,
    #sit_ov_wrap,
    #sit_tab .tab_tit {
        grid-template-columns: 1fr;
    }

    .sct.sct_10 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
    }

    .sitmt-banner-grid,
    .sitmt-intro-grid,
    .sitmt-story {
        grid-template-columns: 1fr;
    }

    .sitmt-hero__viewport {
        aspect-ratio: 1680 / 780;
        min-height: 0;
        max-height: none;
    }

    .sitmt-slide__content {
        left: 16px;
        right: 16px;
        bottom: 22px;
    }

    .sitmt-slide__content .sitmt-eyebrow {
        margin-bottom: 4px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .sitmt-slide__content h2 {
        font-size: 20px;
    }

    .sitmt-slide__content p:last-of-type {
        display: none;
    }

    .sitmt-slide__content .sitmt-button {
        margin-top: 10px;
        min-height: 34px;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 12px;
    }

    .sitmt-hero__dots {
        bottom: 8px;
    }

    .sitmt-hero__arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    #sit_ov,
    #sit_info {
        padding: 22px 18px;
    }

    .sitmt-section__head,
    .sitmt-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

.tr_price strong {
    font-size: 22px;
}
}

@media (max-width: 520px) {
    .sitmt-hero__arrow {
        display: none;
    }
}

#sit_inf_explan img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* ── Hermès product detail (it_explan) ─────────────────────── */
.ha-detail {
    max-width: 860px;
    margin: 0 auto;
    color: var(--sitmt-ink);
}

.ha-detail .ha-eyebrow {
    margin: 0 0 8px;
    color: var(--sitmt-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.ha-detail .ha-title {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* 스킨의 #sit_inf h3 {font-size:0} 숨김 규칙보다 우선해 상세 타이틀 노출 */
#sit_inf_explan .ha-title {
    position: static;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
}

.ha-detail .ha-lead {
    margin: 0 0 26px;
    color: rgba(26, 20, 14, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.ha-detail img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 16px;
    border-radius: 18px;
}

.ha-detail .ha-feats {
    display: grid;
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.ha-detail .ha-feats li {
    position: relative;
    padding: 0;
    line-height: 1.7;
    text-align: center;
}

.ha-detail .ha-feats li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--sitmt-orange);
    vertical-align: middle;
}

.ha-detail .ha-spec {
    width: 100%;
    max-width: 640px;
    margin: 24px auto;
    border-top: 2px solid var(--sitmt-ink);
    border-collapse: collapse;
}

.ha-detail .ha-spec th,
.ha-detail .ha-spec td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--sitmt-line);
    font-size: 15px;
    text-align: left;
    vertical-align: top;
}

.ha-detail .ha-spec th {
    width: 130px;
    color: rgba(26, 20, 14, 0.6);
    font-weight: 700;
    white-space: nowrap;
}

.ha-detail .ha-note {
    margin: 20px 0 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f7ede2;
    color: var(--sitmt-orange-dark);
    font-size: 14px;
    line-height: 1.6;
}

.sitmt-detail {
    display: grid;
    gap: 24px;
}

.sitmt-detail__hero img {
    border-radius: 28px;
    box-shadow: var(--sitmt-shadow);
}

.sitmt-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.sitmt-detail__copy,
.sitmt-detail__spec {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--sitmt-shadow);
}

.sitmt-detail__copy h4,
.sitmt-detail__spec h5 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
}

.sitmt-detail__copy p,
.sitmt-detail__spec p {
    margin: 0;
    line-height: 1.7;
}

.sitmt-detail__eyebrow {
    margin-bottom: 12px;
    color: var(--sitmt-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.sitmt-detail__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.sitmt-detail__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(24, 54, 75, 0.08);
    color: var(--sitmt-ink);
    font-size: 13px;
    font-weight: 600;
}

.sitmt-detail__bullets {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.sitmt-detail__bullets li {
    position: relative;
    padding-left: 18px;
    line-height: 1.65;
}

.sitmt-detail__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sitmt-gold);
}

.sitmt-detail__spec dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px 16px;
    margin: 18px 0 0;
}

.sitmt-detail__spec dt {
    color: rgba(26, 20, 14, 0.58);
    font-weight: 700;
}

.sitmt-detail__spec dd {
    margin: 0;
    color: var(--sitmt-ink);
}

@media (max-width: 768px) {
    .sitmt-detail__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CONCEPT SKIN BENCHMARK OVERRIDES  (ref: cafe24 CONCEPT demo)
   refined typography · reliable menu rollover · flat centered PDP
   ═══════════════════════════════════════════════════════════════ */

/* ── Header nav: spacing + rollover that survives the mouse gap ── */
.sitmt-nav { align-self: stretch; }
.sitmt-nav > ul {
    height: 100%;
    align-items: stretch;
    gap: 34px;
}
.sitmt-nav > ul > li {
    display: flex;
    align-items: center;
    position: relative;
}
.sitmt-nav > ul > li > a {
    min-height: auto;
    padding: 6px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.sitmt-nav > ul > li > a:hover { color: #fff; opacity: 0.72; }

/* dropdown attaches to header bottom (no dead gap) + short hold on exit */
.sitmt-nav__sub {
    top: 100%;
    left: 50%;
    min-width: 172px;
    padding: 10px 6px;
    border-radius: 0;
    background: #fff;
    border: 1px solid rgba(26, 20, 14, 0.12);
    box-shadow: 0 16px 34px rgba(26, 20, 14, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.25s;
}
.sitmt-nav > ul > li:hover .sitmt-nav__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}
.sitmt-nav__sub a {
    display: block;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(26, 20, 14, 0.82);
    white-space: nowrap;
    text-align: center;
}
.sitmt-nav__sub a:hover { color: var(--sitmt-orange); }

/* ── PRODUCT DETAIL: flat, centered, benchmarked ──────────────── */
#sit_ov_wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 54px;
    max-width: 1160px;
    margin: 44px auto 0;
    align-items: start;
}
#sit_pvi, #sit_ov, #sit_rel, #sit_info { border-radius: 0; }
#sit_pvi_big, #sit_ov, #sit_rel { background: none; box-shadow: none; }
#sit_pvi_big { padding: 0; background: #f5f2ec; overflow: hidden; }
#sit_pvi_big img { border-radius: 0; }
#sit_pvi_big a.spv-zoom, #sit_pvi_big .spv-btn { border-radius: 0; box-shadow: none; }
#sit_pvi_thumb { grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 10px; }
.spv-thumb-btn, .spv-thumb-btn img { border-radius: 0; }
.spv-thumb-item.selected .spv-thumb-btn { border-color: var(--sitmt-ink); }

#sit_ov { padding: 2px 0 0; }
#sit_title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}
#sit_desc {
    margin-top: 12px;
    color: rgba(26, 20, 14, 0.58);
    font-size: 14px;
    line-height: 1.75;
}
#sit_star_sns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    padding: 14px 0;
    border-top: 1px solid var(--sitmt-line);
    border-bottom: 1px solid var(--sitmt-line);
    font-size: 13px;
    color: rgba(26, 20, 14, 0.55);
}

.sit_price_box { margin: 22px 0 0; }
.sit_cust_price { margin: 0; color: rgba(26, 20, 14, 0.4); font-size: 14px; }
.sit_cust_price s { text-decoration: line-through; }
.sit_price_label {
    margin: 8px 0 2px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26, 20, 14, 0.5);
}
.sit_price_val { margin: 0; }
.sit_price_val strong { font-size: 30px; font-weight: 700; letter-spacing: -0.01em; }
.sit_shipping_note { margin: 14px 0 0; font-size: 13px; color: rgba(26, 20, 14, 0.6); }
.sit_price_state { font-size: 20px; font-weight: 700; color: var(--sitmt-orange); }

.sit_option, #sit_sel_option, .sit_info {
    margin-top: 20px;
    padding: 18px;
    border-radius: 0;
    border: 1px solid var(--sitmt-line);
    background: #fff;
}
.sit_option h3, #sit_sel_option h3 {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 20, 14, 0.5);
}
.sit_opt_list { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.opt_name { flex: 1 1 100%; font-size: 14px; }
.opt_count { display: flex; align-items: center; gap: 6px; }
.sit_qty_minus, .sit_qty_plus {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--sitmt-line); background: #fff; color: var(--sitmt-ink); cursor: pointer;
}
.num_input { width: 48px; height: 34px; text-align: center; border: 1px solid var(--sitmt-line); }
.sit_opt_prc { margin-left: auto; font-weight: 600; }

#sit_tot_price { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--sitmt-ink); }

#sit_ov_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}
#sit_ov_btn .sit_btn_buy {
    order: -1; grid-column: 1 / -1;
    min-height: 58px; border: 0; border-radius: 0;
    background: #1a1a1a; color: #fff;
    font-size: 15px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
    transition: background 0.2s ease;
}
#sit_ov_btn .sit_btn_buy:hover { background: #000; }
#sit_ov_btn .sit_btn_cart {
    min-height: 54px; border: 1px solid var(--sitmt-ink); border-radius: 0;
    background: #fff; color: var(--sitmt-ink); font-weight: 600; cursor: pointer;
}
#sit_ov_btn .sit_btn_cart:hover { background: var(--sitmt-sand); }
#sit_ov_btn .sit_btn_wish {
    min-height: 54px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--sitmt-line); border-radius: 0;
    background: #fff; color: var(--sitmt-ink); text-decoration: none;
}
#sit_ov_btn .sit_btn_wish:hover { border-color: var(--sitmt-ink); }

/* spec table — centered, flat */
#sit_item_spec { max-width: 1160px; margin: 52px auto 0; }
.sit_spec_title {
    margin: 0 0 16px;
    font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(26, 20, 14, 0.5); text-align: center;
}
.sit_spec_tbl { width: 100%; border-collapse: collapse; border-top: 2px solid var(--sitmt-ink); }
.sit_spec_tbl th, .sit_spec_tbl td {
    padding: 15px 14px; border-bottom: 1px solid var(--sitmt-line);
    font-size: 14px; text-align: left; vertical-align: top;
}
.sit_spec_tbl th { width: 160px; color: rgba(26, 20, 14, 0.55); font-weight: 600; }

#sit_siblings { max-width: 1160px; margin: 16px auto 0; }

/* info tabs — flat underline, centered */
#sit_info {
    max-width: 1160px; margin: 60px auto 0; padding: 40px 0 0;
    background: none; box-shadow: none; border-top: 1px solid var(--sitmt-line);
}
#sit_tab .tab_tit {
    display: flex; justify-content: center; gap: 0;
    margin: 0 0 32px; border-bottom: 1px solid var(--sitmt-line);
    grid-template-columns: none;
}
#sit_tab .tab_tit button {
    width: auto; min-height: 54px; padding: 0 28px;
    border: 0; border-bottom: 2px solid transparent; border-radius: 0;
    background: none; color: rgba(26, 20, 14, 0.45);
    font-size: 15px; font-weight: 600; cursor: pointer;
}
#sit_tab .tab_tit button.selected {
    background: none; color: var(--sitmt-ink); border-bottom-color: var(--sitmt-ink);
}

@media (max-width: 900px) {
    #sit_ov_wrap { grid-template-columns: 1fr; gap: 26px; margin-top: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL: centered column (all pages) · responsive · heavy reveal
   Fixes "밀려있는": #container reset killed .sitmt-container max-width,
   so default youngcart pages (cart/board/order/mypage…) went edge-to-edge.
   ═══════════════════════════════════════════════════════════════ */
#container.sitmt-container {
    width: auto !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}
#container.sitmt-container.is-index { max-width: 1340px !important; }

/* full-bleed sections still break out of the centered column */
.sitmt-hero, .sitmt-parallax { max-width: none !important; }

/* media & tables never cause horizontal overflow */
#container img, #container video, #container table { max-width: 100%; }
#container img { height: auto; }
@media (max-width: 820px) {
    #container .tbl_wrap,
    #container .tbl_head01,
    #container .cart_wrap,
    #container .sod_list,
    #container .scroll_wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── site-wide scroll reveal (driven by js/sitmt-anim.js) ─────── */
html.sitmt-js .sitmt-rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
html.sitmt-js .sitmt-rv.sitmt-rv--left { transform: translateX(-40px); }
html.sitmt-js .sitmt-rv.sitmt-rv--right { transform: translateX(40px); }
html.sitmt-js .sitmt-rv.sitmt-rv--zoom { transform: scale(0.9); }
html.sitmt-js .sitmt-rv.is-in { opacity: 1; transform: none; }

/* page-load motion for header band + sub-hero */
html.sitmt-js .sitmt-subhero { animation: sitmtDrop 0.9s cubic-bezier(0.22,0.61,0.36,1) both; }
@keyframes sitmtDrop { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
html.sitmt-js .sitmt-topband { animation: sitmtFade 1.1s ease both; }
@keyframes sitmtFade { from { opacity: 0; } to { opacity: 1; } }

/* extra hover micro-motion */
.sct_li, .sitmt-banner, .ha-detail img, #sit_pvi_big img { transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ha-detail img:hover, #sit_pvi_big img:hover { transform: scale(1.015); }

@media (prefers-reduced-motion: reduce) {
    html.sitmt-js .sitmt-rv { opacity: 1 !important; transform: none !important; transition: none !important; }
    html.sitmt-js .sitmt-subhero, html.sitmt-js .sitmt-topband { animation: none !important; }
}

/* ============================================================
   HERMÈS AMENITY — 전역 오렌지 오버라이드
   그누보드 기본 파랑(#3a8afd) 버튼·강조 → 오렌지 컨셉 (모바일+PC)
   ============================================================ */
.btn_submit, button.btn_submit, a.btn_submit, input.btn_submit,
.btn_b01, a.btn_b01, #sit_btn_buy, .btn_cart_op,
#display_pay_button .btn_submit, #sod_bsk_act .btn_submit, #sod_frm .btn_submit{
  background:#f26b1d !important; border-color:#f26b1d !important; color:#fff !important;
}
.btn_submit:hover, .btn_b01:hover, #sit_btn_buy:hover{ background:#d1550f !important; border-color:#d1550f !important; }
.btn_frmline, a.btn_frmline, button.btn_frmline, .cp_btn, .cp_btn1, .cp_apply{
  border-color:#f26b1d !important; color:#f26b1d !important; background:#fff !important;
}
.pg_current{ background:#f26b1d !important; border-color:#f26b1d !important; }
.new_win .win_ul .selected{ background:#f26b1d !important; border-color:#f26b1d !important; }
.fix_btn{ background:#f26b1d !important; }
/* 가격·포인트·수량 등 파랑 강조 → 오렌지 */
.sod_list .total_price strong, #m_sod_bsk_tot .sod_bsk_cnt strong,
#smb_my_ov .win_point strong, #smb_my_ov .my_name a.smb_info,
#sod_inquiry li .inquiry_price, #scp_list .cou_pri, .new_win .win_total,
.form_01 .frm_info, .sod_list .total_price strong{ color:#d1550f !important; }
/* 상태 뱃지 */
.status_05{ background:#f26b1d !important; }
.status_04, .sod_opt li:before, .sod_opt .opt_name:before{ background:#fbe7d8 !important; color:#d1550f !important; }
/* 배송지 라벨 */
#sod_addr .add_lb{ border-color:#f26b1d !important; color:#f26b1d !important; }
#sod_addr input[type="radio"]:checked + .add_lb{ background:#f26b1d !important; color:#fff !important; }

/* ═══════════════ HERMÈS AMENITY — 2026-08-07 요청 수정 ═══════════════ */

/* ── ① 상품 썸네일 번호 배지 (좌측 상단, 주황 70%) ── */
.sct_img,
.sct_10 .sct_img,
.li_wr .sct_img { position: relative; }

.sitmt-num {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(242, 107, 29, 0.7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    pointer-events: none;
}

@media (max-width: 640px) {
    .sitmt-num {
        top: 8px;
        left: 8px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* ── ② 드로어 하단 링크(주문조회·1:1문의·FAQ) 제거에 따른 마무리 ── */
.sitmt-drawer__nav > ul > li:last-child { border-bottom: 0; }

/* ── ③ 브랜드 소개 페이지 정품인증서 ── */
.sitmt-cert {
    margin: 40px auto 8px;
    padding-top: 32px;
    border-top: 1px solid var(--sitmt-line);
    text-align: center;
}

.sitmt-cert__label {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26, 20, 14, 0.5);
}

.sitmt-cert img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .sitmt-cert { margin-top: 28px; padding-top: 24px; }
    .sitmt-cert img { max-width: 100%; }
}

/* ═══════════ HERMÈS AMENITY — 2026-08-07 2차 요청 ═══════════ */

/* ── ④ 이전/다음 상품 박스: 흰 배경 → 테마 톤 ── */
#sit_siblings {
    background: var(--sitmt-sand);
    border: 1px solid var(--sitmt-line);
    border-radius: 12px;
}
#sit_siblings a { color: var(--sitmt-brown); text-decoration: none; }
#sit_siblings a:hover { color: var(--sitmt-orange-dark); }

/* ── ⑤ 모바일 상품상세: 대표이미지 아래 구매/장바구니 버튼 (위아래 배치) ── */
.sitmt-quickbuy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 14px 12px 2px;
}
.sitmt-quickbuy input {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.sitmt-quickbuy__buy {
    border: 0;
    background: var(--sitmt-orange);
    color: #fff;
}
.sitmt-quickbuy__buy:active { background: var(--sitmt-orange-dark); }
.sitmt-quickbuy__cart {
    border: 1px solid var(--sitmt-orange);
    background: #fff;
    color: var(--sitmt-orange);
}
.sitmt-quickbuy__cart:active { background: var(--sitmt-mint); }

/* ── ⑥ 모바일 옵션 패널: 장바구니·바로구매 위아래 배치 ── */
/* #btn_option 은 모바일 스킨에만 존재하므로 PC에는 영향 없음 */
#btn_option #sit_ov_btn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
}
#btn_option #sit_ov_btn input {
    width: 100%;
    min-height: 52px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none;
}

/* ── ⑦ 고정 하단 구매바에 본문이 가려지는 문제(안내 문구 겹침) 해소 ── */
body:has(.btn_option_wr) #wrapper { padding-bottom: 96px; }
body:has(.btn_option_wr) .sitmt-footer { margin-bottom: 84px; }
#sit_rel { margin-bottom: 12px; }

/* ═══════════ HERMÈS AMENITY — 2026-08-07 3차 요청 ═══════════ */

/* ① 상품 상세 대표이미지 번호 배지 */
#sit_pvi { position: relative; }
#sit_pvi > .sitmt-num { top: 14px; left: 14px; z-index: 20; }

/* ② 모바일 구매/장바구니 버튼 — 둘 다 주황, 좌우 폭 정렬 */
.sitmt-quickbuy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 10px 6px;
}
.sitmt-quickbuy input {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: var(--sitmt-orange);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.sitmt-quickbuy input:active { background: var(--sitmt-orange-dark); }
.sitmt-quickbuy__cart { background: var(--sitmt-orange-dark) !important; }

/* ④ 관련상품 박스 제거 (PC·모바일) */
#sit_rel { display: none !important; }

/* ⑤ 이전/다음 상품 박스 */
#sit_siblings {
    background: var(--sitmt-sand);
    border: 1px solid var(--sitmt-line);
    border-radius: 12px;
    overflow: hidden;
}
#sit_siblings a { color: var(--sitmt-brown); text-decoration: none; }
#sit_siblings a:hover { color: var(--sitmt-orange-dark); }

/* ⑥ 탭이 하나뿐일 때 제목이 줄바꿈되지 않도록 (모바일: 상품정보 1개) */
#sit_tab .tab_tit li:only-child { width: 100%; }
#sit_tab .tab_tit li:only-child button {
    width: 100%;
    white-space: nowrap;
    font-size: 15px;
}

/* ⑦ 모바일 옵션 패널 — 스크롤 없이 수량·버튼이 한눈에 */
#btn_option {
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#btn_option .sl_option {
    max-height: none;
    overflow: visible;
    padding: 14px 12px 16px;
}
#btn_option #sit_sel_option { max-height: 34vh; overflow-y: auto; }
#btn_option #sit_tot_price { margin: 10px 0 0; padding-top: 12px; }
#btn_option #sit_ov_btn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
}
#btn_option #sit_ov_btn input {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--sitmt-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none;
}
#btn_option #sit_ov_btn #sit_btn_cart { background: var(--sitmt-orange-dark); }

/* ③ 하단 고정 구매바가 본문(정품 안내 문구)을 덮던 문제의 근본 원인 수정
   ─ 스크롤 리빌의 will-change:transform 이 position:fixed 자식의 기준 박스를
     만들어, 구매바가 뷰포트가 아니라 <form> 기준으로 배치되고 있었음 */
html.sitmt-js .sitmt-rv.is-in { will-change: auto; }
html.sitmt-js form[name="fitem"].sitmt-rv,
html.sitmt-js form[name="fitem"] {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
    transition: none !important;
}

/* ⑥-2 탭 밑줄을 테마 오렌지로 (기본 스킨의 파란색 제거) */
#sit_tab .tab_tit li .selected { color: var(--sitmt-orange-dark); }
#sit_tab .tab_tit li .selected:before { background: var(--sitmt-orange); }

/* 2026-08-07 요청: 모바일 드로어 상단 로고 → 메인으로 이동 */
.sitmt-drawer__logo { display: inline-flex; align-items: center; max-width: 180px; }
.sitmt-drawer__logo img { display: block; max-width: 100%; max-height: 42px; object-fit: contain; }

/* 드로어 닫기 버튼이 흰 패널 위에서 흰색이라 보이지 않던 문제 (헤더용 스타일이 그대로 상속됨) */
.sitmt-drawer__head .sitmt-drawer-close {
    color: var(--sitmt-ink);
    border-color: rgba(26, 20, 14, 0.22);
}
.sitmt-drawer__head .sitmt-drawer-close:hover {
    background: var(--sitmt-orange);
    border-color: var(--sitmt-orange);
    color: #fff;
}

/* 2026-08-07 요청: 상품 목록 제목 칸 높이 통일 + 한글 어절 단위 줄바꿈
   ─ 기존에는 제목이 1줄/2줄로 달라져 카드 높이가 들쭉날쭉했고,
     한글이 글자 단위로 쪼개져 줄바꿈되어 읽기 나빴다. */
.sct_10 .sct_txt {
    word-break: keep-all;         /* 한글은 어절(띄어쓰기) 단위로만 줄바꿈 */
    overflow-wrap: break-word;    /* 한 어절이 칸보다 길면 그때만 분리 */
}
.sct_10 .sct_txt a {
    display: -webkit-box;
    -webkit-line-clamp: 2;        /* 두 줄 초과 시 말줄임 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 글자가 한 줄이든 두 줄이든 항상 두 줄 높이를 차지 → 카드 높이 통일 */
    line-height: 1.5;
    height: 3em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 모바일에서는 제목 글자를 살짝 줄여 가장 긴 상품명(…바디로션 200ml)까지
   두 줄 안에 말줄임 없이 들어가게 한다. PC 는 폭이 넉넉해 그대로 둔다. */
@media (max-width: 767px) {
    .sct_10 .sct_txt,
    .sct_10 .sct_txt a { font-size: 12.5px; }
}

/* 2026-08-07 요청: 매장 위치 페이지 (/location.php) */
.sitmt-store {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 1160px;
    margin: 0 auto;
    padding: 8px 0 48px;
}
.sitmt-store__map {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--sitmt-line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--sitmt-sand);
}
.sitmt-store__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.sitmt-store__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sitmt-orange);
}
.sitmt-store__info h2 {
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    word-break: keep-all;
}
.sitmt-store__dl { margin: 0 0 24px; }
.sitmt-store__dl dt {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(26, 20, 14, 0.5);
}
.sitmt-store__dl dd {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
}
.sitmt-store__sub { color: rgba(26, 20, 14, 0.62); font-size: 15px; }
.sitmt-store__copy {
    display: inline-block;
    margin: 12px 0 0;
    padding: 8px 14px;
    border: 1px solid var(--sitmt-orange);
    border-radius: 6px;
    background: #fff;
    color: var(--sitmt-orange);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.sitmt-store__copy:hover { background: var(--sitmt-mint); }
.sitmt-store__links {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}
.sitmt-store__links a {
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--sitmt-line);
    border-radius: 8px;
    background: #fff;
    color: var(--sitmt-ink);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}
.sitmt-store__links a:hover { border-color: var(--sitmt-orange); color: var(--sitmt-orange-dark); }
.sitmt-store__note {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(26, 20, 14, 0.55);
    word-break: keep-all;
}
.sitmt-store__note a { color: var(--sitmt-orange-dark); }

@media (max-width: 900px) {
    .sitmt-store {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 4px 14px 36px;
    }
    .sitmt-store__map { aspect-ratio: 1 / 1; }
    .sitmt-store__info h2 { font-size: 20px; }
}

/* 2026-08-07 요청: 푸터에서 로고·소개문·링크를 제거해 사업자 정보 한 블록만 남음
   ─ 기존 3열 그리드를 1열로 바꿔 남은 블록이 폭을 온전히 쓰도록 한다. */
.sitmt-footer__top { grid-template-columns: 1fr; }
.sitmt-footer__top .sitmt-footer__info { padding: 0; }
@media (max-width: 900px) {
    .sitmt-footer__top { padding: 28px 22px; }
}

/* 2026-08-08: 비활성 슬라이드가 opacity:0 인 채로 클릭·포커스를 가로채던 문제
   ─ 자동 전환 중 커서 아래 슬라이드가 바뀌면 엉뚱한 버튼이 눌렸다. */
.sitmt-slide { pointer-events: none; }
.sitmt-slide.is-active { pointer-events: auto; }

/* 전체 상품 페이지 */
.sitmt-allitems { max-width: 1160px; margin: 0 auto; padding: 0 0 48px; }
@media (max-width: 900px) { .sitmt-allitems { padding: 0 0 32px; } }

/* 2026-08-08 요청: 회원가입 — 초대 회원제(프라이빗 클럽) 안내 + 일반회원 가입 버튼 */
.sitmt-invite {
    max-width: 640px;
    margin: 8px auto 32px;
    padding: 40px 32px 34px;
    border: 1px solid var(--sitmt-line);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfa 0%, var(--sitmt-sand) 100%);
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 20, 14, 0.06);
}
.sitmt-invite__eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sitmt-orange);
}
.sitmt-invite__title {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--sitmt-ink);
    word-break: keep-all;
}
.sitmt-invite__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(26, 20, 14, 0.66);
    word-break: keep-all;
}
.sitmt-invite__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 20px;
    color: rgba(26, 20, 14, 0.38);
    font-size: 12px;
    letter-spacing: 0.08em;
}
.sitmt-invite__divider::before,
.sitmt-invite__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--sitmt-line);
}
.sitmt-invite__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: var(--sitmt-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.sitmt-invite__btn:hover { background: var(--sitmt-orange-dark); }
.sitmt-invite__note {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(26, 20, 14, 0.5);
    word-break: keep-all;
}
/* 버튼을 누르기 전에는 가입 폼을 감춘다 (JS 미사용 시 noscript 로 해제) */
body.sitmt-join-gate #fregister { display: none; }

@media (max-width: 640px) {
    .sitmt-invite { margin: 4px 12px 24px; padding: 32px 20px 28px; border-radius: 14px; }
    .sitmt-invite__title { font-size: 21px; }
    .sitmt-invite__desc { font-size: 14px; }
    .sitmt-invite__btn { max-width: none; }
}
/* 회원 스킨 기본값(.mbskin p / .register p 의 밑줄·여백)이 안내 박스에 섞이지 않도록 */
.sitmt-invite p,
.sitmt-invite h2 {
    padding: 0;
    border: 0;
}
.sitmt-invite p { padding-bottom: 0; }

/* ═══════════ HERMÈS AMENITY — 2026-08-12 요청 ═══════════ */

/* ── ⑨-1 단어 중간에서 줄이 끊기지 않게 (전역) ──
   word-break / overflow-wrap 은 상속되는 속성이라, 큰 컨테이너에 한 번만 걸면
   그 아래 모든 글자에 적용된다. keep-all 만 쓰면 띄어쓰기 없는 긴 영문/URL 이
   칸을 뚫고 나가므로 break-word 를 함께 둔다(그때만 글자 단위로 쪼갠다). */
.sitmt-wrapper,
.sitmt-subhero,
.sitmt-parallax,
.sitmt-footer,
.sitmt-drawer,
.sitmt-header {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ── ③ 모바일 드로어: 메인 메뉴를 하위 메뉴보다 확실히 크고 진하게 ──
   1.15em 은 물려받은 크기의 정확히 115% 다. 기준 폰트가 바뀌어도 "15% 크게"가 유지된다.
   하위 메뉴는 font-size 를 px 로 따로 갖고 있어 영향을 받지 않는다. */
.sitmt-drawer__nav > ul > li > .sitmt-drawer__top {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.15em;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--sitmt-ink);
    cursor: pointer;
}
/* 하위가 있는 항목은 오른쪽에 펼침 표시(＋/－)를 둔다 */
.sitmt-drawer__nav > ul > li.has-sub > .sitmt-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sitmt-drawer__nav > ul > li.has-sub > .sitmt-drawer__top::after {
    content: "+";
    flex: none;
    font-size: 0.9em;
    font-weight: 600;
    color: rgba(26, 20, 14, 0.45);
    transition: transform 0.2s ease;
}
.sitmt-drawer__nav > ul > li.has-sub > .sitmt-drawer__top[aria-expanded="true"]::after {
    content: "−";
    color: var(--sitmt-orange);
}

/* ── ⑧ 하위가 있는 메인 메뉴는 눌러도 이동하지 않는다 ──
   <a> 를 <button> 으로 바꿨으므로, 기존 <a> 에 걸려 있던 모양을 그대로 입혀
   보기에는 달라진 것이 없게 한다. */
.sitmt-nav > ul > li > .sitmt-nav__top {
    padding: 6px 0;
    border: 0;
    background: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
    cursor: default;          /* 눌러도 아무 일이 없다는 신호 */
}
.sitmt-nav > ul > li > .sitmt-nav__top:hover { color: #fff; opacity: 0.72; }
/* 키보드 사용자를 위해: 포커스가 들어와도 하위 메뉴가 열리게 (hover 와 동일) */
.sitmt-nav > ul > li:focus-within .sitmt-nav__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

/* 모바일 드로어: 하위 목록은 접어 두고 메인 메뉴를 눌렀을 때만 편다 */
.sitmt-drawer__nav > ul > li.has-sub > ul { display: none; }
.sitmt-drawer__nav > ul > li.has-sub.is-open > ul { display: block; }

/* ── ⑨-2 메인 패럴랙스 문구: 지정한 자리에서만 줄이 바뀌게 ──
   span 을 블록으로 만들어 줄을 고정하고, 글자 크기를 vw 로 묶어
   화면이 좁아지면 줄 수가 늘지 않고 '비율 그대로' 작아지게 한다. */
.sitmt-line { display: block; }
.sitmt-parallax__inner h3 .sitmt-line + .sitmt-line { margin-top: 0.15em; }
.sitmt-parallax__inner p {
    max-width: 760px;
    font-size: clamp(13px, 2.35vw, 17px);
}
.sitmt-parallax__inner p .sitmt-line + .sitmt-line { margin-top: 0.35em; }

/* ── ⑨-3 브랜드 포인트 4줄 ── */
.sitmt-points li { text-wrap: pretty; }

/* ── ⑨-4 상품상세 정품인증 안내문 (상품 본문 안의 .ha-note) ── */
.ha-note,
#sit_inf_explan .ha-note,
.ha-detail .ha-note {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

/* ── ⑨-5 푸터 사업자 정보: 한 항목이 두 줄로 넘어가도 단어가 안 쪼개지게 ── */
.sitmt-footer__info span {
    display: block;
    text-wrap: pretty;
}

/* ── ⑨-6 매장 위치: 지도 링크 3종 삭제(location.php), 주소복사 버튼 축소 ── */
.sitmt-store__copy {
    margin: 0 0 0 8px;
    padding: 5px 10px;        /* 8px 14px 에서 축소 */
    font-size: 11px;          /* 13px 에서 축소 */
    border-radius: 5px;
    vertical-align: middle;
}

/* ── ⑩ 브랜드 스토리 정품인증서: 폭 70% (좌우 15% 씩 여백 = 3:7) ──
   picture 가 '기준 틀' 이고 그 안에서 이미지가 70% 를 차지한다.
   PC 는 틀이 520px 이라 이미지가 364px 로 기존보다 30% 작아지고,
   모바일은 틀이 화면 폭이라 좌우에 15% 씩 여백이 생긴다. */
.sitmt-cert picture {
    display: block;
    max-width: 520px;
    margin: 0 auto;
}
.sitmt-cert img {
    width: 70%;
    max-width: 70%;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .sitmt-cert picture { max-width: 100%; }
    .sitmt-cert img { width: 70%; max-width: 70%; }
}

/* ── 2026-08-12 2차 요청 ② 매장 위치: 구글맵 iframe → SVG 안내도 ──
   iframe 시절의 껍데기(테두리·배경·aspect-ratio·overflow)를 되돌린다.
   SVG 자체가 둥근 배경과 테두리를 갖고 있어서 그대로 두면 액자가 두 겹이 된다. */
.sitmt-store__map {
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    background: none;
    overflow: visible;
}
.sitmt-map {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 900px) {
    /* 위 기본 규칙이 모바일 aspect-ratio:1/1 보다 뒤에 오도록 다시 명시 */
    .sitmt-store__map { aspect-ratio: auto; }
}

/* ── 2026-08-12: 리셀러/관리자 전용 진입 링크 (자격 없으면 렌더 자체가 안 된다) ── */
.sitmt-reseller-link {
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    line-height: 1.2;
    white-space: nowrap;
}
.sitmt-reseller-link:hover { background: rgba(255, 255, 255, 0.14); }
.sitmt-drawer__reseller > .sitmt-drawer__top { color: var(--sitmt-orange); }

/* ── 2026-08-14 요청: 제품번호 배지를 좌측 상단 → 우측 상단으로 ──
   원래 규칙(.sitmt-num)은 위쪽에 그대로 두고 여기서 좌우만 뒤집는다.
   left 를 auto 로 풀지 않으면 left/right 가 동시에 걸려 배지가 늘어난다. */
.sitmt-num {
    left: auto;
    right: 10px;
}
@media (max-width: 767px) {
    .sitmt-num { left: auto; right: 8px; }
}

/* ── 2026-08-18: 상세 이미지가 아직 준비 안 된 임시 상품 안내 ──
   임시로 다른 세트의 이미지를 빌려 쓰는 상품이 있다. 그 사실을 이미지보다
   먼저, 눈에 띄게 말해 주지 않으면 손님이 사진을 보고 다른 물건을 산다.
   진짜 이미지로 교체하면 관리자에서 이 문단만 지우면 된다. */
.ha-detail .ha-temp {
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid #f0b27a;
    border-left: 4px solid var(--sitmt-orange);
    border-radius: 10px;
    background: #fff6ee;
    color: #8a4b12;
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}
.ha-detail .ha-temp b { color: #b34700; }
.ha-detail .ha-temp-inline { color: #b34700; font-size: 0.92em; }
