/* =============================================
   여우랑쇼핑몰 메인 스타일
   shop.css
   ============================================= */

/* CSS 변수 */
:root {
    --shop-primary: #FF6B35;
    --shop-primary-dark: #E55A2B;
    --shop-primary-light: #FF8B5E;
    --shop-secondary: #4A4A4A;
    --shop-accent: #2EC4B6;
    --shop-bg: #F8F9FA;
    --shop-bg-dark: #E9ECEF;
    --shop-white: #FFFFFF;
    --shop-black: #000000;
    --shop-border: #E0E0E0;
    --shop-text: #333333;
    --shop-text-light: #666666;
    --shop-text-muted: #999999;
    --shop-price: #E74C3C;
    --shop-discount: #27AE60;
    --shop-new: #3498DB;
    --shop-best: #E74C3C;
    --shop-star: #F1C40F;
    --shop-shadow: rgba(0, 0, 0, 0.1);
    --shop-radius: 8px;
    --shop-radius-sm: 4px;
    --shop-radius-lg: 12px;
    --shop-transition: 0.3s ease;
    --header-height: 140px;
    --header-height-mobile: 60px;
}

/* 리셋 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--shop-text);
    background-color: var(--shop-white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--shop-transition);
}

a:hover {
    color: var(--shop-primary);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* =============================================
   헤더
   ============================================= */
.shop-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--shop-white);
    box-shadow: 0 2px 10px var(--shop-shadow);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 모바일 메뉴 버튼 */
.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--shop-text);
    border-radius: 2px;
    transition: var(--shop-transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 로고 */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--shop-primary);
}

/* 검색창 */
.header-search {
    flex: 1;
    max-width: 400px;
}

.header-search form {
    display: flex;
    border: 2px solid var(--shop-primary);
    border-radius: 25px;
    overflow: hidden;
}

.header-search input {
    flex: 1;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.header-search .search-btn {
    padding: 10px 15px;
    background: var(--shop-primary);
    color: var(--shop-white);
    transition: var(--shop-transition);
}

.header-search .search-btn:hover {
    background: var(--shop-primary-dark);
}

/* 유틸 메뉴 */
.header-util {
    display: flex;
    align-items: center;
    gap: 15px;
}

.util-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--shop-text);
    font-size: 12px;
    position: relative;
}

.util-link svg {
    width: 24px;
    height: 24px;
}

.util-text {
    display: block;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--shop-primary);
    color: var(--shop-white);
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
}

/* 메인 네비게이션 */
.main-nav {
    background: var(--shop-bg);
    border-top: 1px solid var(--shop-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--shop-text);
    transition: var(--shop-transition);
}

.nav-item:hover > a,
.nav-item.active > a {
    color: var(--shop-primary);
}

/* 서브 네비게이션 */
.sub-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
    background: var(--shop-white);
    box-shadow: 0 4px 15px var(--shop-shadow);
    border-radius: var(--shop-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--shop-transition);
    z-index: 100;
}

.nav-item:hover .sub-nav {
    opacity: 1;
    visibility: visible;
}

.sub-nav li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--shop-text-light);
    white-space: nowrap;
}

.sub-nav li a:hover {
    background: var(--shop-bg);
    color: var(--shop-primary);
}

/* =============================================
   모바일 사이드 메뉴
   ============================================= */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--shop-white);
    z-index: 1200;
    transition: var(--shop-transition);
    overflow-y: auto;
}

.mobile-side-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: var(--shop-primary);
    color: var(--shop-white);
}

.welcome-msg {
    font-size: 14px;
    margin-bottom: 10px;
}

.mobile-login-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--shop-white);
    color: var(--shop-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.mobile-menu-list {
    padding: 10px 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid var(--shop-border);
}

.mobile-menu-list > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 15px;
    color: var(--shop-text);
}

.mobile-menu-list > li.divider {
    height: 10px;
    background: var(--shop-bg);
    border: none;
}

.mobile-sub-menu {
    display: none;
    background: var(--shop-bg);
}

.mobile-menu-list > li.has-sub.open .mobile-sub-menu {
    display: block;
}

.mobile-sub-menu li a {
    display: block;
    padding: 12px 20px 12px 35px;
    font-size: 14px;
    color: var(--shop-text-light);
}

.mobile-menu-list .arrow {
    transition: var(--shop-transition);
}

.mobile-menu-list > li.has-sub.open .arrow {
    transform: rotate(90deg);
}

