/* ========================================
   META HINT - Custom Theme CSS
   Responsive E-commerce Design
   ======================================== */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Hide gnuboard default elements */
#hd_login_msg {
    display: none;
}

/* ========================================
   HEADER
   ======================================== */
.mh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.mh-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-logo img {
    height: 16px;
    width: auto;
}

.mh-nav {
    display: flex;
    gap: 2rem;
}

.mh-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #333;
    transition: color 0.2s;
}

.mh-nav a:hover {
    color: #2D2B70;
}

.mh-header-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mh-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    color: #333;
}

.mh-icon-btn:hover {
    background: #f5f5f5;
}

.mh-logout-btn { color: #2D2B70; }
.mh-logout-btn:hover {
    background: rgba(45, 43, 112, 0.08);
    color: #c9a84c;
}

/* Hamburger (mobile only) */
.mh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mh-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.mh-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.mh-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mh-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.mh-hero {
    background: #f8f8fc;
    overflow: hidden;
}

.mh-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 520px;
}

.mh-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.mh-subtitle-gold {
    color: #c9a84c;
}

.mh-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #1a1a2e;
}

.mh-hero-text h1 strong {
    font-weight: 700;
    font-style: italic;
}

.mh-hero-text p {
    font-size: 0.95rem;
    color: #666;
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mh-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a2e;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 0;
    transition: background 0.3s;
}

.mh-btn-primary:hover {
    background: #2D2B70;
}

.mh-hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.mh-hero-img-main {
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 43, 112, 0.15);
}

.mh-hero-img-side {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 43, 112, 0.1);
    transform: translateY(30px);
}

.mh-hero-img-main img,
.mh-hero-img-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========================================
   CATEGORIES
   ======================================== */
.mh-categories {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.mh-categories-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.mh-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
}

.mh-cat-item:hover {
    transform: translateY(-4px);
}

.mh-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.mh-cat-item:hover .mh-cat-icon {
    border-color: #2D2B70;
    color: #2D2B70;
}

.mh-cat-item span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #333;
}

/* ========================================
   SECTIONS
   ======================================== */
.mh-section {
    padding: 5rem 0;
}

.mh-section-best {
    background: #fafafa;
}

.mh-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mh-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.mh-section-header-center {
    justify-content: center;
    text-align: center;
}

.mh-section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 500;
}

.mh-view-all {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.mh-view-all:hover {
    color: #2D2B70;
    border-color: #2D2B70;
}

/* ========================================
   PRODUCT GRID & CARDS
   ======================================== */
.mh-product-grid {
    display: grid;
    gap: 2rem;
}

.mh-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mh-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mh-product-card {
    transition: transform 0.3s;
}

.mh-product-card:hover {
    transform: translateY(-6px);
}

.mh-product-img {
    position: relative;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.mh-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.mh-product-card:hover .mh-product-img img {
    transform: scale(1.05);
}

.mh-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #999;
    transition: all 0.2s;
    opacity: 0;
}

.mh-product-card:hover .mh-wishlist {
    opacity: 1;
}

.mh-wishlist:hover {
    color: #e74c3c;
}

.mh-product-info {
    padding: 1rem 0.25rem 0;
}

.mh-product-cat {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
}

.mh-product-info h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0.35rem 0;
    color: #1a1a2e;
}

.mh-product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2D2B70;
}

/* ========================================
   PROMOTION BANNER
   ======================================== */
.mh-promo {
    background: #f0f0f6;
    overflow: hidden;
}

.mh-promo-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.mh-promo-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.mh-promo-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mh-promo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1rem;
}

.mh-promo-img img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(45, 43, 112, 0.12);
}

.mh-promo-img-overlap {
    transform: translateY(20px);
}

/* ========================================
   FOOTER
   ======================================== */
.mh-footer {
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
    padding: 4rem 0 0;
}

.mh-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.mh-footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2D2B70;
    margin-bottom: 1rem;
}

.mh-footer-brand p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    max-width: 280px;
}

.mh-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.mh-footer-social a {
    color: #888;
    transition: color 0.2s;
}

.mh-footer-social a:hover {
    color: #2D2B70;
}

.mh-footer-links h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #333;
    margin-bottom: 1.25rem;
}

