/* 
   VOG SPORTS Premium UI Design System
   Color Scheme: Deep Navy (#050a14) & Cobalt Blue (#2563eb)
   Font Stack: Pretendard, Montserrat, sans-serif
*/

:root {
    --primary: #050a14;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #eaebed;
    --badge-best: #f43f5e;
    --badge-new: #10b981;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(5, 10, 20, 0.08), 0 4px 6px -2px rgba(5, 10, 20, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(5, 10, 20, 0.12), 0 10px 10px -5px rgba(5, 10, 20, 0.06);
    --font-kr: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-en: 'Montserrat', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-kr);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    padding-bottom: 0; /* JS에서 모바일일 때 추가로 조절 */
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

button, input, select {
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
}

/* 1. 헤더 (GNB) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(234, 235, 237, 0.8);
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1440px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

/* 로고 스타일 */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-sub {
    font-family: var(--font-en);
    font-size: 9px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.25em;
    line-height: 1.2;
}

.brand-main {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* PC GNB */
.gnb ul {
    display: flex;
    gap: 20px; /* 40px에서 20px로 조절하여 레이아웃 터짐 방지 */
}

.gnb a {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.gnb li.active a, .gnb a:hover {
    color: var(--accent);
}

.gnb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--accent);
    transition: width 0.25s ease-out;
}

.gnb li.active a::after, .gnb a:hover::after {
    width: 100%;
}

/* 유틸 아이콘 */
.header-utils {
    display: flex;
    align-items: center;
    gap: 16px;
}

.util-btn {
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.util-btn:hover {
    background-color: rgba(5, 10, 20, 0.05);
    color: var(--accent);
}

/* 장바구니 배지 */
.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--accent);
    color: var(--bg-white);
    font-size: 9px;
    font-family: var(--font-en);
    font-weight: 800;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 모바일 전용 상단 탭 */
