@charset "utf-8";

/* 메인 노출 관리 기본 스킨 */

.md-wrap { margin: 40px 0; }

.md-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.md-head-txt { min-width: 0; }
.md-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    letter-spacing: -0.02em;
}
.md-subtitle {
    margin: 6px 0 0;
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}
.md-more {
    flex: none;
    display: inline-block;
    padding: 7px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all .15s;
}
.md-more:hover { border-color: #222; color: #222; }

.md-list {
    display: grid;
    grid-template-columns: repeat(var(--md-cols, 4), 1fr);
    gap: 28px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.md-item { min-width: 0; }
.md-link { display: block; text-decoration: none; color: inherit; }

.md-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f5f5;
}
.md-thumb img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .35s ease;
}
.md-link:hover .md-thumb img { transform: scale(1.04); }

.md-flag {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.md-info { display: block; padding-top: 12px; }

.md-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: #222;
}
.md-basic {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.md-price { display: block; margin-top: 8px; }
.md-cust {
    margin-right: 6px;
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}
.md-sell {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.md-soldout .md-name,
.md-soldout .md-sell { color: #999; }

@media (max-width: 1024px) {
    .md-list { grid-template-columns: repeat(min(var(--md-cols, 4), 3), 1fr); gap: 24px 16px; }
    .md-title { font-size: 20px; }
}
@media (max-width: 640px) {
    .md-wrap { margin: 28px 0; }
    .md-list { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
    .md-title { font-size: 18px; }
    .md-subtitle { font-size: 13px; }
    .md-name { font-size: 14px; }
    .md-sell { font-size: 15px; }
}