.mh-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mh-footer-links a {
    font-size: 0.8rem;
    color: #888;
    transition: color 0.2s;
}

.mh-footer-links a:hover {
    color: #2D2B70;
}

.mh-footer-newsletter h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #333;
    margin-bottom: 0.75rem;
}

.mh-footer-newsletter p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.mh-newsletter-form {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.mh-newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    outline: none;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.mh-newsletter-form input::placeholder {
    color: #bbb;
}

.mh-newsletter-form button {
    color: #666;
    padding: 0.5rem;
    transition: color 0.2s;
}

.mh-newsletter-form button:hover {
    color: #2D2B70;
}

.mh-footer-bottom {
    border-top: 1px solid #e8e8e8;
    padding: 1.5rem 0;
    text-align: center;
}

.mh-footer-bottom p {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #aaa;
}

/* ========================================
   RESPONSIVE - Tablet (768px~1024px)
   ======================================== */
@media (max-width: 1024px) {
    .mh-hero-text h1 {
        font-size: 2.8rem;
    }

    .mh-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mh-categories-inner {
        gap: 2.5rem;
    }

    .mh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .mh-promo-text h2 {
        font-size: 2.2rem;
    }
}

/* ========================================
   RESPONSIVE - Mobile (< 768px)
   ======================================== */
@media (max-width: 768px) {

    /* Header mobile */
    .mh-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .mh-nav.active {
        display: flex;
    }

    .mh-nav a {
        font-size: 1rem;
    }

    .mh-hamburger {
        display: flex;
    }

    /* Hero mobile */
    .mh-hero-inner {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        min-height: auto;
        text-align: center;
    }

    .mh-hero-text h1 {
        font-size: 2.5rem;
    }

    .mh-hero-text p {
        margin: 0 auto 2rem;
    }

    .mh-hero-images {
        order: -1;
        margin-bottom: 2rem;
    }

    .mh-hero-img-main {
        width: 50%;
    }

    .mh-hero-img-side {
        width: 38%;
    }

    /* Categories mobile */
    .mh-categories {
        padding: 2.5rem 0;
    }

    .mh-categories-inner {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mh-cat-icon {
        width: 56px;
        height: 56px;
    }

    /* Sections mobile */
    .mh-section {
        padding: 3rem 0;
    }

    .mh-section-inner {
        padding: 0 1.5rem;
    }

    .mh-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .mh-section-header h2 {
        font-size: 1.8rem;
    }

    .mh-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .mh-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .mh-product-img {
        padding: 1rem;
    }

    .mh-wishlist {
        opacity: 1;
    }

    /* Promo mobile */
    .mh-promo-inner {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .mh-promo-text h2 {
        font-size: 2rem;
    }

    .mh-promo-img {
        order: -1;
        margin-bottom: 1rem;
    }

    /* Footer mobile */
    .mh-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mh-footer-brand p {
        max-width: 100%;
    }

    .mh-header-inner {
        padding: 0 1rem;
    }
}

/* ========================================
   RESPONSIVE - Small Mobile (< 480px)
   ======================================== */
/* ========================================
   SHOP PAGES & MISC
   ======================================== */
.mh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
}

.mh-shop-content {
    min-height: 400px;
}

.mh-empty-msg {
    text-align: center;
    color: #999;
    font-size: 1rem;
    padding: 3rem 0;
    grid-column: 1 / -1;
}

.mh-product-card {
    display: block;
}

.mh-wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #999;
    transition: all 0.2s;
    opacity: 0;
}

.mh-product-card:hover .mh-wishlist-icon {
    opacity: 1;
}

@media (max-width: 480px) {
    .mh-hero-text h1 {
        font-size: 2rem;
    }

    .mh-section-header h2 {
        font-size: 1.5rem;
    }

    .mh-promo-text h2 {
        font-size: 1.6rem;
    }

    .mh-categories-inner {
        gap: 1rem;
    }

    .mh-cat-icon {
        width: 48px;
        height: 48px;
    }

    .mh-cat-item span {
        font-size: 0.6rem;
    }

    .mh-product-info h3 {
        font-size: 0.85rem;
    }
}

/* ========================================
   SHOP COMMON PAGES
   Search, Cart, Order, List, etc.
   ======================================== */

/* ---- Global shop page reset ---- */
#container_wr,
#container {
    width: auto !important;
    max-width: 1200px !important;
}