.mobile-tabs-container {
    display: none;
    border-top: 1px solid var(--border);
    background-color: var(--bg-white);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.mobile-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.mobile-tabs {
    display: flex;
    padding: 0 16px;
    white-space: nowrap;
}

.m-tab {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.m-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* 2. 메인 컨테이너 */
.container, #container {
    margin-top: 80px; /* 헤더 고정 높이값 */
}

/* 3. 히어로 배너 (Hero Section) */
.hero-section {
    width: 100%;
    height: auto !important;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 600px;
    color: var(--bg-white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    background-color: rgba(37, 99, 235, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.hero-title {
    font-family: var(--font-en);
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
    word-break: keep-all;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45);
}

/* 4. 쇼핑 섹션 */
.shop-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 4%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.sub-title {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

/* 정렬 필터 */
.sort-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    background-color: var(--bg-white);
    transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

/* 상품 그리드 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* 배지 */
.badge-container {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.badge {
    font-family: var(--font-en);
    font-size: 9px;
    font-weight: 900;
    color: var(--bg-white);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.badge.best {
    background-color: var(--badge-best);
}

.badge.new {
    background-color: var(--badge-new);
}

/* 이미지 박스 */
.product-img-box {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 비율 */
    background-color: #f1f5f9;
    overflow: hidden;
    cursor: pointer;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

/* 더미 플레이스홀더 */
.dummy-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}

.placeholder-icon {
    font-size: 42px;
    margin-bottom: 12px;
    color: rgba(5, 10, 20, 0.15);
}

/* 호버 액션 오버레이 */
.hover-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    padding: 10px;
    gap: 8px;
    transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.product-card:hover .hover-actions {
    bottom: 0;
}

.hover-btn {
    flex: 1;
    background-color: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.hover-btn:hover {
    background-color: var(--accent);
}

.add-to-cart-direct {
    flex: 0 0 40px; /* 아이콘 전용 좁은 버튼 */
    width: 40px;
}

/* 상품 디테일 정보 */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 12px;
    height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-name:hover {
    color: var(--accent);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
}

.product-rating i {
    color: #f59e0b; /* 골드 스타 */
    margin-right: 4px;
}

.rating-val {
    font-weight: 700;
    color: var(--primary);
    margin-right: 2px;
}

/* 5. 모바일 전용 바텀 네비 */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    justify-content: space-around;
    align-items: center;
    z-index: 90;
    box-shadow: 0 -4px 10px rgba(5, 10, 20, 0.03);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    width: 20%;
    height: 100%;
    gap: 4px;
}

.nav-item i {
    font-size: 18px;
}

.nav-item.active {
    color: var(--accent);
}

.icon-wrap {
    position: relative;
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--accent);
    color: var(--bg-white);
    font-size: 8px;
    font-weight: 800;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 모바일 전용 카테고리 덮개 */
.mobile-category-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 101;
    color: var(--bg-white);
    padding: 30px;
    animation: fadeIn 0.3s ease-out;
}

.mobile-category-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.menu-header h3 {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.close-menu-btn {
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-list li {
    margin-bottom: 24px;
}

.mobile-menu-list a {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-list i {
    font-size: 14px;
    color: var(--accent);
}

.mobile-menu-list .divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* 6. 실시간 검색바 레이어 */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.98);
    z-index: 110;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.search-box {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-box input {
    width: 100%;
    border-bottom: 2px solid var(--accent);
    padding: 16px 50px 16px 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-white);
}

.search-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
}

/* 7. 상품 상세 모달 */
.detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-white);
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    z-index: 20;
}

.modal-body {
    display: flex;
}

.modal-left {
    flex: 1.1;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-cat {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.modal-price {
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 12px;
}

.modal-review-count {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    word-break: keep-all;
}

.option-selection {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 24px;
}

.option-row {
    margin-bottom: 16px;
}

.option-row:last-child {
    margin-bottom: 0;
}

.option-row label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.styled-select {
    width: 100%;
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--bg-white);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    -webkit-appearance: none;
}

.qty-selector {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.qty-selector button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--bg-light);
    color: var(--primary);
    font-size: 10px;
    transition: background 0.2s ease;
}

.qty-selector button:hover {
    background-color: var(--border);
}

.qty-selector input {
    width: 44px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

/* 총합계 */
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.total-row span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.total-price {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
}

/* 모달 액션 버튼 */
.action-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    padding: 16px 0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-secondary {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--border);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* 8. 장바구니 사이드바 */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px; /* 대기 위치 */
    width: 420px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1200;
    box-shadow: -10px 0 30px rgba(5, 10, 20, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-header h3 {
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.cart-close-btn {
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f1f5f9;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.cart-item-option {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-item-price {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--badge-best);
}

.cart-sidebar-footer {
    padding: 30px;
    border-top: 1px solid var(--border);
    background-color: var(--bg-light);
}

.cart-total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-info span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.cart-total-info strong {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 16px 0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 10, 20, 0.15);
    transition: all 0.25s ease;
}

.checkout-btn:hover {
    background-color: #121824;
}

.cart-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1199;
}

.cart-backdrop.open {
    display: block;
}

/* 9. 푸터 */
.footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 80px 4% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .brand-main {
    color: var(--bg-white);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links ul a:hover {
    color: var(--bg-white);
}

.footer-contact {
    flex: 1.5;
    min-width: 250px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
}

.social-icons a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   00. 최상단 띠배너 및 헤더 위치 보정
   ========================================================================== */
.top-ad-banner {
    width: 100%;
    height: 40px;
    background-color: var(--primary);
    color: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: transform 0.3s ease;
}

.top-ad-banner p {
    margin: 0 auto;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-ad-banner a.ad-link {
    color: #ffd60a;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 800;
}

.close-ad-btn {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 4%;
    background: none;
    border: none;
}

.close-ad-btn:hover {
    color: var(--bg-white);
}

/* 띠배너 활성화 시 헤더 및 레이아웃 밀어내기 */
body.has-top-ad .main-header {
    top: 40px;
}

body.has-top-ad .container, body.has-top-ad #container {
    margin-top: 120px; /* PC 헤더 80px + 배너 40px */
}

/* ==========================================================================
   11. 상품 상세페이지 스타일
   ========================================================================== */
.detail-page-body {
    background-color: var(--bg-light);
}

.detail-container {
    max-width: 1280px;
    margin: 80px auto;
    padding: 40px 4% 80px;
}

.breadcrumbs {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs i {
    font-size: 8px;
    margin: 0 8px;
    color: var(--text-muted);
}

.detail-main-section {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

/* 이미지 갤러리 */
.detail-gallery {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f1f5f9;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background-color: #f1f5f9;
    transition: all 0.2s ease;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--accent);
}

/* 정보 구매 블록 */
.detail-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-info-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.prod-cat-badge {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.prod-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.prod-badges {
    display: flex;
    gap: 6px;
}

.prod-price-row {
    margin-bottom: 24px;
}

.original-price {
    font-family: var(--font-en);
    font-size: 16px;
    text-decoration: line-through;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.sale-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.discount-rate {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 900;
    color: var(--badge-best);
}

.sale-price {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
}

.prod-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.rating-number {
    font-weight: 800;
    font-size: 14px;
}

.review-count {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: underline;
}

/* 배송 박스 */
.shipping-info-box {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.ship-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 13px;
}

.ship-row:last-child {
    margin-bottom: 0;
}

.ship-label {
    width: 90px;
    font-weight: 700;
    color: var(--text-muted);
}

.ship-val {
    font-weight: 600;
    color: var(--primary);
}

/* 옵션 영역 */
.option-box {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    margin-bottom: 30px;
}

.detail-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.detail-total-row span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.detail-action-buttons {
    display: flex;
    gap: 12px;
}

.btn-wish {
    flex: 0 0 54px;
    height: 54px;
    font-size: 20px;
}

.btn-wish.active i {
    color: var(--badge-best);
    font-weight: 900;
}

.btn-add-cart, .btn-checkout {
    height: 54px;
}

/* 상세 정보 탭 */
.detail-content-tabs {
    margin-top: 60px;
}

.tab-menu {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}

.tab-item.active, .tab-item:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-count {
    font-size: 11px;
    background-color: var(--border);
    color: var(--text-muted);
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

.tab-item.active .tab-count {
    background-color: var(--primary);
    color: var(--bg-white);
}

.tab-content-panel {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content-panel.active {
    display: block;
}

/* 탭 상세 컨텐츠 */
.description-visual {
    margin-bottom: 50px;
}

.visual-banner {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 6%;
    color: var(--bg-white);
}

.visual-text h3 {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.visual-text h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.visual-text p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    line-height: 1.6;
    word-break: keep-all;
}

.spec-table-wrap h4 {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--primary);
    background-color: var(--bg-white);
}

.spec-table th, .spec-table td {
    border: 1px solid var(--border);
    padding: 14px 20px;
    font-size: 13px;
}

.spec-table th {
    background-color: var(--bg-light);
    font-weight: 800;
    color: var(--primary);
    width: 15%;
}

.spec-table td {
    font-weight: 600;
    color: var(--text-main);
}

/* 리뷰 요약 */
.reviews-summary {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.sum-left {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--border);
}

.large-rating {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.sum-total-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.sum-right {
    flex: 1.5;
    padding-left: 40px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.rating-bar-row:last-child {
    margin-bottom: 0;
}

.rating-bar-row span {
    width: 30px;
}

.rating-bar {
    flex-grow: 1;
    height: 6px;
    background-color: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #f59e0b;
    border-radius: 3px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.rev-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.rev-author {
    font-weight: 700;
}

.rev-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.rev-body {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.6;
    word-break: keep-all;
}

/* Q&A 테이블 */
.qa-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.qa-write-btn {
    padding: 8px 18px;
    border-radius: 8px;
}

.qa-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--primary);
    background-color: var(--bg-white);
}

.qa-table th, .qa-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    text-align: center;
}

.qa-table th {
    background-color: var(--bg-light);
    font-weight: 800;
}

.qa-table td {
    font-weight: 600;
}

.qa-title {
    text-align: left !important;
    cursor: pointer;
}

.qa-title i {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 6px;
}

.qa-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.qa-status.solved {
    background-color: #eff6ff;
    color: var(--accent);
}

.shipping-policy-box {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.shipping-policy-box h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.shipping-policy-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    word-break: keep-all;
}

/* 모바일 둥근 옵션 레이어 및 모바일 바텀 시트 */
.mobile-detail-checkout-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    z-index: 95;
    padding: 8px 16px;
    gap: 12px;
    box-shadow: 0 -4px 10px rgba(5, 10, 20, 0.05);
}

.btn-wish-m {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    background: none;
}

.btn-wish-m.active i {
    color: var(--badge-best);
    font-weight: 900;
}

.mobile-detail-checkout-bar .btn {
    flex-grow: 1;
    height: 48px;
    border-radius: 10px;
}

.mobile-options-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
}

.layer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.5);
    backdrop-filter: blur(2px);
}

.layer-content {
    position: absolute;
    bottom: -100%; /* 대기 */
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -10px 30px rgba(5, 10, 20, 0.15);
    z-index: 10;
    transition: bottom 0.3s ease-out;
}

.mobile-options-layer.open .layer-content {
    bottom: 0;
}

.layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.layer-header h4 {
    font-size: 14px;
    font-weight: 800;
}

.layer-header button {
    font-size: 18px;
    color: var(--primary);
    background: none;
    border: none;
}

.layer-body {
    padding: 20px;
}

.layer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.layer-total-row span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.layer-action-buttons {
    display: flex;
    gap: 10px;
}

.layer-action-buttons .btn {
    height: 48px;
}

/* ==========================================================================
   10. 반응형 미디어 쿼리
   ========================================================================== */
@media (min-width: 1025px) and (max-width: 1250px) {
    .gnb ul {
        gap: 12px;
    }
    .gnb a {
        font-size: 11px;
    }
    .header-inner {
        padding: 0 2%;
    }
    .brand-main {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .gnb {
        display: none; /* PC 메인 메뉴 숨김 */
    }
    
    .mobile-tabs-container {
        display: block; /* 모바일 카테고리 탭 활성화 */
    }
    
    .header-inner {
        height: 60px; /* 모바일 대응 헤더 높이 감소 */
    }
    
    .container, #container {
        margin-top: 104px; /* 모바일용 헤더 높이 + 탭 높이 */
    }
    
    body.has-top-ad .main-header {
        top: 40px;
    }
    
    body.has-top-ad .container, body.has-top-ad #container {
        margin-top: 144px; /* 104px + 40px */
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2열로 변경 */
        gap: 16px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .hover-actions {
        display: none; /* 터치 스크린 대응 호버 액션 비활성화 */
    }
    
    .mobile-bottom-nav {
        display: flex; /* 하단 퀵네비바 활성화 */
    }
    
    body {
        padding-bottom: 60px; /* 모바일 바텀 네비 공간 마련 */
    }
    
    .footer {
        padding: 50px 6% 100px; /* 바텀 네비 마진 및 패딩 조절 */
    }

    .modal-content {
        max-width: 90%;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-left {
        width: 100%;
        height: 250px;
    }

    .modal-right {
        padding: 24px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    /* 상품 상세 페이지 반응형 모바일 대응 */
    .detail-container {
        padding: 20px 4% 80px;
        margin-top: 104px;
    }

    .detail-main-section {
        flex-direction: column;
        gap: 30px;
    }

    .detail-info-block {
        padding: 0;
    }

    .mobile-detail-checkout-bar {
        display: flex;
    }

    .detail-info-block .detail-action-buttons {
        display: none; /* PC용 구매 버튼 숨김 */
    }

    .spec-table th {
        width: 25%;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .sum-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        width: 100%;
    }

    .sum-right {
        width: 100%;
        padding-left: 0;
    }

    .qa-table th:nth-child(4), .qa-table td:nth-child(4) {
        display: none; /* 모바일에서 작성일 숨김 */
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 320px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 11px;
    }

    .section-title {
        font-size: 20px;
    }

    .sort-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 6px;
        max-width: 180px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* ==========================================================================
   12. 광고 슬라이드 캐러셀 스타일 (Hero Slider)
   ========================================================================== */
.hero-section {
    position: relative !important;
    width: 100vw !important;
    left: 50% !important;
    margin-left: -50vw !important;
    aspect-ratio: 1920 / 700 !important; /* 슬라이더 비율을 1920x700으로 강제 잠금 */
    height: auto !important;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100% !important;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 첫 번째 슬라이드 강제 잠금 해제 및 절대 배치 통일 */
.hero-slide:first-child {
    position: absolute !important;
    height: 100% !important;
    display: block !important;
}

.hero-slide:first-child .hero-bg-img {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important; /* 비율 강제 고정 및 자동 크롭 */
    z-index: 1;
}

.hero-slide a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
}

.hero-slide:first-child a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* 네비게이션 화살표 */
.slide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(5, 10, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-size: 18px;
}

.slide-nav-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* 슬라이드 인디케이터 */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--accent);
    width: 30px;
    border-radius: 5px;
}


/* ==========================================================================
   13. ON THE GROUND 비디오 섹션 스타일
   ========================================================================== */
.main-video-section {
    margin: 80px auto;
    padding: 0 4%;
    max-width: 1280px;
}

.video-grid-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.video-block-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
}

.video-section-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.main-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--primary);
}

.main-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* 유저 클릭 차단하여 루프 자동 재생 */
}

.trans-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,10,20,0.1) 60%, rgba(5,10,20,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-products-right {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.video-products-right h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
}

.mini-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 335px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom premium scrollbar for mini-product-list */
.mini-product-list::-webkit-scrollbar {
    width: 4px;
}
.mini-product-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}
.mini-product-list::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}
.mini-product-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.mini-prod-item {
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mini-prod-item:hover {
    background-color: var(--bg-light);
    transform: translateX(5px);
}

.mini-prod-img-wrap {
    width: 70px !important;
    height: 70px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background-color: var(--bg-light) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.mini-prod-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.mini-prod-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-prod-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.mini-prod-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-en);
}


/* ==========================================================================
   14. 커스텀 유니폼 제작 와이드 배너
   ========================================================================== */
.custom-uniform-banner-section {
    margin: 80px auto;
    padding: 0 4%;
    max-width: 1280px;
}

.custom-uniform-inner {
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 60px 8%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
}

.custom-text-box {
    max-width: 600px;
    color: var(--bg-white);
}

.custom-text-box h3 {
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.custom-text-box h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.custom-text-box p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-custom-inquire {
    background-color: var(--accent);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-custom-inquire:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    color: var(--bg-white) !important;
}

.btn-custom-view-samples {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.btn-custom-view-samples:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .btn-custom-inquire, .btn-custom-view-samples {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 12px !important;
    }
}


/* ==========================================================================
   15. 인스타그램 피드 연동 스타일
   ========================================================================== */
.instagram-feed-section {
    margin: 80px auto;
    padding: 0 4% 120px;
    max-width: 1280px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.insta-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.insta-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.insta-overlay i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #f43f5e; /* 인스타 그래디언트/로즈 포인트 */
}

.insta-overlay span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.insta-item:hover .insta-img {
    transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}


/* ==========================================================================
   16. 마이페이지 (mypage.html) 고유 스타일
   ========================================================================== */
.mypage-body {
    background-color: var(--bg-light);
}

.mypage-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px 4% 100px;
}

.mypage-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 회원 정보 요약 상단 블록 */
.mypage-overview-section {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.user-profile-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.user-avatar-wrap {
    position: relative;
    width: 80px;
    height: 80px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    border: 2px solid var(--border);
}

.btn-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--bg-white);
    border: none;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.user-name-wrap h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.user-name-wrap h3 strong {
    font-weight: 900;
    color: var(--accent);
}

.membership-level {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    background-color: #fef3c7;
    color: #d97706;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 6px;
}

.btn-leave-member {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-leave-member:hover {
    background-color: #fee2e2;
    color: #ef4444;
    border-color: #fee2e2;
}

/* 혜택 상태 카드 바 */
/* 혜택 상태 카드 바 */
.benefit-status-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.benefit-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.benefit-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-en);
}

.benefit-value span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 2px;
}

