/* Basic skin – PC main */
:root {
    /* vendor.skin_color 로 덮어씀 → partials/skins/basic/skin-colors.blade.php */
    --basic-accent: #ff5f5d;
    --basic-accent-soft: #ff9b9a;
    --basic-accent-dark: #e04e4c;
    --basic-accent-muted: #ffd4d3;
    --basic-accent-gradient-start: #ef5755;
    --basic-accent-gradient-end: #ff8583;
    --basic-dark: #4b4b4b;
    --basic-gray: #888;
    --basic-light: #f5f5f5;
    --basic-border: #d9d9d9;
    --basic-muted: #a1a1a1;
    --basic-wrap: 1280px;
}

/* legacy .wrap(1300px 고정) 충돌 방지 + 가로 스크롤 차단 */
body:has(.basic-main),
html:has(.basic-main) {
    overflow-x: hidden;
}

#page_wrapper:has(.basic-main) {
    overflow-x: hidden;
    max-width: 100%;
}

.basic-header,
.basic-main,
.basic-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.basic-main .wrap,
.basic-header .wrap,
.basic-footer .wrap,
.basic-modal-menu .wrap {
    width: 100%;
    max-width: var(--basic-wrap);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* new_style.css 전역 span { font-size: 15px } — 섹션 타이틀 span만 inherit */
.basic-hero__title span,
.basic-popular__title span,
.basic-situation__title span,
.basic-main__title span,
.basic-section__title span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.basic-header__topbar,
.basic-event-bar,
.basic-hero,
.basic-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.basic-delivery__slider {
    max-width: 100%;
    overflow: hidden;
    padding: 0 30px;
}

.basic-delivery__slider .slick-prev {
    left: 0;
}

.basic-delivery__slider .slick-next {
    right: 0;
}

.basic-header__topbar-text {
    margin: 0;
    max-width: var(--basic-wrap);
    margin-inline: auto;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.basic-header__nav-list {
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.basic-header__nav-list::-webkit-scrollbar {
    display: none;
}

/* Hide legacy header/footer when basic partials used */
.basic-main ~ .footer,
.basic-main header:not(.basic-header) {
    display: none;
}

/* Header */
.basic-header {
    position: relative;
    z-index: 100;
    background: #fff;
}

.basic-header__topbar {
    background: var(--basic-accent-soft);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 20px;
    text-align: center;
}

.basic-header__topbar strong {
    font-weight: 700;
    margin-right: 6px;
}

.basic-header__main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    min-height: 100px;
    border-bottom: 1px solid var(--basic-light);
}

.basic-header__service-label {
    font-size: 16px;
    color: var(--basic-dark);
}

.basic-header__phone {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--basic-accent);
    line-height: 1.2;
}

.basic-header__hours {
    font-size: 12px;
    color: var(--basic-dark);
}

.basic-header__logo {
    text-align: center;
}

.basic-header__logo > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.basic-header__logo img {
    max-height: 56px;
    width: auto;
}

.basic-header__logo-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--basic-dark);
}

.basic-header__logo-text img {
    height: 48px;
    width: auto;
}

.basic-header__logo-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    letter-spacing: -0.02em;
}

.basic-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.basic-header__actions > a,
.basic-header__dropdown > a {
    padding: 10px;
    font-size: 16px;
    color: var(--basic-dark);
    text-decoration: none;
}

.basic-header__search {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--basic-dark);
    font-size: 18px;
    cursor: pointer;
}

.basic-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}

.basic-header__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.basic-header__menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--basic-dark);
    border-radius: 1px;
    position: relative;
}

.basic-header__menu-icon::before,
.basic-header__menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--basic-dark);
    border-radius: 1px;
}

.basic-header__menu-icon::before {
    top: -7px;
}

.basic-header__menu-icon::after {
    top: 7px;
}

.basic-header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: wrap;
    gap: 0;
}

.basic-header__nav-list a {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--basic-muted);
    text-decoration: none;
    white-space: nowrap;
}

.basic-header__nav-list a:hover {
    color: var(--basic-dark);
}

.basic-modal-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 8vh 16px;
    overflow-y: auto;
}

.basic-modal-menu__backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
}

.basic-modal-menu > .wrap {
    position: relative;
    z-index: 1;
}

.basic-modal-menu .modal_inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 40px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--basic-accent) 10%, #f1f6ff);
}

.basic-modal-menu .modal_inner .menu_list {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    width: 80%;
    margin-left: -10px;
}

.basic-modal-menu .modal_inner .menu_list02 {
    width: 20%;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin-left: -10px;
}

.basic-modal-menu .modal_inner .menu_list dl {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    width: 24%;
    padding: 0 40px;
}

.basic-modal-menu .modal_inner .menu_list02 dl {
    display: block;
    vertical-align: top;
    text-align: left;
    width: 100%;
    padding: 0 40px;
}

.basic-modal-menu .modal_inner .menu_list dl dt,
.basic-modal-menu .modal_inner .menu_list02 dl dt {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    width: max-content;
}