.mh-shop-content {
    font-family: 'Inter', sans-serif;
}

.mh-shop-content a {
    color: #1a1a2e;
}

.mh-shop-content h2 {
    font-family: 'Inter', sans-serif;
}

#wrapper_title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 1.5rem 0 1rem;
    border-bottom: 2px solid #1a1a2e;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

/* ========================================
   SEARCH PAGE (#ssch)
   ======================================== */
#ssch {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

#ssch>h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1a1a2e;
    letter-spacing: 0.02em;
}

#ssch>h2 strong {
    font-weight: 700;
    color: #2D2B70;
}

#ssch>h2 .ssch_result_total {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    margin-left: 0.75rem;
}

/* Search form */
#ssch_frm {
    background: #f8f8fc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ssch_frm_inner {
    max-width: 100%;
}

.ssch_scharea {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ssch_input,
#ssch_q {
    padding: 0.6rem 0.85rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    box-sizing: border-box;
}

#ssch_q {
    flex: 1;
    max-width: 480px;
}

/* 가격 입력 폼 컴팩트하게 */
.ssch_input {
    width: 110px;
    flex: 0 0 110px;
}

/* 상품 별점 이미지 사이즈 통일 */
.sct_star .sit_star,
.sct_star img {
    width: 78px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.ssch_input:focus,
#ssch_q:focus {
    border-color: #2D2B70;
}

#ssch .btn_submit {
    padding: 0.75rem 1.5rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    white-space: nowrap;
}

#ssch .btn_submit:hover {
    background: #2D2B70;
}

.tooltip_icon {
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.tooltip {
    display: none;
    position: absolute;
    background: #333;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    line-height: 1.6;
    z-index: 10;
    max-width: 400px;
}

/* Search options */
.ssch_option {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #555;
}

.ssch_option label {
    cursor: pointer;
    font-size: 0.8rem;
}

.ssch_option input[type="text"] {
    width: 100px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    background: #fff;
}

/* Search categories */
#ssch_cate {
    margin-bottom: 1rem;
}

#ssch_cate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

#ssch_cate li a {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.78rem;
    color: #555;
    transition: all 0.2s;
}

#ssch_cate li a:hover,
#ssch_cate li.active a {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

/* Sort buttons */
#ssch_sort_all {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

#ssch_sort_all li a {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.2s;
}

#ssch_sort_all li a:hover,
#ssch_sort_all li.active a {
    color: #1a1a2e;
    border-color: #1a1a2e;
    font-weight: 600;
}

/* ========================================
   PRODUCT LIST GRID (.sct, .sct_10)
   Used in search results, category lists
   ======================================== */
.sct.sct_10,
ul.sct {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sct_li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transition: transform 0.3s;
}

.sct_li:hover {
    transform: translateY(-4px);
}

.sct_img {
    position: relative;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.sct_img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sct_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s;
}

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

/* Cart/action overlay */
.sct_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(26, 26, 46, 0.85);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.sct_li:hover .sct_btn {
    opacity: 1;
}