/* 나의 정보 상세 토글 */
.info-toggle-box {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.btn-toggle-info {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.detailed-info-list {
    display: none;
    grid-template-columns: 120px 1fr;
    gap: 16px 10px;
    margin-top: 20px;
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    font-size: 13px;
}

.detailed-info-list dt {
    font-weight: 800;
    color: var(--text-muted);
}

.detailed-info-list dd {
    color: var(--primary);
}

.detailed-info-list dd.add {
    line-height: 1.5;
}

/* 최근 주문 / 위시리스트 분할 섹션 */
.mypage-split-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.mypage-section {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
}

.section-title-row h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.section-title-row .view-all {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-title-row .view-all:hover {
    color: var(--accent);
}

/* 주문 아이템 카드 */
.order-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    align-items: center;
}

.order-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.order-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-date {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

.order-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.order-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.order-price {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.delivery-status {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.delivery-status.shipping {
    background-color: #eff6ff;
    color: var(--accent);
}

.delivery-status.completed {
    background-color: #f3f4f6;
    color: var(--text-muted);
}

/* 위시 아이템 카드 */
.wish-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wish-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.wish-item:hover {
    background-color: var(--bg-light);
}

.wish-img-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
}

.wish-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wish-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    padding-right: 20px;
}

.wish-price {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-en);
}

.btn-wish-delete {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

.btn-wish-delete:hover {
    color: #ef4444;
}

/* 모바일 전용 반응형 추가 보완 */
@media (max-width: 1024px) {
    .video-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mypage-split-section {
        grid-template-columns: 1fr;
    }
    
    .mypage-container {
        margin-top: 104px;
    }
}

@media (max-width: 640px) {
    .custom-uniform-inner {
        padding: 40px 6%;
    }
    
    .custom-text-box h2 {
        font-size: 24px;
    }
    
    .user-profile-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .btn-leave-member {
        position: static;
        transform: none;
        margin-top: 10px;
    }
    
    .benefit-status-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================================================
   17. 상품 리스트 페이지 (list.html) 고유 스타일
   ========================================================================== */
.list-page-body {
    background-color: var(--bg-light);
}

.list-container {
    max-width: 1280px;
    margin: 80px auto;
    padding: 40px 4% 100px;
}

.list-header-box {
    margin-bottom: 30px;
    text-align: center;
}

.list-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.list-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

/* 중분류 소분류 탭 필터 */
.subcategory-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.subcat-tab-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subcat-tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.subcat-tab-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* 정렬 필터 및 메타 정보 */
.list-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.total-count-box {
    font-size: 14px;
    color: var(--text-main);
}

.total-count-box strong {
    color: var(--accent);
    font-weight: 800;
}

.list-sort-filters {
    display: flex;
    gap: 16px;
}

.sort-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.sort-btn:hover, .sort-btn.active {
    color: var(--accent);
}

/* 페이징네이션 */
.list-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.pag-btn, .pag-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--bg-white);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.pag-num:hover, .pag-num.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

.pag-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 1024px) {
    .list-container {
        margin-top: 104px;
    }
}

@media (max-width: 768px) {
    .related-products-section .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* ==========================================================================
   Youngcart / Gnuboard Native Skin Overrides (정적 시안을 실DB 디자인으로 강제 연동)
   ========================================================================== */

/* 1. 기본 쇼핑몰 아사이드(사이드바) 및 불필요한 그누보드 기본 요소 완벽 삭제 */
#aside, .sct_noitem, #wrapper_title, #text_size, .sit_star, .sct_star, .sct_icon, .sns_share {
    display: none !important;
}

/* 2. PC/모바일 로고 동적 마크업 지원 */
.main-header .logo img {
    height: 52px !important;
    width: auto !important;
    object-fit: contain !important;
}

.footer-brand .logo img {
    height: 30px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
}

/* 3. 영카트 기본 상품목록 UL(sct), product-grid를 4열 그리드로 변경 */
ul.sct, .product-grid, ul.lists-row, ul.smt, ul[class*="smt_"] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 20px 0 60px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

@media (max-width: 1024px) {
    ul.sct, .product-grid, ul.lists-row, ul.smt, ul[class*="smt_"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 768px) {
    ul.sct, .product-grid, ul.lists-row, ul.smt, ul[class*="smt_"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 40px !important;
    }
}

/* 그리드 컨테이너 내부의 clearfix용 의사 요소(:before, :after)가 그리드 아이템으로 취급되어 첫 번째 셀이 비어 밀리는 현상 방지 */
ul.sct::before, ul.sct::after,
.product-grid::before, .product-grid::after,
ul.lists-row::before, ul.lists-row::after,
ul.smt::before, ul.smt::after,
ul[class*="smt_"]::before, ul[class*="smt_"]::after {
    display: none !important;
    content: none !important;
}

/* 4. 영카트 기본 상품 카드 LI(sct_li)를 프리미엄 카드 디자인으로 변경 */
.sct_li, .product-grid li {
    width: 100% !important;
    background-color: var(--bg-white) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    transition: top 0.3s ease, box-shadow 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    top: 0 !important;
    float: none !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.sct_li:hover, .product-grid li:hover {
    top: -8px !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12) !important;
}

/* 5. 상품 이미지 영역 고정 */
.sct_img, .product-grid .product-img-box {
    position: relative !important;
    width: 100% !important;
    padding: 0 !important;
    padding-top: 100% !important; /* 1:1 비율 */
    background-color: #f3f4f6 !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.sct_img a, .product-grid .product-img-box a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sct_img img, .product-grid img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.sct_li:hover .sct_img img {
    transform: scale(1.08) !important;
}

/* 6. 상품 제목 텍스트 */
.sct_txt {
    padding: 20px 20px 6px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.sct_txt a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.sct_txt a:hover {
    color: var(--primary) !important;
}

/* 7. 상품 가격 영역 */
.sct_cost {
    padding: 0 20px 24px 20px !important;
    font-family: var(--font-en) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    text-align: left !important;
    margin: 0 !important;
}

/* 8. 영카트 분류 페이지(list.php) 레이아웃 보정 */
#sct_himg, #sct_timg {
    margin-bottom: 20px !important;
}

.sct_category_title {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin: 60px 0 10px 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* 9. 비디오 섹션 (ON THE GROUND) 정렬 가로폭 보정 */
.video-section {
    max-width: 1440px !important;
    margin: 80px auto !important;
    padding: 0 30px !important;
}

.video-grid-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 40px !important;
    align-items: stretch !important;
}

.video-player-box {
    position: relative !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.video-wrapper {
    position: relative !important;
    padding-bottom: 56.25% !important; /* 16:9 ratio */
    height: 0 !important;
    overflow: hidden !important;
}

.video-wrapper iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    transform: scale(1.35) !important;
    transform-origin: center center !important;
    pointer-events: none !important;
}

.video-wrapper video.campaign-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: none !important;
    pointer-events: none !important;
}

.video-products-box {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    padding: 35px 30px !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
}

.video-products-box .box-header {
    border-bottom: 2px solid #050a14 !important;
    padding-bottom: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.video-products-box .box-header .tag {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

.video-products-box .box-header h4 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #050a14 !important;
    margin: 0 !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
}

.video-products-box .box-header .sub-desc {
    font-size: 13px !important;
    color: #6b7280 !important;
    margin: 4px 0 0 0 !important;
    line-height: 1.4 !important;
}

.video-overlay-text {
    padding: 24px 30px !important;
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
}

.video-overlay-text .campaign-tag {
    display: inline-block !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 6px !important;
}

.video-overlay-text h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #050a14 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
}

.video-overlay-text p {
    font-size: 13px !important;
    color: #4b5563 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

@media (max-width: 1024px) {
    .video-grid-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .video-wrapper iframe {
        transform: scale(1.65) !important;
    }
}

/* ==========================================================================
   VOG SPORTS Hero Slider & Product Hover Action Controls (슬라이더 화살표/도트 및 호버 효과)
   ========================================================================== */

/* 1. 슬라이더 화살표 (이동 버튼) */
.hero-section .slide-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: var(--bg-white) !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    padding: 0 !important;
}

.hero-section .slide-nav:hover {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

.hero-section .slide-nav.prev {
    left: 30px !important;
}

.hero-section .slide-nav.next {
    right: 30px !important;
}

/* 2. 슬라이더 인디케이터 (도트) */
.hero-section .slide-indicators {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 10 !important;
}

.hero-section .slide-indicators .indicator {
    width: 24px !important;
    height: 4px !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.hero-section .slide-indicators .indicator.active {
    background-color: var(--accent) !important;
    width: 40px !important;
}

/* 3. 영카트 상품목록 이미지 호버 오버레이 (빠른보기 / 담기) */
.sct_img {
    position: relative !important;
}

.sct_img .hover-actions {
    position: absolute !important;
    bottom: -60px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    padding: 10px !important;
    gap: 8px !important;
    transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 5 !important;
    box-sizing: border-box !important;
}

.sct_li:hover .sct_img .hover-actions {
    bottom: 0 !important;
}

.sct_img .hover-actions .hover-btn {
    flex: 1 !important;
    background-color: rgba(5, 10, 20, 0.85) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    color: var(--bg-white) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.sct_img .hover-actions .hover-btn:hover {
    background-color: var(--accent) !important;
}

.sct_img .hover-actions .add-to-cart-direct {
    flex: 0 0 40px !important;
    width: 40px !important;
}

/* 4. 분류 헤더 및 불필요한 그누보드 기본 버튼들 숨김 */
.sct_btn, .cart-layer, .list-10-btn {
    display: none !important;
}

/* PC화면 카테고리/메인 콘텐츠 가로폭 확대 및 정렬 보정 */
@media (min-width: 1024px) {
    #container {
        width: 100% !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
        padding: 0 40px !important;
        margin-top: 80px !important; /* 고정 GNB 헤더 아래로 레이아웃 밀기 */
    }
    body.has-top-ad #container {
        margin-top: 120px !important; /* 상단 띠배너 활성화 시 마진 추가 */
    }
    #container .shop-content {
        margin-left: 0 !important; /* 메인 페이지의 sidebar 마진 제거 */
    }
}

/* 태블릿 및 모바일 기기(1024px 이하)에서 PC용 퀵메뉴(side_menu) 강제 감춤 */
@media (max-width: 1024px) {
    #side_menu {
        display: none !important;
    }
}

/* 분류 페이지 상/하단 HTML 배너 이미지 크기 및 레이아웃 보정 */
#sct_hhtml, #sct_thtml {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto 30px auto !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#sct_hhtml img, #sct_thtml img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* 영카트 기본 백업 배너 영역 (#main_bn) 이미지 반응형 보정 */
#main_bn {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto 30px auto !important;
    overflow: hidden !important;
    position: relative !important;
}