.basic-modal-menu .modal_inner .menu_list dl dt:after,
.basic-modal-menu .modal_inner .menu_list02 dl dt:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--basic-accent);
    bottom: -2px;
    left: 0;
    transition: all 0.4s;
    transform: scaleX(0);
    transform-origin: bottom right;
}

.basic-modal-menu .modal_inner .menu_list dl:hover dt:after,
.basic-modal-menu .modal_inner .menu_list02 dl:hover dt:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.basic-modal-menu .modal_inner .menu_list dl dd,
.basic-modal-menu .modal_inner .menu_list02 dl dd {
    margin-bottom: 5px;
    padding: 5px 0;
}

.basic-modal-menu .modal_inner .menu_list dl dd a,
.basic-modal-menu .modal_inner .menu_list02 dl dd a {
    font-size: 15px;
    line-height: 25px;
    color: var(--basic-dark);
    text-decoration: none;
}

.basic-modal-menu .modal_inner .menu_list dl dd a:hover,
.basic-modal-menu .modal_inner .menu_list02 dl dd a:hover {
    color: var(--basic-accent) !important;
    transition: all 0.4s;
}

.basic-modal-menu .modal_inner .menu_list02 dl:last-child {
    margin-top: 50px;
}

.basic-modal-menu .modal_inner p.close {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    margin: 0;
    display: block;
    width: 40px;
    height: 40px;
}

.basic-modal-menu .modal_inner p.close button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.basic-modal-menu .modal_inner p.close img {
    display: block;
    width: 100%;
}

.basic-modal-menu .modal_inner .under_banner {
    width: 100%;
    margin: 50px auto 0;
    background: var(--basic-accent);
    padding: 15px 240px 15px 28px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    overflow: visible;
    display: flex;
    align-items: center;
}

.basic-modal-menu .modal_inner .under_banner:after {
    position: absolute;
    content: '';
    width: 220px;
    height: 300px;
    background: url(../../../images/main/menu_banner_flower.png) no-repeat right bottom;
    background-size: contain;
    bottom: 0;
    right: 24px;
    z-index: 3;
    pointer-events: none;
}