.sct_btn button,
.sct_btn a {
    padding: 0.45rem 0.8rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-size: 0.72rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.sct_btn button:hover,
.sct_btn a:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Product text info */
.sct_ct_wrap {
    padding: 0.75rem 0.25rem 0;
}

.sct_txt a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sct_txt a:hover {
    color: #2D2B70;
}

.sct_basic {
    font-size: 0.78rem;
    color: #999;
    margin-top: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sct_bottom {
    margin-top: 0.5rem;
}

.sct_cost {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.sct_cost del {
    color: #bbb;
    font-weight: 400;
    font-size: 0.8rem;
}

.sct_op_btn {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sct_op_btn button {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.2s;
    padding: 0;
}

.sct_op_btn button:hover {
    color: #2D2B70;
}

.sit_icon_li {
    display: none;
}

/* SNS share popup */
.sct_sns_wrap {
    display: none;
    position: absolute;
    z-index: 10;
}

.sct_sns {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sct_sns h3 {
    font-size: 0.75rem;
    color: #888;
    margin-right: 0.25rem;
}

.sct_sns img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.sct_sns_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* ========================================
   CART PAGE (#sod_bsk)
   ======================================== */
#sod_bsk {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 3rem;
}

#sod_bsk_list .tbl_head03 {
    width: 100%;
    border-collapse: collapse;
}

#sod_bsk_list .tbl_head03 th {
    padding: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #555;
    background: #f8f8f8;
    border-bottom: 2px solid #ddd;
    text-align: center;
}

#sod_bsk_list .tbl_head03 td {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    text-align: center;
    /* border-bottom: 1px solid #eee; */
    color: #333;
}

.empty_table {
    padding: 3rem !important;
    text-align: center;
    color: #999;
    font-size: 0.95rem;
}

/* Cart actions */
#sod_bsk_act {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

#sod_bsk_act a,
#sod_bsk_act button {
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    letter-spacing: 0.05em;
    /* border: 2px solid #1a1a2e; */
}

#sod_bsk_act .btn01 {
    background: #fff;
    color: #1a1a2e;
}

#sod_bsk_act .btn01:hover {
    background: #f5f5f5;
}

#sod_bsk_act .btn02,
#sod_bsk_act input[type="submit"],
#sod_bsk_act button[type="submit"] {
    background: #1a1a2e;
    color: #fff;
}

#sod_bsk_act .btn02:hover {
    background: #2D2B70;
}

.btn_cart_del {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn_cart_del button,
.btn_cart_del a {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn_cart_del button:hover,
.btn_cart_del a:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

/* ========================================
   TABLE COMMON (order, mypage, etc.)
   ======================================== */
.tbl_wrap {
    max-width: 100%;
}

.tbl_wrap table {
    width: 100%;
}

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

.tbl_head03 thead th {
    padding: 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    background: #f8f8f8;
    border-bottom: 2px solid #ddd;
}

.tbl_head03 tbody td {
    padding: 0.75rem;
    font-size: 0.85rem;
    /* border-bottom: 1px solid #eee; */
    color: #333;
}

/* ========================================
   COMMON BUTTONS
   ======================================== */
.btn01,
.btn02 {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn01 {
    background: #fff;
    color: #1a1a2e;
    border: 1px solid #ddd;
}

.btn01:hover {
    border-color: #1a1a2e;
}

.btn02 {
    background: #1a1a2e;
    color: #fff;
    border: 1px solid #1a1a2e;
}

.btn02:hover {
    background: #2D2B70;
    border-color: #2D2B70;
}

/* Form elements */
.mh-shop-content input[type="text"],
.mh-shop-content input[type="password"],
.mh-shop-content input[type="email"],
.mh-shop-content select,
.mh-shop-content textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    outline: none;
    transition: border-color 0.2s;
}

.mh-shop-content input[type="text"]:focus,
.mh-shop-content input[type="password"]:focus,
.mh-shop-content select:focus,
.mh-shop-content textarea:focus {
    border-color: #2D2B70;
}

/* ========================================
   ORDER FORM PAGE (#sod_frm)
   ======================================== */
#sod_frm {
    max-width: 1200px;
    margin: 0 auto;
}

#sod_frm.sod_frm_pc {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

#sod_frm .od_prd_list {
    width: 100%;
    margin-bottom: 1rem;
}

/* Left column - ì£¼ë¬¸ìž/ë°°ì†¡ì§€ */
.sod_left {
    flex: 1 1 0 !important;
    min-width: 0;
    width: auto !important;
    float: none !important;
    display: block !important;
    margin-right: 0 !important;
}

/* Right column - ê²°ì œì •ë³´/ìš”ì•½ */
.sod_right {
    width: 360px !important;
    flex-shrink: 0;
    float: none !important;
    display: block !important;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}

/* Section headers */
#sod_frm section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid #eee;
    margin: 0;
}

#sod_frm_orderer,
#sod_frm_taker {
    border: 1px solid #eee !important;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.25rem;
}

/* Form tables */
#sod_frm .tbl_frm01 {
    padding: 1rem !important;
}

#sod_frm .tbl_frm01 th {
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    padding: 0.5rem 0.75rem !important;
    white-space: nowrap;
}