#main_bn .slide-wrap, #main_bn .main_banner_owl {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

#main_bn img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* 크림 테마에서 넘어온 bx_pager 또는 owl_pager 등의 배너 탭 레이아웃 보정 */
#bx_pager, .owl_pager {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto 20px auto !important;
    text-align: center !important;
}

#bx_pager ul, .owl_pager ul {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    list-style: none !important;
    padding: 0 !important;
}

#bx_pager li a, .owl_pager li a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
}



/* ==========================================================================
   18. 마이페이지 (My Page) 프리미엄 UI 스타일 (최종 보정본)
   ========================================================================== */
#smb_my {
    max-width: 1440px !important;
    margin: 40px auto 100px !important;
    padding: 0 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    box-sizing: border-box !important;
}

/* 상단 와이드 프로필 & 스탯 배너 */
.my-profile-banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: linear-gradient(135deg, #050a14 0%, #101e36 100%) !important;
    border-radius: 20px !important;
    padding: 40px 50px !important;
    box-shadow: 0 20px 40px rgba(5, 10, 20, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: var(--bg-white) !important;
    gap: 0px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.banner-main-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 30px !important;
}

/* 배너 내부 글로우 효과 데코 */
.my-profile-banner::after {
    content: "" !important;
    position: absolute !important;
    top: -50% !important;
    right: -20% !important;
    width: 300px !important;
    height: 300px !important;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.profile-left {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    z-index: 2 !important;
}

.avatar-wrap img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    border: 4px solid var(--accent) !important;
    object-fit: cover !important;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.4) !important;
    background-color: var(--bg-white) !important;
}