.basic-modal-menu .modal_inner .under_banner p {
    position: relative;
    z-index: 1;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.basic-modal-menu .modal_inner .under_banner p span {
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

/* Hero – 배너 규격 1920×600 고정 */
.basic-hero {
    --basic-hero-ratio: 1920 / 600;
    position: relative;
    width: 100%;
    aspect-ratio: var(--basic-hero-ratio);
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.basic-hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.basic-hero__slider.slick-slider,
.basic-hero__slider .slick-list,
.basic-hero__slider .slick-track {
    height: 100% !important;
}

/* slick fade: 2번째 슬라이드부터 left:-width 로 밀려 overflow 에 잘리는 문제 방지 */
.basic-hero__slider .slick-list {
    position: relative;
    overflow: hidden;
}

.basic-hero__slider .slick-track {
    width: 100% !important;
    transform: none !important;
}

.basic-hero__slider .slick-slide {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    float: none;
}

.basic-hero__slider .slick-slide > div {
    height: 100%;
}

.basic-hero__slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.basic-hero__slide a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.basic-hero__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.basic-hero__copy {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35.67%;
    z-index: 2;
    color: #fff;
    pointer-events: none;
    width: 100%;
    max-width: var(--basic-wrap);
    padding: 0 20px;
    line-height: normal;
}

.basic-hero__title {
    margin: 0 0 16px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.basic-hero__subtitle {
    margin: 0;
    font-size: 28px;
    font-weight: 300;
}

.basic-hero__subtitle strong {
    font-weight: 700;
}

/* Quick categories – Figma: 200px bar, 140px cards, 90px icons */
.basic-quick {
    background: var(--basic-light);
    min-height: 200px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.basic-quick__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 22px;
    width: 100%;
    max-width: 1274px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.basic-quick__grid::-webkit-scrollbar {
    display: none;
}

.basic-quick__item {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    padding: 9px 25px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: box-shadow 0.2s ease;
}

.basic-quick__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.basic-quick__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90px;
}

.basic-quick__icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
}

.basic-quick__icon img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: cover;
    object-position: center;
}

.basic-quick__label {
    display: block;
    width: 100%;
    min-height: 22px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.16px;
    text-align: center;
    color: #000;
    white-space: nowrap;
}

/* Event bar */
.basic-event-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: linear-gradient(90deg, var(--basic-accent-gradient-start), var(--basic-accent-gradient-end));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.basic-event-bar:hover {
    color: #fff;
    opacity: 0.95;
}

/* Sections */
.basic-section {
    padding: 60px 0;
}

.basic-section--popular {
    position: relative;
    background: #fff;
    padding: 64px 0 80px;
    overflow: hidden;
}

.basic-section--popular::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 300px;
    background: color-mix(in srgb, var(--basic-accent) 5%, #fff);
    z-index: 0;
}

.basic-popular {
    position: relative;
    z-index: 1;
}

/* 섹션 타이틀 공통 (new_style span 15px 리셋 대비 고정) */
.basic-popular__title,
.basic-popular__title span,
.basic-situation__title,
.basic-situation__title span,
.basic-main__title,
.basic-main__title span,
.basic-section__title,
.basic-section__title span {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.basic-popular__title {
    grid-area: title;
    margin: 0;
    font-size: 40px;
    white-space: nowrap;
}

.basic-popular__title span {
    font-weight: inherit;
}

.basic-popular__title-accent {
    color: var(--basic-accent);
}

.basic-popular__title-dark {
    color: var(--basic-dark);
}

.basic-popular__layout {
    display: grid;
    grid-template-columns: 486px minmax(0, 1fr);
    grid-template-areas:
        "title products"
        "tabs products";
    column-gap: 34px;
    row-gap: 110px;
    align-items: start;
}

.basic-popular__tabs {
    grid-area: tabs;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 418px;
    min-height: 80px;
    margin: 0 0 0 68px;
    padding: 0;
    list-style: none;
}

.basic-popular__content {
    grid-area: products;
    position: relative;
    min-height: 291px;
}

.basic-popular__tabs li button {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    color: var(--basic-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.basic-popular__tabs li.is-active button {
    background: linear-gradient(112deg, var(--basic-accent) 0%, var(--basic-accent-soft) 100%);
    color: #fff;
    font-weight: 700;
    border-color: #e0e0e0;
}

.basic-popular__panel {
    display: none;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
}

.basic-popular__panel.is-active,
.basic-popular__panel.basic-tab-panel.is-active {
    display: flex;
}

.basic-popular__product {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 240px;
    text-decoration: none;
    color: inherit;
}

.basic-popular__thumb {
    width: 240px;
    height: 240px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    line-height: 0;
}

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

.basic-popular__name {
    margin: 10px 0 0;
    padding: 2px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--basic-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.basic-popular__price {
    margin: 0;
    padding: 2px 10px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--basic-accent);
}

.basic-tab-panel {
    display: none;
}

.basic-tab-panel.is-active {
    display: grid;
}

.basic-section--situation {
    background: #fff;
    padding: 64px 0 80px;
}

.basic-section--main {
    position: relative;
    background: #fff;
    padding: 64px 0 80px;
    overflow: hidden;
}

.basic-section--main::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(757px, 72%);
    background: color-mix(in srgb, var(--basic-accent) 6%, #fff);
    z-index: 0;
}

.basic-section--delivery {
    background: var(--basic-light);
    padding-bottom: 80px;
}

.basic-section__title {
    margin: 0 0 32px;
    color: var(--basic-dark);
}

.basic-section__title span {
    color: var(--basic-accent);
}

/* Situation section */
.basic-situation__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 40px;
}

.basic-situation__title {
    margin: 0;
    white-space: nowrap;
}

.basic-situation__title span {
    font-weight: inherit;
}

.basic-situation__title-accent {
    color: var(--basic-accent);
}

.basic-situation__title-dark {
    color: var(--basic-dark);
}

.basic-situation__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.basic-situation__tabs li button {
    padding: 8px 15px;
    border-radius: 50px;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    color: var(--basic-dark);
    border: 1px solid #d9d9d9;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.basic-situation__tabs li.is-active button {
    background: var(--basic-dark);
    border-color: var(--basic-dark);
    color: #fff;
    font-weight: 700;
}

.basic-situation__content {
    position: relative;
}

.basic-situation__panel {
    display: none;
}

.basic-situation__panel.is-active {
    display: block;
}

.basic-situation__grid {
    display: grid;
    grid-template-columns: repeat(5, 240px);
    gap: 20px;
    justify-content: space-between;
}

.basic-situation__product {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 240px;
    text-decoration: none;
    color: inherit;
}

.basic-situation__thumb {
    position: relative;
    width: 240px;
    height: 240px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    line-height: 0;
}

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

.basic-situation__badge {
    position: absolute;
    top: 7px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.basic-situation__badge--best {
    left: 10px;
    background: #ffbb00;
}

.basic-situation__badge--hot {
    right: 10px;
    left: auto;
    background: var(--basic-accent);
}

.basic-situation__name {
    margin: 10px 0 0;
    padding: 2px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--basic-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.basic-situation__price {
    margin: 0;
    padding: 2px 10px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
}

.basic-situation__more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.basic-situation__more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 5px 25px;
    border: 1px solid var(--basic-muted);
    border-radius: 50px;
    color: var(--basic-muted);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
}

.basic-situation__more a:hover {
    border-color: var(--basic-dark);
    color: var(--basic-dark);
}

/* Main section */
.basic-main__title {
    position: relative;
    z-index: 1;
    margin: 0 0 40px;
    white-space: nowrap;
}

.basic-main__title span {
    font-weight: inherit;
}

.basic-main__title-accent {
    color: var(--basic-accent);
}

.basic-main__title-dark {
    color: var(--basic-dark);
}

.basic-main-slider {
    position: relative;
    z-index: 1;
}

.basic-main-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.basic-main-slider__track {
    display: flex;
    gap: 20px;
    transform: translateX(0);
    transition: transform 0.4s ease;
    will-change: transform;
}

.basic-main-col {
    position: relative;
    z-index: 1;
    flex: 0 0 var(--basic-main-col-width, 320px);
    width: var(--basic-main-col-width, 320px);
    min-width: var(--basic-main-col-width, 320px);
    box-sizing: border-box;
}

.basic-main-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.basic-main-col__hero {
    display: block;
    position: relative;
    height: 248px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--basic-dark) center/cover no-repeat;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
}

.basic-main-col__hero--a1 {
    background-position: 20% center;
}

.basic-main-col__hero--a2,
.basic-main-col__hero--a3,
.basic-main-col__hero--a4,
.basic-main-col__hero--a5,
.basic-main-col__hero--a6,
.basic-main-col__hero--a7,
.basic-main-col__hero--a8 {
    background-size: cover;
    background-position: center;
}

.basic-main-col__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        60deg,
        rgba(22, 22, 22, 0.72) 0%,
        rgba(0, 0, 0, 0.48) 30%,
        rgba(0, 0, 0, 0.2) 45%,
        rgba(0, 0, 0, 0) 80%
    );
    pointer-events: none;
}

.basic-main-col__hero-body {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 30px;
}

.basic-main-col__desc {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    opacity: 0.7;
}

.basic-main-col__hero h3 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.basic-main-col__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.basic-main-col__tags span {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    background: #fff;
    color: var(--basic-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.basic-main-col__more {
    position: absolute;
    right: 30px;
    bottom: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
    color: #000;
    text-align: center;
}

.basic-main-col__list-wrap {
    overflow: hidden;
}

.basic-main-col__pages {
    display: flex;
    width: calc(100% * var(--page-count, 1));
    transform: translateX(0);
    transition: transform 0.4s ease;
}

.basic-main-col__page {
    flex: 0 0 calc(100% / var(--page-count, 1));
    min-width: calc(100% / var(--page-count, 1));
}

.basic-main-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.basic-main-col__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 131px;
    padding: 15px 30px 15px 15px;
    background: #fff;
    border-radius: 20px;
    color: inherit;
}

.basic-main-col__item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.basic-main-col__thumb {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--basic-light);
}

.basic-main-col__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basic-main-col__info {
    flex: 1;
    min-width: 0;
    align-self: center;
}

.basic-main-col__name {
    margin: 0;
    padding: 10px 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--basic-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.basic-main-col__price {
    margin: 0;
    padding: 0 10px 10px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.basic-main-col__buy {
    flex-shrink: 0;
    align-self: flex-end;
    margin: 0;
    padding: 5px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    color: var(--basic-accent);
    white-space: nowrap;
    cursor: pointer;
}

.basic-main-col__buy:hover {
    opacity: 0.85;
}

.basic-main-pager {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.basic-main-pager__group {
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.basic-main-pager__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--basic-dark);
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.basic-main-pager__btn:hover:not(:disabled) {
    color: var(--basic-accent);
}

.basic-main-pager__btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.basic-main-pager__btn svg {
    width: 20px;
    height: 20px;
}

/* Legacy product card (other pages) */
.basic-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.basic-product-card:hover {
    transform: translateY(-4px);
}

.basic-product-card__img {
    position: relative;
    aspect-ratio: 1;
    background: var(--basic-light);
}

.basic-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basic-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--basic-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.basic-badge--sale {
    left: auto;
    right: 10px;
    background: var(--basic-dark);
}

.basic-product-card__body {
    padding: 12px 16px 16px;
}

.basic-product-card__name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 300;
    color: var(--basic-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.basic-product-card__price {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.basic-product-card__price--accent {
    color: var(--basic-accent);
}

/* Product list (catalog) page – Figma 183:127 */
.basic-catalog {
    background: #fff;
}

.basic-catalog__stage {
    padding: 98px 20px 80px;
}

.basic-catalog__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.basic-catalog__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    text-align: center;
}

.basic-catalog__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--basic-dark);
}

.basic-catalog__subtitle {
    margin: -8px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #666;
}

.basic-catalog__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.basic-catalog__tabs li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 8px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    background: #fff;
    color: var(--basic-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.basic-catalog__tabs li a:hover {
    border-color: var(--basic-dark);
    color: var(--basic-dark);
}

.basic-catalog__tabs li.is-active a {
    background: var(--basic-dark);
    border-color: var(--basic-dark);
    color: #fff;
    font-weight: 700;
}

.basic-catalog__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 17px;
    margin-bottom: 8px;
}

.basic-catalog__count {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--basic-dark);
}

.basic-catalog__sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.basic-catalog__sort a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.05;
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.basic-catalog__sort a:hover,
.basic-catalog__sort a.is-active {
    color: var(--basic-dark);
    font-weight: 700;
}

.basic-catalog__sort-divider {
    width: 1px;
    height: 14px;
    background: #d9d9d9;
}

.basic-catalog__toolbar-line {
    width: 100%;
    height: 1px;
    margin-bottom: 48px;
    background: #e0e0e0;
}

.basic-catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 50px 30px;
    justify-content: space-between;
}

.basic-catalog__product {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 260px;
    text-decoration: none;
    color: inherit;
}

.basic-catalog__thumb {
    position: relative;
    width: 260px;
    height: 260px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    line-height: 0;
}

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

.basic-catalog__badge {
    position: absolute;
    top: 7px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.basic-catalog__badge--best {
    left: 10px;
    background: #ffbb00;
}

.basic-catalog__badge--hot {
    right: 10px;
    left: auto;
    background: var(--basic-accent);
}

.basic-catalog__name {
    margin: 10px 0 0;
    padding: 2px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--basic-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.basic-catalog__price {
    margin: 0;
    padding: 0px 10px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: #000;
}

.basic-catalog__empty {
    margin: 120px 0 160px;
    text-align: center;
}

.basic-catalog__empty p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--basic-dark);
}

.basic-catalog__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.basic-catalog__pager-group {
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.basic-catalog__pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--basic-dark);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.basic-catalog__pager-btn:hover {
    color: var(--basic-accent);
}

.basic-catalog__pager-btn.is-disabled {
    opacity: 0.35;
    cursor: default;
}

.basic-catalog__pager-btn svg {
    width: 20px;
    height: 20px;
}

.basic-catalog__pager-nums {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 0 5px;
}

.basic-catalog__pager-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #888;
    text-decoration: none;
}

.basic-catalog__pager-num.is-active,
.basic-catalog__pager-num:hover {
    color: var(--basic-dark);
    font-weight: 700;
}

/* Mid banner (Figma Group 130 – gray band + truck protruding above) */
.basic-mid-banner {
    position: relative;
    padding: 108px 20px 56px;
    margin-top: -72px;
    margin-bottom: 48px;
    overflow: visible;
    z-index: 2;
}

.basic-mid-banner__stage {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: visible;
}

.basic-mid-banner__band {
    min-height: 150px;
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 36px 500px 36px 60px;
    margin: 100px 0px;
}

.basic-mid-banner__text {
    position: relative;
    z-index: 1;
}

.basic-mid-banner__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
    color: #333;
}