#sod_frm .tbl_frm01 td {
    padding: 0.5rem 0.75rem !important;
}

#sod_frm .tbl_frm01 td input[type="text"],
#sod_frm .tbl_frm01 td input[type="tel"],
#sod_frm .tbl_frm01 td input[type="email"] {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

#sod_frm .tbl_frm01 td input:focus {
    border-color: #2D2B70;
}

#sod_frm .tbl_frm01 td .addr button,
#sod_frm_taker .tbl_frm01 td .addr button {
    background: #1a1a2e !important;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

#sod_frm .tbl_frm01 td .addr button:hover {
    background: #2D2B70 !important;
}

/* Delivery choice */
#sod_frm_taker .choice_place {
    background: #f8f8fc !important;
    border: 1px solid #eee !important;
    border-radius: 6px;
    padding: 0.75rem 1rem !important;
    margin: 0.5rem 0 !important;
}

/* Right side - order summary */
.sod_right #sod_bsk_tot,
#forderform .sod_right #sod_bsk_tot {
    border: 1px solid #eee !important;
    border-radius: 8px;
    overflow: hidden;
}

.sod_right .sod_info li {
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.sod_right .sod_info li span {
    font-size: 0.75rem;
    color: #888;
}

.sod_right .sod_info .sod_bsk_cnt strong {
    color: #1a1a2e;
    font-size: 1.2rem;
}

.sod_right .sod_info_bt li span {
    font-size: 0.8rem;
}

.sod_right .sod_info_bt li strong {
    font-size: 0.85rem;
    color: #1a1a2e;
}

/* Payment section */
#sod_frm_pay {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.25rem;
}

.sod_right .pay_tbl {
    border: 1px solid #eee !important;
    border-radius: 8px;
    overflow: hidden;
}

/* Point section */
.sod_frm_point {
    background: #f8f8fc;
    border-radius: 6px;
    padding: 0.75rem;
    margin: 0.5rem 0;
}

/* Coupon */
.sod_right .sod_info_option .sod_ifop_tit .btn_frmline {
    padding: 0.25rem 0.6rem;
    border: 1px solid #2D2B70;
    color: #2D2B70;
    background: #fff;
    border-radius: 3px;
    font-size: 0.75rem;
    cursor: pointer;
}

/* Total price */
.sod_right #od_tot_price,
#od_tot_price {
    border: 2px solid #1a1a2e !important;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    background: #fff;
    margin-top: 0.75rem;
}

#od_tot_price strong {
    font-size: 1.4rem;
    color: #1a1a2e;
}

/* Agreement section */
#sod_ag {
    margin: 1.5rem 0;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.25rem;
    background: #fff;
}

#sod_ag h2 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

#sod_ag textarea {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

/* Submit button */
#sod_btn,
.sod_btn {
    text-align: center;
    margin: 1.5rem 0 3rem;
}

#sod_btn button,
#sod_btn input[type="submit"],
.sod_btn button,
.sod_btn input[type="submit"] {
    padding: 1rem 3rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

#sod_btn button:hover,
.sod_btn button:hover {
    background: #2D2B70;
}

/* Order product list table */
#sod_frm .od_prd_list table {
    width: 100%;
    border-collapse: collapse;
}

#sod_frm .od_prd_list th {
    padding: 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    background: #f8f8f8;
    border-bottom: 2px solid #ddd;
    text-align: center;
}

#sod_frm .od_prd_list td {
    padding: 0.75rem;
    font-size: 0.85rem;
    /* border-bottom: 1px solid #eee; */
    text-align: center;
    color: #333;
}

#sod_frm .od_prd_list td a {
    color: #1a1a2e;
}

#sod_frm .od_prd_list td img {
    border-radius: 4px;
}

/* ---- Order Form Responsive ---- */
@media (max-width: 1024px) {
    .sod_right {
        width: 320px !important;
    }
}