.profile-meta .greeting-sub {
    font-family: var(--font-en) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
    letter-spacing: 0.25em !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.profile-meta .greeting-main {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: var(--bg-white) !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.03em !important;
}

.profile-meta .greeting-main strong {
    font-weight: 900 !important;
    color: var(--bg-white) !important;
}

.profile-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 15px !important;
}

.profile-actions a, .profile-actions button {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.profile-actions a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    color: var(--bg-white) !important;
}

.profile-actions a.btn-modify {
    background-color: var(--accent) !important;
    color: var(--bg-white) !important;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35) !important;
}

.profile-actions a.btn-modify:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5) !important;
}

.profile-actions a.btn-logout {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.profile-actions a.btn-logout:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px) !important;
}

/* 우측 스탯 목록 - 영카트 default_shop.css 강제 덮어쓰기 해제 */
.profile-right {
    flex: 1 !important;
    max-width: 600px !important;
    z-index: 2 !important;
}

#smb_my #smb_private {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

#smb_my #smb_private li {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    list-style: none !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

#smb_my #smb_private li:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--accent) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25) !important;
}

#smb_my #smb_private li a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    background: none !important; /* 흰 배경 제거 */
    padding: 20px 10px !important; /* 패딩 강제 지정 */
    color: var(--bg-white) !important; /* 텍스트 흰색 */
    height: 100% !important;
    border: none !important;
}

#smb_my #smb_private li a:after {
    display: none !important; /* 호버 시 생기는 파란 세로선 제거 */
}

.profile-right .stat-icon-box {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background-color: rgba(37, 99, 235, 0.15) !important;
    color: var(--accent) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

#smb_my #smb_private li:hover .stat-icon-box {
    background-color: var(--accent) !important;
    color: var(--bg-white) !important;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.4) !important;
}

.profile-right .stat-label {
    display: block !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important; /* 라벨 텍스트 잘 보이게 처리 */
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.01em !important;
}

/* 영카트 default_shop.css 강제 뱃지 배경 제거 및 숫자 정렬 리셋 */
#smb_my #smb_private li a strong {
    display: block !important;
    float: none !important;
    font-family: var(--font-en) !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--bg-white) !important;
    background: none !important; /* 초록, 보라 등 배경 지우기 */
    padding: 0 !important;
    border-radius: 0 !important;
    max-width: none !important;
    margin-top: 2px !important;
}

/* 접이식 상세정보 토글 버튼 (프로필 액션바 연동) */
.profile-actions .btn-toggle-info {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: pointer !important;
    outline: none !important;
}

.profile-actions .btn-toggle-info:hover, .profile-actions .btn-toggle-info.active {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35) !important;
}

.profile-actions .btn-toggle-info .toggle-arrow {
    margin-left: 6px !important;
    font-size: 10px !important;
    transition: transform 0.3s ease !important;
}

.profile-actions .btn-toggle-info.active .toggle-arrow {
    transform: rotate(180deg) !important;
}

/* 배너 내부 편입 상세정보 패널 */
.my-info-detail-panel {
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    margin-top: 30px !important;
    padding: 30px 40px !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

/* op_area 상세 레이아웃 */
.my-info-detail-panel .op_area {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.info-grid-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.info-grid-item.full-width {
    grid-column: 1 / -1 !important;
}

.my-info-detail-panel dt {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.4) !important; /* 은은한 은회색 */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.my-info-detail-panel dt i {
    color: var(--accent) !important;
    font-size: 13px !important;
}

.my-info-detail-panel dd {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--bg-white) !important; /* 가독성을 위한 선명한 흰색 */
    margin: 0 !important;
    padding: 0 !important;
}

.my-info-detail-panel .panel-footer {
    margin-top: 24px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.my-info-detail-panel .withdrawal {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
    transition: color 0.2s ease !important;
}

.my-info-detail-panel .withdrawal:hover {
    color: #f43f5e !important;
}

/* 대시보드 리스트 영역 (2열 배치) */
.dashboard-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    width: 100% !important;
}

.dashboard-card {
    background-color: var(--bg-white) !important;
    border: 1px solid var(--border) !important;
    border-radius: 20px !important;
    padding: 35px !important;
    box-shadow: var(--shadow-sm) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

/* 프리미엄 액센트 헤더 라인 */
.dashboard-card h2 {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
    margin: 0 0 10px 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    letter-spacing: -0.01em !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.dashboard-card h2::before {
    content: "" !important;
    display: inline-block !important;
    width: 4px !important;
    height: 18px !important;
    background-color: var(--accent) !important;
    border-radius: 2px !important;
}

/* 더보기 버튼 */
.dashboard-card .smb_my_more {
    position: absolute !important;
    top: 35px !important;
    right: 35px !important;
}

.dashboard-card .smb_my_more a {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: color 0.2s ease !important;
}

.dashboard-card .smb_my_more a:hover {
    color: var(--accent) !important;
}

/* 주문 내역 영카트 테이블 -> 카드형 행(row) 레이아웃으로 격상 */
#smb_my_od .tbl_head01 {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 10px !important; /* 행 간의 마진처럼 작동 */
    margin: 0 !important;
}

#smb_my_od .tbl_head01 th {
    background: none !important;
    color: var(--text-muted) !important;
    font-weight: 800 !important;
    padding: 0 10px 10px 10px !important;
    border: none !important;
    border-bottom: 2px solid var(--border) !important;
    font-size: 12px !important;
    text-align: center !important;
}

#smb_my_od .tbl_head01 td {
    padding: 16px 12px !important;
    border: none !important;
    background-color: var(--bg-light) !important; /* 연한 회색 카드 배경 */
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-align: center !important;
    vertical-align: middle !important;
    transition: background-color 0.2s ease !important;
}