.basic-mid-banner__title .basic-mid-banner__accent {
    color: var(--basic-accent);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.basic-mid-banner__sub {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #666;
}

.basic-mid-banner__visual {
    position: absolute;
    right: 60px;
    bottom: 0;
    width: 465px;
    height: 258px;
    z-index: 3;
    pointer-events: none;
}

.basic-mid-banner__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

/* Delivery slider */
.basic-delivery__slider .basic-delivery__slide {
    padding: 0 10px;
}

.basic-delivery__slider img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

/* Footer – override new_style.css global 15px reset */
.basic-footer,
.basic-footer * {
    font-size: 14px !important;
    line-height: 1.67 !important;
}

.basic-footer {
    margin-top: 0;
    color: #fff;
}

.basic-footer__body {
    background: #9a9a9a;
    padding: 48px 0 32px;
}

.basic-footer__body-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 32px 48px;
    align-items: start;
}

.basic-footer__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.basic-footer__info-block {
    margin: 0;
}

.basic-footer__info-block--sub .basic-footer__info-label,
.basic-footer__info-block--sub .basic-footer__info-text {
    opacity: 0.92;
}

.basic-footer__info-label {
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.basic-footer__info-label::before {
    content: "[";
}

.basic-footer__info-label::after {
    content: "]";
}

.basic-footer__info-text {
    margin: 0;
    word-break: keep-all;
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.95);
}