/* =============================================
   메인 컨텐츠
   ============================================= */
.shop-main {
    min-height: calc(100vh - var(--header-height) - 200px);
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-section {
    padding: 40px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--shop-text);
}

.section-title span {
    color: var(--shop-primary);
}

/* =============================================
   상품 카드
   ============================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--shop-white);
    border-radius: var(--shop-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shop-shadow);
    transition: var(--shop-transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shop-shadow);
}

.product-thumb {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--shop-transition);
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--shop-white);
    border-radius: var(--shop-radius-sm);
}

.badge-best {
    background: var(--shop-best);
}

.badge-new {
    background: var(--shop-new);
}

.badge-sale {
    background: var(--shop-discount);
}

.product-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--shop-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px var(--shop-shadow);
    opacity: 0;
    transition: var(--shop-transition);
}

.product-card:hover .product-wish {
    opacity: 1;
}

.product-wish svg {
    width: 20px;
    height: 20px;
    stroke: var(--shop-text-light);
    fill: none;
}

.product-wish.active svg {
    fill: var(--shop-price);
    stroke: var(--shop-price);
}

/* 품절 오버레이 */
.soldout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.soldout-overlay span {
    padding: 8px 16px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

.product-info {
    padding: 15px;
}

.product-brand {
    font-size: 12px;
    color: var(--shop-text-muted);
    margin-bottom: 5px;
}

.product-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--shop-text);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 13px;
    color: var(--shop-text-muted);
    text-decoration: line-through;
}

.price-sale {
    font-size: 18px;
    font-weight: 700;
    color: var(--shop-price);
}

.price-discount {
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-discount);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 13px;
}

.stars {
    color: var(--shop-star);
}

.star {
    font-style: normal;
}

.rating-count {
    color: var(--shop-text-muted);
}

/* =============================================
   버튼
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--shop-radius);
    transition: var(--shop-transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: var(--shop-primary);
    color: var(--shop-white);
}

.btn-primary:hover {
    background: var(--shop-primary-dark);
    color: var(--shop-white);
}

.btn-secondary {
    background: var(--shop-secondary);
    color: var(--shop-white);
}

.btn-secondary:hover {
    background: #333;
    color: var(--shop-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--shop-primary);
    color: var(--shop-primary);
}

.btn-outline:hover {
    background: var(--shop-primary);
    color: var(--shop-white);
}

.btn-outline-gray {
    background: transparent;
    border: 1px solid var(--shop-border);
    color: var(--shop-text-light);
}

.btn-outline-gray:hover {
    border-color: var(--shop-text);
    color: var(--shop-text);
}

/* =============================================
   폼 요소
   ============================================= */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--shop-text);
}

.form-label .required {
    color: var(--shop-price);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius);
    background: var(--shop-white);
    transition: var(--shop-transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--shop-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
    color: var(--shop-text-muted);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* 체크박스, 라디오 */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--shop-primary);
}

/* =============================================
   테이블
   ============================================= */
.table-responsive {
    overflow-x: auto;
}

.shop-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-table th,
.shop-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--shop-border);
}

.shop-table th {
    background: var(--shop-bg);
    font-weight: 600;
    font-size: 14px;
    color: var(--shop-text);
}

.shop-table td {
    font-size: 14px;
    color: var(--shop-text-light);
}

.shop-table .text-left {
    text-align: left;
}

.shop-table .text-right {
    text-align: right;
}

/* =============================================
   페이지네이션
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
    color: var(--shop-text-light);
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius-sm);
    transition: var(--shop-transition);
}

.pagination a:hover {
    border-color: var(--shop-primary);
    color: var(--shop-primary);
}

.pagination .active {
    background: var(--shop-primary);
    border-color: var(--shop-primary);
    color: var(--shop-white);
}

/* =============================================
   푸터
   ============================================= */
.shop-footer {
    background: var(--shop-secondary);
    color: var(--shop-white);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--shop-white);
}

.footer-links a.bold {
    font-weight: 700;
}

.footer-links .divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-info .company-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--shop-white);
    margin-bottom: 10px;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-info a:hover {
    color: var(--shop-white);
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* =============================================
   맨위로 버튼
   ============================================= */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--shop-primary);
    color: var(--shop-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shop-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--shop-transition);
    z-index: 999;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    background: var(--shop-primary-dark);
    transform: translateY(-3px);
}