/* 카드 행 모서리 둥글게 깎기 */
#smb_my_od .tbl_head01 tr td:first-child {
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    font-family: var(--font-en) !important;
}

#smb_my_od .tbl_head01 tr td:last-child {
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

#smb_my_od .tbl_head01 tbody tr:hover td {
    background-color: #f1f5f9 !important; /* 마우스 오버 시 하이라이트 */
}

#smb_my_od .tbl_head01 td a {
    font-weight: 700 !important;
    color: var(--primary) !important;
    text-decoration: none !important;
}

#smb_my_od .tbl_head01 td a:hover {
    color: var(--accent) !important;
}

/* 주문 내역 상태 뱃지화 */
#smb_my_od .tbl_head01 td span {
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 30px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    background-color: #e2e8f0 !important;
    color: var(--text-muted) !important;
}

/* 배송중/입금 등 긍정 상태 파란 뱃지 처리 */
#smb_my_od .tbl_head01 td span[style*="color"] {
    background-color: rgba(37, 99, 235, 0.1) !important;
    color: var(--accent) !important;
}

/* 위시리스트 디자인 */
.wish-list-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    list-style: none !important;
}

.wish-item {
    display: flex !important;
    align-items: center !important;
    background-color: var(--bg-light) !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    padding: 14px 20px !important;
    position: relative !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    float: none !important;
    width: auto !important;
}

.wish-item:hover {
    border-color: var(--accent) !important;
    background-color: var(--bg-white) !important;
    box-shadow: 0 8px 20px rgba(5, 10, 20, 0.05) !important;
    transform: translateY(-2px) !important;
}

.wish-item .smb_my_chk {
    margin-right: 14px !important;
    float: none !important;
}

.wish-item .soldout-badge {
    background-color: var(--text-muted) !important;
    color: var(--bg-white) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
}

.wish-item .smb_my_img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background-color: var(--bg-white) !important;
    border: 1px solid var(--border) !important;
    margin-right: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
}

.wish-item .smb_my_img img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
}

.wish-item .smb_my_content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.wish-item .smb_my_tit {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin: 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 250px !important;
}

.wish-item .smb_my_tit a {
    color: var(--primary) !important;
    text-decoration: none !important;
}

.wish-item .smb_my_tit a:hover {
    color: var(--accent) !important;
}

.wish-item .smb_my_price {
    font-family: var(--font-en) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
}

.wish-item .smb_my_date {
    font-family: var(--font-en) !important;
    font-size: 11px !important;
    color: var(--text-muted) !important;
}

/* 삭제 쓰레기통 버튼 */
.wish-item .wish_del {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    color: var(--text-muted) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.wish-item .wish_del:hover {
    background-color: rgba(244, 63, 94, 0.1) !important;
    color: #f43f5e !important;
}

/* 위시리스트 액션 버튼 */
#smb_ws_act {
    display: flex !important;
    gap: 12px !important;
    justify-content: flex-end !important;
    margin-top: 10px !important;
}

#smb_ws_act button {
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

#smb_ws_act .btn01 {
    background-color: var(--bg-light) !important;
    border: 1px solid var(--border) !important;
    color: var(--primary) !important;
}

#smb_ws_act .btn01:hover {
    background-color: #cbd5e1 !important;
}

#smb_ws_act .btn02 {
    background-color: var(--accent) !important;
    color: var(--bg-white) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

#smb_ws_act .btn02:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3) !important;
}

/* 빈 내역 항목 */
#smb_my_wish .empty_li, #smb_my_od .empty_table {
    background-color: var(--bg-light) !important;
    border: 2px dashed var(--border) !important;
    border-radius: 14px !important;
    padding: 50px 20px !important;
    text-align: center !important;
    color: var(--text-muted) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* 반응형 모바일 최적화 */
@media (max-width: 1024px) {
    .my-profile-banner {
        padding: 30px !important;
    }
    
    .banner-main-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 24px !important;
    }
    
    .profile-left {
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .profile-actions {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    #smb_my {
        padding: 0 16px 60px 16px !important;
        margin-top: 104px !important; /* 모바일 헤더 아래로 여백 확보 */
    }
    
    .my-profile-banner {
        padding: 25px 20px !important;
    }
    
    .profile-right #smb_private {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .my-info-detail-panel {
        padding: 20px !important;
    }
    
    .my-info-detail-panel .op_area {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .dashboard-card {
        padding: 25px 20px !important;
    }
    
    #smb_ws_act {
        flex-direction: column !important;
    }
    
    #smb_ws_act button {
        width: 100% !important;
    }
    
    #smb_my_od .tbl_head01 th:nth-child(4), #smb_my_od .tbl_head01 td:nth-child(4),
    #smb_my_od .tbl_head01 th:nth-child(5), #smb_my_od .tbl_head01 td:nth-child(5),
    #smb_my_od .tbl_head01 th:nth-child(6), #smb_my_od .tbl_head01 td:nth-child(6) {
        display: none !important; /* 모바일에서 입금액/미입금액 생략 */
    }
}

/* 최근 본 상품 섹션 스타일링 */
#smb_my #smb_my_today.full-width {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.today-list-wrapper {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.today-item {
    background-color: var(--bg-light) !important;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex !important;
    flex-direction: column !important;
}

.today-item:hover {
    border-color: var(--accent) !important;
    background-color: var(--bg-white) !important;
    box-shadow: 0 8px 20px rgba(5, 10, 20, 0.05) !important;
    transform: translateY(-4px) !important;
}

.today-item a {
    text-decoration: none !important;
    display: block !important;
    color: inherit !important;
    height: 100% !important;
}

.today-img-wrap {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background-color: var(--bg-white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-bottom: 1px solid var(--border) !important;
}

.today-img-wrap img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
    transition: transform 0.4s ease !important;
}

.today-item:hover .today-img-wrap img {
    transform: scale(1.05) !important;
}