.basic-footer__links-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 0;
    margin: 0;
}

.basic-footer__links-inner a {
    position: relative;
    padding: 0 12px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.basic-footer__links-inner a:first-child {
    padding-left: 0;
}

.basic-footer__links-inner a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
}

.basic-footer__links-inner a:hover {
    opacity: 0.85;
}

.basic-footer__copyright {
    margin: 0;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.basic-footer__bottom {
    margin-top: 28px;
}

.basic-footer__cs {
    min-width: 0;
    width: 100%;
}

.basic-footer__cs-card {
    background: #757575;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.basic-footer__cs-head {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.basic-footer__cs-title {
    margin: 0;
    font-weight: 700;
    flex-shrink: 0;
}

.basic-footer__cs-phone {
    margin: 0;
    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.basic-footer__cs-hours {
    margin: 0 0 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.basic-footer__cs-hours strong {
    font-weight: 700;
    color: #fff;
}

.basic-footer__cs-delivery-title {
    margin: 0 0 6px;
    font-weight: 700;
}

.basic-footer__cs-delivery-list {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
}

.basic-footer__cs-delivery-list li {
    position: relative;
    padding-left: 12px;
}

.basic-footer__cs-delivery-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.basic-footer__cs-delivery-note {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    word-break: keep-all;
    color: rgba(255, 255, 255, 0.85);
}


.basic-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--basic-dark);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.basic-scroll-top:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Override legacy global header when basic is active */
#page_wrapper:has(.basic-main) > header:not(.basic-header) {
    display: none;
}

/* Slick overrides for basic hero */
.basic-hero .slick-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: normal;
}