@media (max-width: 768px) {
    #sod_frm.sod_frm_pc {
        flex-direction: column;
    }

    .sod_left {
        width: 100% !important;
    }

    .sod_right {
        width: 100% !important;
        position: static;
    }

    #sod_frm .tbl_frm01 th {
        display: block;
        width: 100%;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        height: 2em;
    }

    #sod_frm .tbl_frm01 td {
        display: block;
        width: 100%;
    }

    #sod_frm .tbl_frm01 table {
        display: block;
    }

    #sod_frm .tbl_frm01 tbody {
        display: block;
        padding-top: 10px;
    }

    #sod_frm .tbl_frm01 tr {
        display: block;
        margin-bottom: 0.5rem;
    }

    #sod_btn button,
    .sod_btn button {
        width: 100%;
        padding: 1rem;
    }

    #sod_frm #od_name,
    #sod_frm #od_tel,
    #sod_frm #od_hp,
    #sod_frm #od_pwd,
    #sod_frm #od_b_name,
    #sod_frm #od_b_tel,
    #sod_frm #od_b_hp,
    #sod_frm #ad_subject,
    #sod_frm #od_hope_date {
        width: 100%;
    }
}

/* ========================================
   CATEGORY LIST PAGE
   ======================================== */
#sct_location {
    display: none;
}

/* ========================================
   REVIEW & Q&A (Item Detail)
   ======================================== */

/* -- Review Section -- */
#sit_use_list {
    padding: 0;
}

#sit_use_list>h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1rem;
}

.sit_use_top {
    background: #f8f8fc;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sit_use_top h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.sit_use_top h4 span {
    font-size: 0.8rem;
    color: #999;
}

.sit_use_top .sit_star {
    width: 80px;
    height: auto;
}

#sit_use_wbtn {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

#sit_use_wbtn a,
#sit_qa_wbtn a {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    text-decoration: none;
}

#sit_use_wbtn .btn02,
#sit_qa_wbtn .btn02 {
    background: #1a1a2e;
    color: #fff;
    border: 1px solid #1a1a2e;
}

#sit_use_wbtn .btn02:hover,
#sit_qa_wbtn .btn02:hover {
    background: #2D2B70;
}

#sit_use_wbtn .btn01,
#sit_qa_wbtn .btn01 {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
}

#sit_use_wbtn .btn01:hover,
#sit_qa_wbtn .btn01:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

/* Review list */
#sit_use_ol,
#sit_qa_ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sit_use_ol>li,
#sit_qa_ol>li {
    border-bottom: 1px solid #f0f0f0;
    padding: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

#sit_use_ol>li:last-child,
#sit_qa_ol>li:last-child {
    border-bottom: none;
}

/* Thumbnail */
.sit_thum {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Review/QA detail info */
.sit_use_dl,
.sit_qa_dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.sit_use_dl dt,
.sit_qa_dl dt {
    font-size: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.sit_use_dl dd,
.sit_qa_dl dd {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
}

.sit_use_star {
    display: flex;
    align-items: center;
}

.sit_use_star img {
    width: 70px;
    height: auto;
}

.sit_use_tit {
    font-size: 0.9rem !important;
    font-weight: 500;
    color: #1a1a2e !important;
    width: 100%;
}

/* Toggle button */
.sit_use_li_title,
.sit_qa_li_title {
    background: none;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
    color: #666;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sit_use_li_title:hover,
.sit_qa_li_title:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

.sit_qa_li_title .sit_qaa_yet {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: #fff3e0;
    color: #e65100;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    margin-right: 0.25rem;
}

.sit_qa_li_title .sit_qaa_done {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    margin-right: 0.25rem;
}

/* Review/QA content area - ê¸°ë³¸ ìˆ¨ê¹€, ë‚´ìš©ë³´ê¸° í´ë¦­ ì‹œ slideDown */
.sit_use_con,
.sit_qa_con {
    display: none;
    width: 100%;
    padding: 1rem;
    background: #fafafa;
    border-radius: 6px;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #444;
}

.sit_use_con img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Edit/Delete buttons */
.sit_use_con .btn_b,
.sit_qa_con .btn_b,
.sit_use_li .btn_b,
.sit_qa_li .btn_b,
#sit_use_ol button[type="button"],
#sit_qa_ol button[type="button"]:not(.sit_use_li_title):not(.sit_qa_li_title),
.sit_use_act,
.sit_qa_act {
    margin-top: 0.5rem;
}

.sit_use_act a,
.sit_use_act button,
.sit_qa_act a,
.sit_qa_act button,
#sit_use_ol .sit_use_li>a,
#sit_qa_ol .sit_qa_li>a {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    color: #666;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    text-decoration: none;
    margin-right: 0.25rem;
}

.sit_use_act a:hover,
.sit_use_act button:hover,
.sit_qa_act a:hover,
.sit_qa_act button:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

/* -- Q&A Section -- */
#sit_qa_list {
    padding: 0;
}

#sit_qa_list>h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1rem;
}