.today-info {
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.today-cat {
    font-family: var(--font-en) !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
    letter-spacing: 0.05em !important;
}

.today-tit {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    line-height: 1.4 !important;
    height: 34px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden;
}

.today-price {
    font-family: var(--font-en) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    margin-top: auto !important;
}

.empty_today {
    background-color: var(--bg-light) !important;
    border: 2px dashed var(--border) !important;
    border-radius: 14px !important;
    padding: 50px 20px !important;
    text-align: center !important;
    color: var(--text-muted) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* 최근 본 상품 그리드 반응형 기기 대응 */
@media (max-width: 1200px) {
    .today-list-wrapper {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .today-list-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* 그누보드 팝업 모바일 가로 스크롤 버그 해결 및 중앙 정렬 */
    #hd_pop {
        width: 100% !important;
        left: 0 !important;
        margin: 0 !important;
        height: 0 !important;
        overflow: visible !important;
    }
    .hd_pops {
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        max-width: 400px !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        top: 104px !important; /* 모바일 헤더 + 카테고리 탭 밑으로 노출 */
        z-index: 9999 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    }
    .hd_pops_con {
        width: 100% !important;
        height: auto !important;
    }
    .hd_pops_con img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* 모바일 메인 배너 슬라이더 UI 개선 - 화살표 제거 및 도트 슬림화 */
    .hero-section .slide-nav {
        display: none !important;
    }
    .hero-section .slide-indicators {
        bottom: 12px !important;
        gap: 6px !important;
    }
    .hero-section .slide-indicators .indicator {
        width: 14px !important;
        height: 3px !important;
    }
    .hero-section .slide-indicators .indicator.active {
        width: 24px !important;
    }
}

/* ==========================================================================
   13. 관련상품 슬라이더(bxSlider) 카드 형태 및 스트레칭 버그 보정
   ========================================================================== */
.scr_10 .sct_li {
    width: 175px !important;
    max-width: 175px !important;
    display: inline-block !important;
    float: left !important;
    margin-right: 20px !important;
    background-color: var(--bg-white) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    transition: top 0.3s ease, box-shadow 0.3s ease !important;
    top: 0 !important;
    position: relative !important;
    padding: 0 !important;
    border: none !important;
}

.scr_10 .sct_li:hover {
    top: -4px !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.scr_10 .sct_img {
    width: 100% !important;
    padding-top: 100% !important;
    height: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: #f3f4f6 !important;
}

.scr_10 .sct_img img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.scr_10 .sct_txt {
    padding: 12px 12px 4px 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1.4 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    text-align: left !important;
}

.scr_10 .sct_txt a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
}

.scr_10 .sct_cost {
    padding: 0 12px 12px 12px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    text-align: left !important;
}

/* ==========================================================================
   14. 카테고리 상품 목록 페이지 위치 경로(Breadcrumbs) 겹침 버그 보정
   ========================================================================== */
#sct_location.is_list {
    position: relative !important;
    float: right !important;
    top: 0 !important;
    right: 0 !important;
    padding: 10px 0 !important;
    margin-bottom: 12px !important;
    z-index: 10 !important;
}

/* ==========================================================================
   15. 헤더 통합 확장형 검색 바 (옆으로 촥 펼쳐지는 슬라이딩 모션 - 테두리/음영 없음, 헤더 일체형) 스타일
   ========================================================================== */
.expand-search-container {
    position: absolute !important;
    top: 0 !important;
    right: 180px !important; /* 우측 고정 앵커 */
    left: calc(100% - 180px) !important; /* 시작 시 좌측 경계를 우측 앵커와 동일하게 맞춤 (너비 0) */
    height: 80px !important; /* 헤더 높이(80px)와 완전히 일치 */
    background-color: #ffffff !important; /* 헤더 배경색과 완벽 일치 */
    display: flex !important;
    align-items: center !important;
    z-index: 99 !important;
    opacity: 0 !important;
    overflow: hidden; /* 슬라이딩 시 내부 요소 숨김 */
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease !important;
    border: none !important; /* 테두리 제거 */
    box-shadow: none !important; /* 그림자 제거 */
    border-radius: 0 !important; /* 곡률 제거 */
    padding: 0 !important;
}

.expand-search-container.active {
    opacity: 1 !important;
    left: 180px !important; /* 왼쪽으로 쭉 펼쳐지며 카테고리 영역 전체 점유 */
    padding: 0 20px !important;
}

.expand-search-container form {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
}

.expand-search-container input {
    width: 100% !important;
    height: 44px !important;
    border: none !important;
    border-bottom: 2px solid var(--primary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 5px !important;
}

.expand-search-close {
    background: none !important;
    border: none !important;
    font-size: 22px !important;
    color: var(--text-muted) !important;
    cursor: pointer !important;
    padding: 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s !important;
    margin-left: 15px !important;
}

.expand-search-close:hover {
    color: var(--primary) !important;
}

/* 모바일 환경 전용 슬라이딩 확장 검색 바 보정 */
@media (max-width: 768px) {
    .expand-search-container {
        right: 15px !important;
        left: calc(100% - 15px) !important;
        height: 80px !important;
        background-color: #ffffff !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .expand-search-container.active {
        left: 15px !important;
        padding: 0 10px !important;
        border: none !important;
        box-shadow: none !important;
    }
}


/* ==========================================================================
   16. VOG SPORTS 프리미엄 통합 쇼핑 드로워 및 클릭식 퀵메뉴 스타일
   ========================================================================== */
/* 드로워 활성화 시 본문을 흐리고 어둡게 덮을 블러 딤 레이어 */
.vog-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 10, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 997;
    display: none;
}

/* 기존 영카트 퀵메뉴 강제 제거 (투명화 및 pointer-events 개방) */
#side_menu {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    pointer-events: none !important; /* 빈 배경 클릭 투과 */
    width: 80px !important;
    padding-left: 0 !important;
    height: auto !important;
    top: auto !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    z-index: 999 !important;
}

/* #side_menu 하위 요소들에 pointer-events 복구 */
#side_menu * {
    pointer-events: auto;
}

/* 기존 리스트 스타일 제거 */
#quick {
    display: none !important;
}

/* 새로운 플로팅 퀵메뉴 감싸는 wrap 스타일 */
.vog-quick-menu-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* 1. 트리거 메인 버튼 */
.vog-quick-trigger {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #050a14;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(5, 10, 20, 0.3);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.vog-quick-trigger:hover {
    background: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.vog-quick-trigger.open {
    transform: rotate(135deg);
    background: #2563eb;
}

/* 2. 확장 아이템들 (평소엔 숨김 및 아래에 배치) */
.vog-quick-expanded-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    margin-bottom: 5px;
}

/* 클릭 토글 오픈 시 위로 촥 나타남 */
.vog-quick-expanded-items.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* 개별 퀵메뉴 아이콘 (글래스모피즘) */
.vog-quick-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #050a14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 10, 20, 0.08);
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.vog-quick-item:hover {
    background: #050a14;
    color: #ffffff;
    border-color: #050a14;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 10, 20, 0.15);
}

/* 장바구니 배지 카운트 */
.vog-quick-item .badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #2563eb;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1px solid #ffffff;
}

/* SNS 아이콘 영역 (카톡, 인스타) */
.vog-quick-sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.vog-sns-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(5, 10, 20, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 0;
    box-sizing: border-box;
}

.vog-sns-item.kakaotalk {
    background: #fee500;
    color: #191919;
}

.vog-sns-item.kakaotalk:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 229, 0, 0.4);
}

.vog-sns-item.instagram {
    background: linear-gradient(45deg, #f9ce3f, #e1306c, #833ab4);
}

.vog-sns-item.instagram:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(225, 48, 108, 0.4);
}

/* 3. TOP 버튼 스타일 (위로 통통 튀는 모션) */
.vog-quick-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #050a14;
    border: 1px solid #eaebed;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(5, 10, 20, 0.08);
    transition: all 0.25s ease;
    animation: bounce 2s infinite; /* 상시 미세한 바운싱 */
    padding: 0;
    box-sizing: border-box;
}

.vog-quick-top:hover {
    background: #050a14;
    color: #ffffff;
    border-color: #050a14;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(5, 10, 20, 0.15);
    animation: none; /* 호버 시에는 애니메이션 중지하고 고정 마진 상승 */
}

/* 4. 말풍선 툴팁 (PC 환경에서만 노출) */
.vog-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(5, 10, 20, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.vog-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(5, 10, 20, 0.9);
}

.vog-quick-item:hover .vog-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 바운싱 키프레임 */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}


/* ==========================================================================
   17. VOG SPORTS 프리미엄 통합 쇼핑 드로워 (Tabs & Glassmorphism Drawer) CSS
   ========================================================================== */
/* 드로워 전용 모던 슬림 다크 스크롤바 */
.vog-integrated-drawer *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.vog-integrated-drawer *::-webkit-scrollbar-track {
    background: transparent;
}
.vog-integrated-drawer *::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 3px !important;
}
.vog-integrated-drawer *::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* [NEW] 18. VOG SPORTS 프리미엄 최근 본 상품 가로 슬라이더 (Horizontal Slider) CSS */
.vog-horizontal-slider-wrap {
    position: fixed !important;
    bottom: 30px !important;
    right: -520px !important; /* 평소엔 오른쪽에 숨김 */
    width: 480px !important;
    height: 140px !important;
    background: rgba(15, 23, 42, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.35) !important;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 998 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 14px 18px !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
}