.basic-hero .slick-dots li button:before {
    color: #fff;
    opacity: 0.6;
}

.basic-hero .slick-dots li.slick-active button:before {
    opacity: 1;
}

@media (max-width: 1200px) {
    .basic-popular__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "tabs"
            "products";
        gap: 24px;
        row-gap: 24px;
    }

    .basic-popular__tabs {
        max-width: none;
        margin-left: 0;
        justify-content: flex-start;
    }

    .basic-popular__title {
        white-space: normal;
    }

    .basic-popular__panel {
        flex-wrap: wrap;
        justify-content: center;
    }

    .basic-popular__product,
    .basic-popular__thumb {
        width: min(240px, 100%);
    }

    .basic-popular__thumb {
        height: auto;
        aspect-ratio: 1;
    }

    .basic-situation__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .basic-situation__title,
    .basic-main__title {
        white-space: normal;
    }

    .basic-situation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
    }

    .basic-situation__product,
    .basic-situation__thumb {
        width: 100%;
    }

    .basic-situation__thumb {
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 1200px) {
    .basic-quick__grid {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .basic-catalog__grid {
        grid-template-columns: repeat(3, 240px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .basic-quick {
        min-height: auto;
        padding: 24px 16px;
    }

    .basic-quick__grid {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        max-width: 100%;
        gap: 16px;
    }

    .basic-header__main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .basic-header__main {
        display: flex;
        flex-direction: column;
    }

    .basic-header__actions {
        justify-content: center;
    }

    .basic-header__nav-list {
        display: none;
    }

    .basic-hero__title {
        font-size: 38px;
    }

    .basic-popular__panel {
        flex-direction: column;
        align-items: center;
    }

    .basic-situation__grid {
        grid-template-columns: 1fr;
    }

    .basic-situation__head {
        align-items: center;
        text-align: center;
    }

    .basic-situation__tabs {
        justify-content: center;
    }

    .basic-main__title {
        text-align: center;
    }

    .basic-footer__body-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .basic-footer__cs-card {
        padding: 24px 20px;
    }

    .basic-footer__copyright {
        white-space: normal;
    }

    .basic-footer__links-inner a {
        padding: 0 10px;
    }

    .basic-footer__links-inner a:first-child {
        padding-left: 0;
    }

    .basic-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        justify-content: center;
    }

    .basic-catalog__product,
    .basic-catalog__thumb {
        width: 100%;
    }

    .basic-catalog__title {
        font-size: 32px;
    }

    .basic-catalog__stage {
        padding: 48px 16px 56px;
    }

    .basic-catalog__head {
        margin-bottom: 32px;
    }

    .basic-catalog__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .basic-catalog__toolbar-line {
        margin-bottom: 32px;
    }
}

/* Login page – achromatic / minimal */
.basic-auth {
    padding: 64px 20px 96px;
    background: #fff;
}

.basic-auth__card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
}

.basic-auth__title {
    margin: 0 0 32px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #000;
}

.basic-auth__tabs {
    display: flex;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #e5e5e5;
}

.basic-auth__tabs li {
    flex: 1 1 0;
    min-width: 0;
}

.basic-auth__tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 8px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: #999;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.basic-auth__tabs li.active a {
    color: var(--basic-accent);
    font-weight: 700;
    border-bottom-color: var(--basic-accent);
}

.basic-auth__alert {
    margin-bottom: 16px;
    border-radius: 6px;
    font-size: 14px;
}

.basic-auth__form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.basic-auth__field {
    display: block;
    margin-bottom: 10px;
    padding: 14px 16px;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: text;
}

.basic-auth__label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: #888;
}

.basic-auth__input {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    box-sizing: border-box;
}

.basic-auth__input::placeholder {
    color: #bbb;
    font-style: normal !important;
}

.basic-auth__input:focus {
    outline: none;
}

.basic-auth__remember {
    display: flex;
    align-items: center;
    margin: 10px 0 0;
    padding: 0 4px;
}

.basic-auth__remember input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.basic-auth__remember input[type="checkbox"] + label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    line-height: 1.2;
    cursor: pointer;
    user-select: none;
}