#sit_qa_wbtn {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Q&A answer */
.sit_qa_answer {
    padding: 1rem;
    background: #f0f4ff;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #333;
    border-left: 3px solid #2D2B70;
}

.sit_qa_answer strong {
    color: #2D2B70;
    font-size: 0.8rem;
}

/* No content */
#sit_use_ol .empty_li,
#sit_qa_ol .empty_li {
    display: block;
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.85rem;
}

.od_prd_list .td_prd {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.od_prd_list .td_prd .sod_name {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.od_prd_list .td_prd .sod_img {
    position: static !important;
}

/* ========================================
   REVIEW/QA RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .sit_use_top {
        flex-direction: column;
        align-items: flex-start;
    }

    #sit_use_wbtn,
    #sit_qa_wbtn {
        margin-left: 0;
    }

    #sit_use_ol>li,
    #sit_qa_ol>li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sit_thum {
        width: 60px;
        height: 60px;
    }


}

/* ========================================
   RESPONSIVE - Shop Pages
   ======================================== */
@media (max-width: 1024px) {

    .sct.sct_10,
    ul.sct {
        grid-template-columns: repeat(3, 1fr);
    }


}

@media (max-width: 768px) {

    /* í…Œì´ë¸” ë°˜ì‘í˜• - ì„¸ë¡œ ì¹´ë“œí˜• ë³€í™˜ */
    .tbl_wrap table,
    .tbl_wrap thead,
    .tbl_wrap tbody,
    .tbl_wrap th,
    .tbl_wrap td,
    .tbl_wrap tr,
    .tbl_head03 table,
    .tbl_head03 thead,
    .tbl_head03 tbody,
    .tbl_head03 th,
    .tbl_head03 td,
    .tbl_head03 tr {
        display: block;
        width: 100%;
    }

    .od_prd_list .td_prd .sod_name {
        min-height: auto;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .od_prd_list .td_prd::before {
        display: none;
    }

    .tbl_wrap thead,
    .tbl_head03 thead {
        display: none;
    }

    .tbl_wrap tr,
    .tbl_head03 tr {
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 0.75rem;
        background: #fff;
    }

    .tbl_wrap td,
    .tbl_head03 td {
        padding: 0.4rem 1rem !important;
        border: none !important;
        text-align: left !important;
        font-size: 0.85rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }




    .tbl_wrap td::before,
    .tbl_head03 td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.78rem;
        color: #888;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .tbl_wrap td.empty_table,
    .tbl_head03 td.empty_table {
        display: block;
        text-align: center !important;
    }

    .tbl_wrap td.empty_table::before,
    .tbl_head03 td.empty_table::before {
        display: none;
    }

    /* ì²´í¬ë°•ìŠ¤ ì…€ì€ í•œ ì¤„ */
    .tbl_wrap td.chk_box,
    .tbl_head03 td.chk_box {
        justify-content: flex-start;
    }

    .sct.sct_10,
    ul.sct {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ssch_scharea {
        flex-wrap: wrap;
    }

    #ssch_q {
        max-width: 100%;
    }

    .ssch_option {
        font-size: 0.75rem;
    }

    #ssch_sort_all {
        gap: 0.25rem;
    }

    #ssch_sort_all li a {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    #sod_bsk_act {
        flex-direction: column;
        align-items: stretch;
    }

    #sod_bsk_act a,
    #sod_bsk_act button {
        width: 100%;
    }

    .sct_btn {
        opacity: 1;
    }

    #ssch {
        padding: 1rem 0 3rem;
    }
}

@media (max-width: 480px) {

    .sct.sct_10,
    ul.sct {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sct_txt a {
        font-size: 0.8rem;
    }

    .sct_cost {
        font-size: 0.85rem;
    }

    .sct_img img {
        padding: 0.5rem;
    }
}