.vog-horizontal-slider-wrap.active {
    right: 100px !important; /* 퀵메뉴 왼쪽 자리에 딱 안착 */
}

/* 슬라이더 헤더 */
.vog-slider-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.vog-slider-header span {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
}

.vog-slider-close {
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 16px !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: color 0.2s ease !important;
}

.vog-slider-close:hover {
    color: #ffffff !important;
}

/* 가로 썸네일 리스트 */
.vog-slider-list {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    flex: 1 !important;
    padding-bottom: 4px !important;
}

/* 슬라이더 스크롤바 디자인 */
.vog-slider-list::-webkit-scrollbar {
    height: 4px;
}
.vog-slider-list::-webkit-scrollbar-track {
    background: transparent;
}
.vog-slider-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 2px !important;
}

/* 툴팁 정렬용 래퍼 */
.vog-slider-card-wrap {
    position: relative !important;
    display: inline-block !important;
}

/* 가로 슬라이더용 개별 카드 (75px로 확대) */
.vog-slider-card {
    width: 75px !important;
    height: 75px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
    display: block !important;
}

.vog-slider-card:hover {
    transform: scale(1.08) translateY(-2px) !important;
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
}

.vog-slider-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}



.vog-slider-empty {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

/* 드로워 본체 컨테이너 */
.vog-integrated-drawer {
    position: fixed !important;
    top: 0 !important;
    right: -380px !important; /* 평소엔 우측 화면 밖으로 숨김 */
    width: 360px !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.92) !important; /* 럭셔리 다크 딥블루 백그라운드 */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3) !important;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 998 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
}

/* 드로워 활성화 상태 */
.vog-integrated-drawer.vog-drawer-active {
    right: 0 !important;
}

/* 드로워 탭 헤더 */
.vog-drawer-tab-header {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 15px 0 15px;
    gap: 4px;
}

.vog-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 0 10px 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.vog-tab-btn i {
    font-size: 16px;
    color: inherit;
}

.vog-tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.vog-tab-btn.active {
    color: #ffffff;
    border-bottom-color: #2563eb; /* 탭 보그 네온 블루 활성 포인트 */
}

/* 닫기 X 버튼 */
.vog-drawer-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.vog-drawer-close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* 드로워 본문 스크롤 영역 */
.vog-drawer-content-body {
    flex: 1;
    overflow-y: hidden; /* 자식 탭 내부에서 자체 스크롤 */
    position: relative;
    width: 100%;
}

/* 개별 영카트 스킨의 겹침/가로폭 보정 */
.vog-drawer-content-body .qk_con {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    height: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    display: none;
}

.vog-drawer-content-body .qk_con_wr {
    padding: 24px 20px !important;
    height: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
}

/* 드로워 내부 텍스트 일괄 보정 */
.vog-drawer-content-body * {
    color: #cbd5e1;
    font-family: sans-serif;
}

/* 드로워 내부 인풋/폼 리폼 */
.vog-drawer-content-body select,
.vog-drawer-content-body input[type=text],
.vog-drawer-content-body input[type=password] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
}

/* 1. 마이페이지 탭 리스트 보정 */
.vog-drawer-content-body .side_tnb {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 15px !important;
    padding: 10px 0 0 0 !important;
    list-style: none !important;
    overflow-y: auto !important;
    flex: 1 !important;
}

.vog-drawer-content-body .side_tnb li {
    margin-bottom: 5px !important;
}

.vog-drawer-content-body .side_tnb a {
    display: block !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: #94a3b8 !important;
}

.vog-drawer-content-body .side_tnb a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

/* 2. 오늘 본 상품 탭 리폼 (스크롤 적용) */
.vog-drawer-content-body #today_key {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    overflow-y: auto !important;
    flex: 1 !important;
}

.vog-drawer-content-body #today_key li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 15px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    float: none !important;
    width: auto !important;
}

.vog-drawer-content-body #today_key li a {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    text-decoration: none !important;
}

.vog-drawer-content-body #today_key li img {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
}

.vog-drawer-content-body #today_key .qk_txt {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

/* 3. 장바구니 / 위시리스트 리스트 럭셔리 카드 리폼 (스크롤 적용) */
.vog-drawer-content-body #tabs_con_cart,
.vog-drawer-content-body #tabs_con_wish {
    overflow-y: auto !important;
    flex: 1 !important;
    padding-right: 4px !important;
}

.vog-drawer-content-body .cart_li,
.vog-drawer-content-body .wish_li {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.vog-drawer-content-body .cart_img,
.vog-drawer-content-body .wish_img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #ffffff !important;
}

.vog-drawer-content-body .cart_img img,
.vog-drawer-content-body .wish_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.vog-drawer-content-body .cart_txt,
.vog-drawer-content-body .wish_txt {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: left !important;
}

.vog-drawer-content-body .cart_txt a,
.vog-drawer-content-body .wish_txt a {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.vog-drawer-content-body .cart_price,
.vog-drawer-content-body .wish_price {
    font-family: Montserrat, sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: #2563eb !important; /* 네온 블루 포인트 */
}

/* 삭제 버튼 X */
.vog-drawer-content-body .cart_del,
.vog-drawer-content-body .wish_del {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 14px !important;
    transition: color 0.2s ease !important;
}

.vog-drawer-content-body .cart_del:hover,
.vog-drawer-content-body .wish_del:hover {
    color: #f43f5e !important;
}

/* 인스타그램 확장 아이콘 디자인 */
.vog-quick-item.instagram-btn {
    background: linear-gradient(45deg, #f9ce3f, #e1306c, #833ab4) !important;
    color: #ffffff !important;
    border: none !important;
}

.vog-quick-item.instagram-btn:hover {
    box-shadow: 0 6px 16px rgba(225, 48, 108, 0.4) !important;
    transform: scale(1.1) translateY(-2px) !important;
}

/* 드로워 하단 결제하기 플로팅 그라데이션 버튼 (하단 고정) */
.vog-drawer-content-body .qk_btn {
    margin-top: auto !important; /* 리스트 스크롤 영역 하단으로 강제 밀착 */
    padding-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
}

.vog-drawer-content-body .qk_btn a {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    line-height: 48px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important; /* 그라데이션 블루 */
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.2s ease !important;
}

.vog-drawer-content-body .qk_btn a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45) !important;
}

/* 모바일 화면 768px 이하 최적화 */
@media (max-width: 768px) {
    #side_menu {
        right: 15px !important;
        bottom: 85px !important; /* 모바일 하단 네비게이션바(60px) 위로 여유 확보 */
        gap: 10px !important;
    }
    .vog-quick-trigger {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    .vog-quick-item, .vog-sns-item, .vog-quick-top {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    .vog-tooltip {
        display: none !important; /* 모바일은 툴팁 미노출 */
    }
    /* 모바일에서는 드로워 너비를 화면 전체에 가깝게 채움 */
    .vog-integrated-drawer {
        width: 85% !important;
        max-width: 320px !important;
        right: -340px !important;
    }
    .vog-integrated-drawer.vog-drawer-active {
        right: 0 !important;
    }

    /* 모바일 가로 슬라이더 대응 */
    .vog-horizontal-slider-wrap {
        width: calc(100% - 30px) !important;
        max-width: 380px !important;
        right: -100% !important;
        bottom: 85px !important;
        height: 135px !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .vog-horizontal-slider-wrap.active {
        right: 15px !important;
    }
}