/* =============================================
   유틸리티 클래스
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--shop-primary); }
.text-price { color: var(--shop-price); }
.text-discount { color: var(--shop-discount); }
.text-muted { color: var(--shop-text-muted); }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.hidden { display: none !important; }

/* 로딩 스피너 */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--shop-border);
    border-top-color: var(--shop-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 빈 상태 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--shop-text-muted);
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* 알럿, 메시지 */
.alert {
    padding: 15px 20px;
    border-radius: var(--shop-radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-info {
    background: #E3F2FD;
    color: #1565C0;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
}

.alert-warning {
    background: #FFF3E0;
    color: #EF6C00;
}

.alert-danger {
    background: #FFEBEE;
    color: #C62828;
}

/* =============================================
   최근 본 상품 사이드바
   ============================================= */
.recent-sidebar {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 998;
    display: flex;
    transition: var(--shop-transition);
}

/* 접힌 상태 */
.recent-sidebar.collapsed .recent-sidebar-content {
    display: none;
}

.recent-sidebar.collapsed .toggle-icon {
    transform: rotate(180deg);
}

/* 토글 버튼 */
.recent-sidebar-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    padding: 15px 5px;
    background: var(--shop-primary);
    color: var(--shop-white);
    cursor: pointer;
    border-radius: var(--shop-radius) 0 0 var(--shop-radius);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: var(--shop-transition);
}

.recent-sidebar-toggle:hover {
    background: var(--shop-primary-dark);
}

.recent-sidebar-toggle .toggle-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.recent-sidebar-toggle .toggle-icon {
    font-size: 10px;
    transition: var(--shop-transition);
    writing-mode: horizontal-tb;
}

/* 사이드바 컨텐츠 */
.recent-sidebar-content {
    width: 140px;
    max-height: calc(100vh - 180px);
    background: var(--shop-white);
    border: 1px solid var(--shop-border);
    border-right: none;
    border-radius: var(--shop-radius) 0 0 var(--shop-radius);
    box-shadow: -4px 0 15px var(--shop-shadow);
    display: flex;
    flex-direction: column;
}

/* 사이드바 헤더 */
.recent-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--shop-border);
    background: var(--shop-bg);
}

.recent-sidebar-header span {
    font-size: 12px;
    font-weight: 600;
    color: var(--shop-text);
}

.recent-clear-btn {
    font-size: 10px;
    color: var(--shop-text-muted);
    cursor: pointer;
    padding: 2px 5px;
    border-radius: var(--shop-radius-sm);
    transition: var(--shop-transition);
}

.recent-clear-btn:hover {
    background: var(--shop-border);
    color: var(--shop-text);
}

/* 상품 리스트 */
.recent-sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

/* 상품 아이템 */
.recent-product-item {
    display: block;
    padding: 8px;
    border-radius: var(--shop-radius-sm);
    margin-bottom: 8px;
    transition: var(--shop-transition);
    position: relative;
}

.recent-product-item:last-child {
    margin-bottom: 0;
}

.recent-product-item:hover {
    background: var(--shop-bg);
}

.recent-product-item .product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--shop-radius-sm);
    overflow: hidden;
    margin-bottom: 6px;
    background: var(--shop-bg);
}

.recent-product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--shop-transition);
}

.recent-product-item:hover .product-image img {
    transform: scale(1.05);
}

.recent-product-item .product-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--shop-price);
    text-align: center;
}

/* 삭제 버튼 */
.recent-product-item .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--shop-white);
    border-radius: 50%;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: var(--shop-transition);
    z-index: 10;
}

.recent-product-item .remove-btn:hover {
    background: var(--shop-price);
}

/* 빈 상태 */
.recent-sidebar-empty {
    padding: 30px 10px;
    text-align: center;
    color: var(--shop-text-muted);
    font-size: 12px;
}

/* 스크롤바 커스텀 */
.recent-sidebar-list::-webkit-scrollbar {
    width: 4px;
}

.recent-sidebar-list::-webkit-scrollbar-track {
    background: var(--shop-bg);
}

.recent-sidebar-list::-webkit-scrollbar-thumb {
    background: var(--shop-border);
    border-radius: 2px;
}

.recent-sidebar-list::-webkit-scrollbar-thumb:hover {
    background: var(--shop-text-muted);
}

/* 반응형: 모바일에서 숨김 */
@media (max-width: 768px) {
    .recent-sidebar {
        display: none;
    }
}