.basic-auth__remember input[type="checkbox"] + label::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    vertical-align: middle;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.basic-auth__remember input[type="checkbox"]:checked + label::before {
    background-color: var(--basic-accent);
    border-color: var(--basic-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.basic-auth__remember input[type="checkbox"] + label:active::before {
    transform: none;
}

.basic-auth__submit {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 16px 20px;
    border: none;
    border-radius: 6px;
    background: var(--basic-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.basic-auth__submit:hover {
    background: var(--basic-accent-dark);
}

.basic-auth__utils {
    margin-top: 20px;
    text-align: center;
}

.basic-auth__utils a {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    text-decoration: none;
}

.basic-auth__utils a:hover {
    color: #000;
    text-decoration: underline;
}

.basic-auth__signup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    padding: 16px 20px;
    border: none;
    border-radius: 6px;
    background: #f0f0f0;
    color: #0076af;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.basic-auth__signup:hover {
    background: #e8e8e8;
    color: #000;
}

.basic-auth__guest {
    display: block;
    width: 100%;
    margin: 28px auto 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #888;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.basic-auth__guest:hover {
    color: #000;
}

.basic-auth .alert.validation {
    margin-bottom: 16px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .basic-auth {
        padding: 32px 16px 48px;
    }

    .basic-auth__title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .basic-auth__tabs li a {
        font-size: 14px;
        min-height: 44px;
    }
}

/* Register page */
.basic-register {
    padding: 64px 20px 96px;
    background: #fff;
}

.basic-register__card {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.basic-register__title {
    margin: 0 0 32px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #000;
}

.basic-register__section {
    margin-bottom: 36px;
}

.basic-register__section-title {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.basic-register__field {
    margin-bottom: 14px;
}

.basic-register__label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.basic-register__required {
    color: var(--basic-accent);
}

.basic-register__input,
.basic-register__select {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    background: #f5f5f5;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;
}

.basic-register__input::placeholder {
    color: #bbb;
    font-style: normal !important;
}

.basic-register__input:focus,
.basic-register__select:focus {
    outline: none;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--basic-accent) 25%, transparent);
}

.basic-register__inline {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.basic-register__inline .basic-register__input {
    flex: 1;
    min-width: 0;
}

.basic-register__btn-mini {
    flex-shrink: 0;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.basic-register__hint {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: #999;
}

.basic-register__birth {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 10px;
}

.basic-register__agree {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.basic-register__agree-all {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
}

.basic-register__agree-all-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.basic-register__agree-all-text strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
}

.basic-register__agree-all-text em {
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
    color: #888;
}

.basic-register__agree-all input,
.basic-register__agree-item input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--basic-accent);
}

.basic-register__agree-list {
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.basic-register__agree-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid #f2f2f2;
}

.basic-register__agree-item:last-child {
    border-bottom: none;
}

.basic-register__agree-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.basic-register__agree-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.basic-register__agree-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.basic-register__agree-badge--required {
    background: color-mix(in srgb, var(--basic-accent) 12%, #fff);
    color: var(--basic-accent);
}

.basic-register__agree-badge--optional {
    background: #f0f0f0;
    color: #777;
}

.basic-register__agree-text {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

.basic-register__agree-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.basic-register__captcha {
    display: flex;
    justify-content: center;
    margin: 12px 0 20px;
}

.basic-register__submit {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 6px;
    background: var(--basic-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.basic-register__submit:hover {
    background: var(--basic-accent-dark);
}

.basic-register__utils {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.basic-register__utils a {
    margin-left: 6px;
    color: var(--basic-accent);
    font-weight: 700;
    text-decoration: none;
}

/* Service center – basic skin */
.basic-service-center.customer_center.basic-board:before {
    display: none;
}

.basic-service-center.customer_center > .wrap03,
.basic-service-center.customer_center > .wrap {
    position: relative;
    z-index: 1;
}

.basic-sc__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.basic-sc__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 26px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    text-align: left;
}

.basic-sc__card-body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.basic-sc__card-visual {
    flex: 0 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.basic-sc__card-visual img {
    display: block;
    width: 96px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.basic-sc__card--kakao .basic-sc__card-visual img {
    width: 88px;
}

.basic-sc__card--phone {
    background: #fafafa;
}

.basic-sc__card--kakao {
    cursor: pointer;
    background: #fafafa;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.basic-sc__card--kakao:hover {
    border-color: #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.basic-sc__tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #eee;
    color: var(--basic-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.basic-sc__tag--kakao {
    background: #fee500;
    color: #191919;
}

.basic-sc__lead {
    margin: 4px 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--basic-dark);
}

.basic-sc__phone {
    margin: 2px 0 0;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--basic-accent);
    text-decoration: none;
}

.basic-sc__phone:hover {
    color: var(--basic-accent-dark);
}

.basic-sc__kakao-name {
    margin: 2px 0 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--basic-dark);
}

.basic-sc__hint {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #888;
}

.basic-sc__guide {
    margin: 8px 0 0;
    padding-top: 12px;
    border-top: 1px solid #ececec;
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.55;
    color: #777;
}

.basic-sc__guide strong {
    color: var(--basic-accent-dark);
    font-weight: 700;
}

.basic-sc__hours {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 26px 28px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
}

.basic-sc__hours-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--basic-accent-dark);
}

.basic-sc__hours-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.basic-sc__hours-list li {
    position: relative;
    padding-left: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
}

.basic-sc__hours-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc;
    transform: translateY(-50%);
}

.basic-sc__note {
    margin: 14px 0 0;
    padding-left: 12px;
    font-size: 13px;
    line-height: 1.55;
    color: #888;
    position: relative;
}

.basic-sc__note:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--basic-accent);
    transform: translateY(-50%);
}

.basic-board__menu.left_menu ul li a:hover,
.basic-board__menu.left_menu ul li a.active {
    border-color: var(--basic-accent);
    color: var(--basic-accent);
    background: color-mix(in srgb, var(--basic-accent) 10%, #fff);
}

/* Board – basic color/title overrides */
.basic-board.notice_contents,
.basic-board.one_contents,
.basic-board.faq_contents,
.basic-service-center.customer_center.basic-board {
    display: block;
    width: 1150px;
    max-width: calc(100% - 40px);
    margin: 50px auto 0;
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.basic-board__menu.left_menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: block;
    width: 100%;
    z-index: 5;
    pointer-events: auto;
    margin: 0 0 32px;
    padding: 20px 0 0;
    background: #fff;
    box-sizing: border-box;
}

.basic-board__menu.left_menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0 0 18px;
    list-style: none;
}

.basic-board__menu.left_menu ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 20px;
    border: 1px solid #dbe4f2;
    border-radius: 999px;
    background: #fff;
    color: var(--basic-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.basic-board.notice_contents > .wrap03,
.basic-board.one_contents > .wrap,
.basic-board.faq_contents > .wrap03,
.basic-service-center.customer_center.basic-board > .wrap03 {
    width: 100% !important;
    max-width: none;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

.basic-board.notice_contents h2.basic-board__title,
.basic-board.one_contents h2.basic-board__title,
.basic-board.faq_contents h2.basic-board__title,
.basic-service-center.customer_center.basic-board h2.basic-board__title {
    margin: 0 0 32px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--basic-dark);
}

.basic-board__title--view {
    margin-bottom: 28px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    color: var(--basic-dark);
}

.basic-board.notice_contents table thead tr td {
    color: var(--basic-accent);
    border-bottom-color: var(--basic-accent);
}

.basic-board.notice_contents table tbody tr td:nth-child(2) a:hover {
    color: var(--basic-accent);
}

.basic-board.notice_contents table tbody:empty::after {
    content: "등록된 게시글이 없습니다.";
    display: block;
    padding: 48px 16px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.basic-board .noticetype.notice,
.basic-board .noticetype.event {
    background: var(--basic-accent);
}

.basic-board .pagination a.active,
.basic-board.one_contents .pagination a.active,
.basic-board.faq_contents .pagination a.active {
    color: var(--basic-accent) !important;
}

.basic-board.faq_contents form.search-box {
    border-color: var(--basic-accent);
}

.basic-board.faq_contents .accordianNav {
    border-top-color: var(--basic-accent);
}

.basic-board.faq_contents .accordianNav h3 span {
    background: color-mix(in srgb, var(--basic-accent) 12%, #fff);
    color: var(--basic-accent-dark);
}

.basic-board.faq_contents .accordianNav .dropArrow.active:after {
    border-color: var(--basic-accent);
}

.basic-board.faq_contents .accordianNav li li span {
    background: var(--basic-accent);
}

.basic-board.faq_contents .one_go a {
    background: var(--basic-accent);
    box-shadow: none;
}

.basic-board--view .btn_div .blue_btn {
    background: var(--basic-accent);
    box-shadow: none;
}

.basic-board--view .btn_div .gray_btn {
    box-shadow: none;
}

.basic-board--view .file_div {
    border-color: #e0e0e0;
    border-radius: 8px;
}


/* ===== My page shell – basic skin (dashboard / register-update ...) ===== */
.basic-mypage {
    display: block;
    width: 1150px;
    max-width: calc(100% - 40px);
    margin: 50px auto 0;
    padding: 0 0 80px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    color: var(--basic-dark);
}

.basic-mypage__wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

.basic-mypage__title {
    margin: 0 0 32px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #000;
}

.basic-mypage__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border: 1px solid var(--basic-accent);
    border-radius: 6px;
    background: var(--basic-accent);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.basic-mypage__btn:hover {
    background: var(--basic-accent-dark);
    border-color: var(--basic-accent-dark);
}

.basic-mypage__btn--ghost {
    border-color: var(--basic-border);
    background: #fff;
    color: #666 !important;
}

.basic-mypage__btn--ghost:hover {
    border-color: #999;
    background: #fff;
    color: #333 !important;
}

@media (max-width: 768px) {
    .basic-mypage {
        margin-top: 24px;
        padding-bottom: 60px;
    }
}
